i965/gen6: Initial implementation of MSAA.
[mesa.git] / src / mesa / drivers / dri / i965 / brw_blorp.cpp
1 /*
2 * Copyright © 2012 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 */
23
24 #include "intel_fbo.h"
25
26 #include "brw_blorp.h"
27 #include "brw_defines.h"
28 #include "gen6_blorp.h"
29 #include "gen7_blorp.h"
30
31 brw_blorp_mip_info::brw_blorp_mip_info()
32 : mt(NULL),
33 level(0),
34 layer(0)
35 {
36 }
37
38 brw_blorp_surface_info::brw_blorp_surface_info()
39 : map_stencil_as_y_tiled(false),
40 num_samples(0)
41 {
42 }
43
44 void
45 brw_blorp_mip_info::set(struct intel_mipmap_tree *mt,
46 unsigned int level, unsigned int layer)
47 {
48 intel_miptree_check_level_layer(mt, level, layer);
49
50 this->mt = mt;
51 this->level = level;
52 this->layer = layer;
53 }
54
55 void
56 brw_blorp_surface_info::set(struct intel_mipmap_tree *mt,
57 unsigned int level, unsigned int layer)
58 {
59 brw_blorp_mip_info::set(mt, level, layer);
60
61 if (mt->format == MESA_FORMAT_S8) {
62 /* The miptree is a W-tiled stencil buffer. Surface states can't be set
63 * up for W tiling, so we'll need to use Y tiling and have the WM
64 * program swizzle the coordinates. Furthermore, we need to set up the
65 * surface state as single-sampled, because the memory layout of related
66 * samples doesn't match between W and Y tiling.
67 */
68 this->map_stencil_as_y_tiled = true;
69 this->num_samples = 0;
70 } else {
71 this->map_stencil_as_y_tiled = false;
72 this->num_samples = mt->num_samples;
73 }
74 }
75
76 void
77 brw_blorp_mip_info::get_draw_offsets(uint32_t *draw_x, uint32_t *draw_y) const
78 {
79 /* Construct a dummy renderbuffer just to extract tile offsets. */
80 struct intel_renderbuffer rb;
81 rb.mt = mt;
82 rb.mt_level = level;
83 rb.mt_layer = layer;
84 intel_renderbuffer_set_draw_offset(&rb);
85 *draw_x = rb.draw_x;
86 *draw_y = rb.draw_y;
87 }
88
89 brw_blorp_params::brw_blorp_params()
90 : x0(0),
91 y0(0),
92 x1(0),
93 y1(0),
94 depth_format(0),
95 hiz_op(GEN6_HIZ_OP_NONE),
96 num_samples(0),
97 use_wm_prog(false)
98 {
99 }
100
101 void
102 brw_blorp_params::exec(struct intel_context *intel) const
103 {
104 switch (intel->gen) {
105 case 6:
106 gen6_blorp_exec(intel, this);
107 break;
108 case 7:
109 gen7_blorp_exec(intel, this);
110 break;
111 default:
112 /* BLORP is not supported before Gen6. */
113 assert(false);
114 break;
115 }
116 }
117
118 brw_hiz_op_params::brw_hiz_op_params(struct intel_mipmap_tree *mt,
119 unsigned int level,
120 unsigned int layer,
121 gen6_hiz_op op)
122 {
123 assert(op != GEN6_HIZ_OP_DEPTH_CLEAR); /* Not implemented yet. */
124 this->hiz_op = op;
125
126 depth.set(mt, level, layer);
127 depth.get_miplevel_dims(&x1, &y1);
128
129 assert(mt->hiz_mt != NULL);
130
131 switch (mt->format) {
132 case MESA_FORMAT_Z16: depth_format = BRW_DEPTHFORMAT_D16_UNORM; break;
133 case MESA_FORMAT_Z32_FLOAT: depth_format = BRW_DEPTHFORMAT_D32_FLOAT; break;
134 case MESA_FORMAT_X8_Z24: depth_format = BRW_DEPTHFORMAT_D24_UNORM_X8_UINT; break;
135 default: assert(0); break;
136 }
137 }
138
139 uint32_t
140 brw_hiz_op_params::get_wm_prog(struct brw_context *brw,
141 brw_blorp_prog_data **prog_data) const
142 {
143 return 0;
144 }