i965: Use unreachable() instead of unconditional assert().
[mesa.git] / src / mesa / drivers / dri / i965 / gen8_sf_state.c
1 /*
2 * Copyright © 2011 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 "brw_context.h"
25 #include "brw_state.h"
26 #include "brw_defines.h"
27 #include "brw_util.h"
28 #include "main/macros.h"
29 #include "main/fbobject.h"
30 #include "intel_batchbuffer.h"
31
32 static void
33 upload_sbe(struct brw_context *brw)
34 {
35 struct gl_context *ctx = &brw->ctx;
36 /* CACHE_NEW_WM_PROG */
37 uint32_t num_outputs = brw->wm.prog_data->num_varying_inputs;
38 uint16_t attr_overrides[VARYING_SLOT_MAX];
39 uint32_t urb_entry_read_length;
40 uint32_t point_sprite_enables;
41 uint32_t flat_enables;
42
43 uint32_t dw1 =
44 GEN7_SBE_SWIZZLE_ENABLE |
45 num_outputs << GEN7_SBE_NUM_OUTPUTS_SHIFT;
46
47 /* _NEW_BUFFERS */
48 bool render_to_fbo = _mesa_is_user_fbo(ctx->DrawBuffer);
49
50 /* _NEW_POINT
51 *
52 * Window coordinates in an FBO are inverted, which means point
53 * sprite origin must be inverted.
54 */
55 if ((ctx->Point.SpriteOrigin == GL_LOWER_LEFT) != render_to_fbo)
56 dw1 |= GEN6_SF_POINT_SPRITE_LOWERLEFT;
57 else
58 dw1 |= GEN6_SF_POINT_SPRITE_UPPERLEFT;
59
60 /* BRW_NEW_VUE_MAP_GEOM_OUT | _NEW_POINT | _NEW_LIGHT | _NEW_PROGRAM |
61 * CACHE_NEW_WM_PROG
62 */
63 calculate_attr_overrides(brw, attr_overrides,
64 &point_sprite_enables,
65 &flat_enables,
66 &urb_entry_read_length);
67
68 /* Typically, the URB entry read length and offset should be programmed in
69 * 3DSTATE_VS and 3DSTATE_GS; SBE inherits it from the last active stage
70 * which produces geometry. However, we don't know the proper value until
71 * we call calculate_attr_overrides().
72 *
73 * To fit with our existing code, we override the inherited values and
74 * specify it here directly, as we did on previous generations.
75 */
76 dw1 |=
77 urb_entry_read_length << GEN7_SBE_URB_ENTRY_READ_LENGTH_SHIFT |
78 BRW_SF_URB_ENTRY_READ_OFFSET << GEN8_SBE_URB_ENTRY_READ_OFFSET_SHIFT |
79 GEN8_SBE_FORCE_URB_ENTRY_READ_LENGTH |
80 GEN8_SBE_FORCE_URB_ENTRY_READ_OFFSET;
81
82 BEGIN_BATCH(4);
83 OUT_BATCH(_3DSTATE_SBE << 16 | (4 - 2));
84 OUT_BATCH(dw1);
85 OUT_BATCH(point_sprite_enables);
86 OUT_BATCH(flat_enables);
87 ADVANCE_BATCH();
88
89 BEGIN_BATCH(11);
90 OUT_BATCH(_3DSTATE_SBE_SWIZ << 16 | (11 - 2));
91
92 /* Output DWords 1 through 8: */
93 for (int i = 0; i < 8; i++) {
94 OUT_BATCH(attr_overrides[i * 2] | attr_overrides[i * 2 + 1] << 16);
95 }
96
97 OUT_BATCH(0); /* wrapshortest enables 0-7 */
98 OUT_BATCH(0); /* wrapshortest enables 8-15 */
99 ADVANCE_BATCH();
100 }
101
102 const struct brw_tracked_state gen8_sbe_state = {
103 .dirty = {
104 .mesa = _NEW_BUFFERS | _NEW_LIGHT | _NEW_POINT | _NEW_PROGRAM,
105 .brw = BRW_NEW_CONTEXT |
106 BRW_NEW_FRAGMENT_PROGRAM |
107 BRW_NEW_VUE_MAP_GEOM_OUT,
108 .cache = CACHE_NEW_WM_PROG,
109 },
110 .emit = upload_sbe,
111 };
112
113 static void
114 upload_sf(struct brw_context *brw)
115 {
116 struct gl_context *ctx = &brw->ctx;
117 uint32_t dw1 = 0, dw2 = 0, dw3 = 0;
118 float point_size;
119
120 dw1 = GEN6_SF_STATISTICS_ENABLE | GEN6_SF_VIEWPORT_TRANSFORM_ENABLE;
121
122 /* _NEW_LINE */
123 uint32_t line_width_u3_7 = U_FIXED(CLAMP(ctx->Line.Width, 0.0, 7.99), 7);
124 if (line_width_u3_7 == 0)
125 line_width_u3_7 = 1;
126 dw2 |= line_width_u3_7 << GEN6_SF_LINE_WIDTH_SHIFT;
127
128 if (ctx->Line.SmoothFlag) {
129 dw2 |= GEN6_SF_LINE_END_CAP_WIDTH_1_0;
130 }
131
132 /* Clamp to ARB_point_parameters user limits */
133 point_size = CLAMP(ctx->Point.Size, ctx->Point.MinSize, ctx->Point.MaxSize);
134
135 /* Clamp to the hardware limits and convert to fixed point */
136 dw3 |= U_FIXED(CLAMP(point_size, 0.125, 255.875), 3);
137
138 /* _NEW_PROGRAM | _NEW_POINT */
139 if (!(ctx->VertexProgram.PointSizeEnabled || ctx->Point._Attenuated))
140 dw3 |= GEN6_SF_USE_STATE_POINT_WIDTH;
141
142 /* _NEW_POINT | _NEW_MULTISAMPLE */
143 if ((ctx->Point.SmoothFlag || ctx->Multisample._Enabled) &&
144 !ctx->Point.PointSprite) {
145 dw3 |= GEN8_SF_SMOOTH_POINT_ENABLE;
146 }
147
148 dw3 |= GEN6_SF_LINE_AA_MODE_TRUE;
149
150 /* _NEW_LIGHT */
151 if (ctx->Light.ProvokingVertex != GL_FIRST_VERTEX_CONVENTION) {
152 dw3 |= (2 << GEN6_SF_TRI_PROVOKE_SHIFT) |
153 (2 << GEN6_SF_TRIFAN_PROVOKE_SHIFT) |
154 (1 << GEN6_SF_LINE_PROVOKE_SHIFT);
155 } else {
156 dw3 |= (1 << GEN6_SF_TRIFAN_PROVOKE_SHIFT);
157 }
158
159 BEGIN_BATCH(4);
160 OUT_BATCH(_3DSTATE_SF << 16 | (4 - 2));
161 OUT_BATCH(dw1);
162 OUT_BATCH(dw2);
163 OUT_BATCH(dw3);
164 ADVANCE_BATCH();
165 }
166
167 const struct brw_tracked_state gen8_sf_state = {
168 .dirty = {
169 .mesa = _NEW_LIGHT |
170 _NEW_PROGRAM |
171 _NEW_LINE |
172 _NEW_MULTISAMPLE |
173 _NEW_POINT,
174 .brw = BRW_NEW_CONTEXT,
175 .cache = 0,
176 },
177 .emit = upload_sf,
178 };
179
180 static void
181 upload_raster(struct brw_context *brw)
182 {
183 struct gl_context *ctx = &brw->ctx;
184 uint32_t dw1 = 0;
185
186 /* _NEW_BUFFERS */
187 bool render_to_fbo = _mesa_is_user_fbo(brw->ctx.DrawBuffer);
188
189 /* _NEW_POLYGON */
190 if ((ctx->Polygon.FrontFace == GL_CCW) ^ render_to_fbo)
191 dw1 |= GEN8_RASTER_FRONT_WINDING_CCW;
192
193 if (ctx->Polygon.CullFlag) {
194 switch (ctx->Polygon.CullFaceMode) {
195 case GL_FRONT:
196 dw1 |= GEN8_RASTER_CULL_FRONT;
197 break;
198 case GL_BACK:
199 dw1 |= GEN8_RASTER_CULL_BACK;
200 break;
201 case GL_FRONT_AND_BACK:
202 dw1 |= GEN8_RASTER_CULL_BOTH;
203 break;
204 default:
205 unreachable("not reached");
206 }
207 } else {
208 dw1 |= GEN8_RASTER_CULL_NONE;
209 }
210
211 /* _NEW_POINT */
212 if (ctx->Point.SmoothFlag)
213 dw1 |= GEN8_RASTER_SMOOTH_POINT_ENABLE;
214
215 if (ctx->Multisample._Enabled)
216 dw1 |= GEN8_RASTER_API_MULTISAMPLE_ENABLE;
217
218 if (ctx->Polygon.OffsetFill)
219 dw1 |= GEN6_SF_GLOBAL_DEPTH_OFFSET_SOLID;
220
221 if (ctx->Polygon.OffsetLine)
222 dw1 |= GEN6_SF_GLOBAL_DEPTH_OFFSET_WIREFRAME;
223
224 if (ctx->Polygon.OffsetPoint)
225 dw1 |= GEN6_SF_GLOBAL_DEPTH_OFFSET_POINT;
226
227 switch (ctx->Polygon.FrontMode) {
228 case GL_FILL:
229 dw1 |= GEN6_SF_FRONT_SOLID;
230 break;
231 case GL_LINE:
232 dw1 |= GEN6_SF_FRONT_WIREFRAME;
233 break;
234 case GL_POINT:
235 dw1 |= GEN6_SF_FRONT_POINT;
236 break;
237
238 default:
239 unreachable("not reached");
240 }
241
242 switch (ctx->Polygon.BackMode) {
243 case GL_FILL:
244 dw1 |= GEN6_SF_BACK_SOLID;
245 break;
246 case GL_LINE:
247 dw1 |= GEN6_SF_BACK_WIREFRAME;
248 break;
249 case GL_POINT:
250 dw1 |= GEN6_SF_BACK_POINT;
251 break;
252 default:
253 unreachable("not reached");
254 }
255
256 /* _NEW_LINE */
257 if (ctx->Line.SmoothFlag)
258 dw1 |= GEN8_RASTER_LINE_AA_ENABLE;
259
260 /* _NEW_SCISSOR */
261 if (ctx->Scissor.EnableFlags)
262 dw1 |= GEN8_RASTER_SCISSOR_ENABLE;
263
264 /* _NEW_TRANSFORM */
265 if (!ctx->Transform.DepthClamp)
266 dw1 |= GEN8_RASTER_VIEWPORT_Z_CLIP_TEST_ENABLE;
267
268 BEGIN_BATCH(5);
269 OUT_BATCH(_3DSTATE_RASTER << 16 | (5 - 2));
270 OUT_BATCH(dw1);
271 OUT_BATCH_F(ctx->Polygon.OffsetUnits * 2); /* constant. copied from gen4 */
272 OUT_BATCH_F(ctx->Polygon.OffsetFactor); /* scale */
273 OUT_BATCH_F(0.0);
274 ADVANCE_BATCH();
275 }
276
277 const struct brw_tracked_state gen8_raster_state = {
278 .dirty = {
279 .mesa = _NEW_BUFFERS |
280 _NEW_LINE |
281 _NEW_MULTISAMPLE |
282 _NEW_POINT |
283 _NEW_POLYGON |
284 _NEW_SCISSOR |
285 _NEW_TRANSFORM,
286 .brw = BRW_NEW_CONTEXT,
287 .cache = 0,
288 },
289 .emit = upload_raster,
290 };