i965: Delete unused brw_blorp_blit_test_compile().
[mesa.git] / src / mesa / drivers / dri / i965 / brw_blorp_blit.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 "main/teximage.h"
25 #include "main/fbobject.h"
26 #include "main/renderbuffer.h"
27
28 #include "intel_fbo.h"
29
30 #include "brw_blorp.h"
31 #include "brw_context.h"
32 #include "brw_blorp_blit_eu.h"
33 #include "brw_state.h"
34 #include "brw_meta_util.h"
35
36 #define FILE_DEBUG_FLAG DEBUG_BLORP
37
38 static struct intel_mipmap_tree *
39 find_miptree(GLbitfield buffer_bit, struct intel_renderbuffer *irb)
40 {
41 struct intel_mipmap_tree *mt = irb->mt;
42 if (buffer_bit == GL_STENCIL_BUFFER_BIT && mt->stencil_mt)
43 mt = mt->stencil_mt;
44 return mt;
45 }
46
47
48 /**
49 * Note: if the src (or dst) is a 2D multisample array texture on Gen7+ using
50 * INTEL_MSAA_LAYOUT_UMS or INTEL_MSAA_LAYOUT_CMS, src_layer (dst_layer) is
51 * the physical layer holding sample 0. So, for example, if
52 * src_mt->num_samples == 4, then logical layer n corresponds to src_layer ==
53 * 4*n.
54 */
55 void
56 brw_blorp_blit_miptrees(struct brw_context *brw,
57 struct intel_mipmap_tree *src_mt,
58 unsigned src_level, unsigned src_layer,
59 struct intel_mipmap_tree *dst_mt,
60 unsigned dst_level, unsigned dst_layer,
61 float src_x0, float src_y0,
62 float src_x1, float src_y1,
63 float dst_x0, float dst_y0,
64 float dst_x1, float dst_y1,
65 GLenum filter, bool mirror_x, bool mirror_y)
66 {
67 /* Get ready to blit. This includes depth resolving the src and dst
68 * buffers if necessary. Note: it's not necessary to do a color resolve on
69 * the destination buffer because we use the standard render path to render
70 * to destination color buffers, and the standard render path is
71 * fast-color-aware.
72 */
73 intel_miptree_resolve_color(brw, src_mt);
74 intel_miptree_slice_resolve_depth(brw, src_mt, src_level, src_layer);
75 intel_miptree_slice_resolve_depth(brw, dst_mt, dst_level, dst_layer);
76
77 DBG("%s from %dx %s mt %p %d %d (%f,%f) (%f,%f)"
78 "to %dx %s mt %p %d %d (%f,%f) (%f,%f) (flip %d,%d)\n",
79 __FUNCTION__,
80 src_mt->num_samples, _mesa_get_format_name(src_mt->format), src_mt,
81 src_level, src_layer, src_x0, src_y0, src_x1, src_y1,
82 dst_mt->num_samples, _mesa_get_format_name(dst_mt->format), dst_mt,
83 dst_level, dst_layer, dst_x0, dst_y0, dst_x1, dst_y1,
84 mirror_x, mirror_y);
85
86 brw_blorp_blit_params params(brw,
87 src_mt, src_level, src_layer,
88 dst_mt, dst_level, dst_layer,
89 src_x0, src_y0,
90 src_x1, src_y1,
91 dst_x0, dst_y0,
92 dst_x1, dst_y1,
93 filter, mirror_x, mirror_y);
94 brw_blorp_exec(brw, &params);
95
96 intel_miptree_slice_set_needs_hiz_resolve(dst_mt, dst_level, dst_layer);
97 }
98
99 static void
100 do_blorp_blit(struct brw_context *brw, GLbitfield buffer_bit,
101 struct intel_renderbuffer *src_irb,
102 struct intel_renderbuffer *dst_irb,
103 GLfloat srcX0, GLfloat srcY0, GLfloat srcX1, GLfloat srcY1,
104 GLfloat dstX0, GLfloat dstY0, GLfloat dstX1, GLfloat dstY1,
105 GLenum filter, bool mirror_x, bool mirror_y)
106 {
107 /* Find source/dst miptrees */
108 struct intel_mipmap_tree *src_mt = find_miptree(buffer_bit, src_irb);
109 struct intel_mipmap_tree *dst_mt = find_miptree(buffer_bit, dst_irb);
110
111 /* Do the blit */
112 brw_blorp_blit_miptrees(brw,
113 src_mt, src_irb->mt_level, src_irb->mt_layer,
114 dst_mt, dst_irb->mt_level, dst_irb->mt_layer,
115 srcX0, srcY0, srcX1, srcY1,
116 dstX0, dstY0, dstX1, dstY1,
117 filter, mirror_x, mirror_y);
118
119 dst_irb->need_downsample = true;
120 }
121
122 static bool
123 color_formats_match(mesa_format src_format, mesa_format dst_format)
124 {
125 mesa_format linear_src_format = _mesa_get_srgb_format_linear(src_format);
126 mesa_format linear_dst_format = _mesa_get_srgb_format_linear(dst_format);
127
128 /* Normally, we require the formats to be equal. However, we also support
129 * blitting from ARGB to XRGB (discarding alpha), and from XRGB to ARGB
130 * (overriding alpha to 1.0 via blending).
131 */
132 return linear_src_format == linear_dst_format ||
133 (linear_src_format == MESA_FORMAT_B8G8R8X8_UNORM &&
134 linear_dst_format == MESA_FORMAT_B8G8R8A8_UNORM) ||
135 (linear_src_format == MESA_FORMAT_B8G8R8A8_UNORM &&
136 linear_dst_format == MESA_FORMAT_B8G8R8X8_UNORM);
137 }
138
139 static bool
140 formats_match(GLbitfield buffer_bit, struct intel_renderbuffer *src_irb,
141 struct intel_renderbuffer *dst_irb)
142 {
143 /* Note: don't just check gl_renderbuffer::Format, because in some cases
144 * multiple gl_formats resolve to the same native type in the miptree (for
145 * example MESA_FORMAT_Z24_UNORM_X8_UINT and MESA_FORMAT_Z24_UNORM_S8_UINT), and we can blit
146 * between those formats.
147 */
148 mesa_format src_format = find_miptree(buffer_bit, src_irb)->format;
149 mesa_format dst_format = find_miptree(buffer_bit, dst_irb)->format;
150
151 return color_formats_match(src_format, dst_format);
152 }
153
154 static bool
155 try_blorp_blit(struct brw_context *brw,
156 GLfloat srcX0, GLfloat srcY0, GLfloat srcX1, GLfloat srcY1,
157 GLfloat dstX0, GLfloat dstY0, GLfloat dstX1, GLfloat dstY1,
158 GLenum filter, GLbitfield buffer_bit)
159 {
160 struct gl_context *ctx = &brw->ctx;
161
162 /* Sync up the state of window system buffers. We need to do this before
163 * we go looking for the buffers.
164 */
165 intel_prepare_render(brw);
166
167 const struct gl_framebuffer *read_fb = ctx->ReadBuffer;
168 const struct gl_framebuffer *draw_fb = ctx->DrawBuffer;
169
170 bool mirror_x, mirror_y;
171 if (brw_meta_mirror_clip_and_scissor(ctx,
172 &srcX0, &srcY0, &srcX1, &srcY1,
173 &dstX0, &dstY0, &dstX1, &dstY1,
174 &mirror_x, &mirror_y))
175 return true;
176
177 /* Find buffers */
178 struct intel_renderbuffer *src_irb;
179 struct intel_renderbuffer *dst_irb;
180 switch (buffer_bit) {
181 case GL_COLOR_BUFFER_BIT:
182 src_irb = intel_renderbuffer(read_fb->_ColorReadBuffer);
183 for (unsigned i = 0; i < ctx->DrawBuffer->_NumColorDrawBuffers; ++i) {
184 dst_irb = intel_renderbuffer(ctx->DrawBuffer->_ColorDrawBuffers[i]);
185 if (dst_irb && !formats_match(buffer_bit, src_irb, dst_irb))
186 return false;
187 }
188 for (unsigned i = 0; i < ctx->DrawBuffer->_NumColorDrawBuffers; ++i) {
189 dst_irb = intel_renderbuffer(ctx->DrawBuffer->_ColorDrawBuffers[i]);
190 if (dst_irb)
191 do_blorp_blit(brw, buffer_bit, src_irb, dst_irb, srcX0, srcY0,
192 srcX1, srcY1, dstX0, dstY0, dstX1, dstY1,
193 filter, mirror_x, mirror_y);
194 }
195 break;
196 case GL_DEPTH_BUFFER_BIT:
197 src_irb =
198 intel_renderbuffer(read_fb->Attachment[BUFFER_DEPTH].Renderbuffer);
199 dst_irb =
200 intel_renderbuffer(draw_fb->Attachment[BUFFER_DEPTH].Renderbuffer);
201 if (!formats_match(buffer_bit, src_irb, dst_irb))
202 return false;
203 do_blorp_blit(brw, buffer_bit, src_irb, dst_irb, srcX0, srcY0,
204 srcX1, srcY1, dstX0, dstY0, dstX1, dstY1,
205 filter, mirror_x, mirror_y);
206 break;
207 case GL_STENCIL_BUFFER_BIT:
208 src_irb =
209 intel_renderbuffer(read_fb->Attachment[BUFFER_STENCIL].Renderbuffer);
210 dst_irb =
211 intel_renderbuffer(draw_fb->Attachment[BUFFER_STENCIL].Renderbuffer);
212 if (!formats_match(buffer_bit, src_irb, dst_irb))
213 return false;
214 do_blorp_blit(brw, buffer_bit, src_irb, dst_irb, srcX0, srcY0,
215 srcX1, srcY1, dstX0, dstY0, dstX1, dstY1,
216 filter, mirror_x, mirror_y);
217 break;
218 default:
219 assert(false);
220 }
221
222 return true;
223 }
224
225 bool
226 brw_blorp_copytexsubimage(struct brw_context *brw,
227 struct gl_renderbuffer *src_rb,
228 struct gl_texture_image *dst_image,
229 int slice,
230 int srcX0, int srcY0,
231 int dstX0, int dstY0,
232 int width, int height)
233 {
234 struct gl_context *ctx = &brw->ctx;
235 struct intel_renderbuffer *src_irb = intel_renderbuffer(src_rb);
236 struct intel_texture_image *intel_image = intel_texture_image(dst_image);
237
238 /* Sync up the state of window system buffers. We need to do this before
239 * we go looking at the src renderbuffer's miptree.
240 */
241 intel_prepare_render(brw);
242
243 struct intel_mipmap_tree *src_mt = src_irb->mt;
244 struct intel_mipmap_tree *dst_mt = intel_image->mt;
245
246 /* BLORP is not supported before Gen6. */
247 if (brw->gen < 6 || brw->gen >= 8)
248 return false;
249
250 if (_mesa_get_format_base_format(src_mt->format) !=
251 _mesa_get_format_base_format(dst_mt->format)) {
252 return false;
253 }
254
255 /* We can't handle format conversions between Z24 and other formats since
256 * we have to lie about the surface format. See the comments in
257 * brw_blorp_surface_info::set().
258 */
259 if ((src_mt->format == MESA_FORMAT_Z24_UNORM_X8_UINT) !=
260 (dst_mt->format == MESA_FORMAT_Z24_UNORM_X8_UINT)) {
261 return false;
262 }
263
264 if (!brw->format_supported_as_render_target[dst_mt->format])
265 return false;
266
267 /* Source clipping shouldn't be necessary, since copytexsubimage (in
268 * src/mesa/main/teximage.c) calls _mesa_clip_copytexsubimage() which
269 * takes care of it.
270 *
271 * Destination clipping shouldn't be necessary since the restrictions on
272 * glCopyTexSubImage prevent the user from specifying a destination rectangle
273 * that falls outside the bounds of the destination texture.
274 * See error_check_subtexture_dimensions().
275 */
276
277 int srcY1 = srcY0 + height;
278 int srcX1 = srcX0 + width;
279 int dstX1 = dstX0 + width;
280 int dstY1 = dstY0 + height;
281
282 /* Account for the fact that in the system framebuffer, the origin is at
283 * the lower left.
284 */
285 bool mirror_y = false;
286 if (_mesa_is_winsys_fbo(ctx->ReadBuffer)) {
287 GLint tmp = src_rb->Height - srcY0;
288 srcY0 = src_rb->Height - srcY1;
289 srcY1 = tmp;
290 mirror_y = true;
291 }
292
293 /* Account for face selection and texture view MinLayer */
294 int dst_slice = slice + dst_image->TexObject->MinLayer + dst_image->Face;
295 int dst_level = dst_image->Level + dst_image->TexObject->MinLevel;
296
297 brw_blorp_blit_miptrees(brw,
298 src_mt, src_irb->mt_level, src_irb->mt_layer,
299 dst_mt, dst_level, dst_slice,
300 srcX0, srcY0, srcX1, srcY1,
301 dstX0, dstY0, dstX1, dstY1,
302 GL_NEAREST, false, mirror_y);
303
304 /* If we're copying to a packed depth stencil texture and the source
305 * framebuffer has separate stencil, we need to also copy the stencil data
306 * over.
307 */
308 src_rb = ctx->ReadBuffer->Attachment[BUFFER_STENCIL].Renderbuffer;
309 if (_mesa_get_format_bits(dst_image->TexFormat, GL_STENCIL_BITS) > 0 &&
310 src_rb != NULL) {
311 src_irb = intel_renderbuffer(src_rb);
312 src_mt = src_irb->mt;
313
314 if (src_mt->stencil_mt)
315 src_mt = src_mt->stencil_mt;
316 if (dst_mt->stencil_mt)
317 dst_mt = dst_mt->stencil_mt;
318
319 if (src_mt != dst_mt) {
320 brw_blorp_blit_miptrees(brw,
321 src_mt, src_irb->mt_level, src_irb->mt_layer,
322 dst_mt, dst_level, dst_slice,
323 srcX0, srcY0, srcX1, srcY1,
324 dstX0, dstY0, dstX1, dstY1,
325 GL_NEAREST, false, mirror_y);
326 }
327 }
328
329 return true;
330 }
331
332
333 GLbitfield
334 brw_blorp_framebuffer(struct brw_context *brw,
335 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
336 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
337 GLbitfield mask, GLenum filter)
338 {
339 /* BLORP is not supported before Gen6. */
340 if (brw->gen < 6 || brw->gen >= 8)
341 return mask;
342
343 static GLbitfield buffer_bits[] = {
344 GL_COLOR_BUFFER_BIT,
345 GL_DEPTH_BUFFER_BIT,
346 GL_STENCIL_BUFFER_BIT,
347 };
348
349 for (unsigned int i = 0; i < ARRAY_SIZE(buffer_bits); ++i) {
350 if ((mask & buffer_bits[i]) &&
351 try_blorp_blit(brw,
352 srcX0, srcY0, srcX1, srcY1,
353 dstX0, dstY0, dstX1, dstY1,
354 filter, buffer_bits[i])) {
355 mask &= ~buffer_bits[i];
356 }
357 }
358
359 return mask;
360 }
361
362
363 /**
364 * Enum to specify the order of arguments in a sampler message
365 */
366 enum sampler_message_arg
367 {
368 SAMPLER_MESSAGE_ARG_U_FLOAT,
369 SAMPLER_MESSAGE_ARG_V_FLOAT,
370 SAMPLER_MESSAGE_ARG_U_INT,
371 SAMPLER_MESSAGE_ARG_V_INT,
372 SAMPLER_MESSAGE_ARG_SI_INT,
373 SAMPLER_MESSAGE_ARG_MCS_INT,
374 SAMPLER_MESSAGE_ARG_ZERO_INT,
375 };
376
377 /**
378 * Generator for WM programs used in BLORP blits.
379 *
380 * The bulk of the work done by the WM program is to wrap and unwrap the
381 * coordinate transformations used by the hardware to store surfaces in
382 * memory. The hardware transforms a pixel location (X, Y, S) (where S is the
383 * sample index for a multisampled surface) to a memory offset by the
384 * following formulas:
385 *
386 * offset = tile(tiling_format, encode_msaa(num_samples, layout, X, Y, S))
387 * (X, Y, S) = decode_msaa(num_samples, layout, detile(tiling_format, offset))
388 *
389 * For a single-sampled surface, or for a multisampled surface using
390 * INTEL_MSAA_LAYOUT_UMS, encode_msaa() and decode_msaa are the identity
391 * function:
392 *
393 * encode_msaa(1, NONE, X, Y, 0) = (X, Y, 0)
394 * decode_msaa(1, NONE, X, Y, 0) = (X, Y, 0)
395 * encode_msaa(n, UMS, X, Y, S) = (X, Y, S)
396 * decode_msaa(n, UMS, X, Y, S) = (X, Y, S)
397 *
398 * For a 4x multisampled surface using INTEL_MSAA_LAYOUT_IMS, encode_msaa()
399 * embeds the sample number into bit 1 of the X and Y coordinates:
400 *
401 * encode_msaa(4, IMS, X, Y, S) = (X', Y', 0)
402 * where X' = (X & ~0b1) << 1 | (S & 0b1) << 1 | (X & 0b1)
403 * Y' = (Y & ~0b1 ) << 1 | (S & 0b10) | (Y & 0b1)
404 * decode_msaa(4, IMS, X, Y, 0) = (X', Y', S)
405 * where X' = (X & ~0b11) >> 1 | (X & 0b1)
406 * Y' = (Y & ~0b11) >> 1 | (Y & 0b1)
407 * S = (Y & 0b10) | (X & 0b10) >> 1
408 *
409 * For an 8x multisampled surface using INTEL_MSAA_LAYOUT_IMS, encode_msaa()
410 * embeds the sample number into bits 1 and 2 of the X coordinate and bit 1 of
411 * the Y coordinate:
412 *
413 * encode_msaa(8, IMS, X, Y, S) = (X', Y', 0)
414 * where X' = (X & ~0b1) << 2 | (S & 0b100) | (S & 0b1) << 1 | (X & 0b1)
415 * Y' = (Y & ~0b1) << 1 | (S & 0b10) | (Y & 0b1)
416 * decode_msaa(8, IMS, X, Y, 0) = (X', Y', S)
417 * where X' = (X & ~0b111) >> 2 | (X & 0b1)
418 * Y' = (Y & ~0b11) >> 1 | (Y & 0b1)
419 * S = (X & 0b100) | (Y & 0b10) | (X & 0b10) >> 1
420 *
421 * For X tiling, tile() combines together the low-order bits of the X and Y
422 * coordinates in the pattern 0byyyxxxxxxxxx, creating 4k tiles that are 512
423 * bytes wide and 8 rows high:
424 *
425 * tile(x_tiled, X, Y, S) = A
426 * where A = tile_num << 12 | offset
427 * tile_num = (Y' >> 3) * tile_pitch + (X' >> 9)
428 * offset = (Y' & 0b111) << 9
429 * | (X & 0b111111111)
430 * X' = X * cpp
431 * Y' = Y + S * qpitch
432 * detile(x_tiled, A) = (X, Y, S)
433 * where X = X' / cpp
434 * Y = Y' % qpitch
435 * S = Y' / qpitch
436 * Y' = (tile_num / tile_pitch) << 3
437 * | (A & 0b111000000000) >> 9
438 * X' = (tile_num % tile_pitch) << 9
439 * | (A & 0b111111111)
440 *
441 * (In all tiling formulas, cpp is the number of bytes occupied by a single
442 * sample ("chars per pixel"), tile_pitch is the number of 4k tiles required
443 * to fill the width of the surface, and qpitch is the spacing (in rows)
444 * between array slices).
445 *
446 * For Y tiling, tile() combines together the low-order bits of the X and Y
447 * coordinates in the pattern 0bxxxyyyyyxxxx, creating 4k tiles that are 128
448 * bytes wide and 32 rows high:
449 *
450 * tile(y_tiled, X, Y, S) = A
451 * where A = tile_num << 12 | offset
452 * tile_num = (Y' >> 5) * tile_pitch + (X' >> 7)
453 * offset = (X' & 0b1110000) << 5
454 * | (Y' & 0b11111) << 4
455 * | (X' & 0b1111)
456 * X' = X * cpp
457 * Y' = Y + S * qpitch
458 * detile(y_tiled, A) = (X, Y, S)
459 * where X = X' / cpp
460 * Y = Y' % qpitch
461 * S = Y' / qpitch
462 * Y' = (tile_num / tile_pitch) << 5
463 * | (A & 0b111110000) >> 4
464 * X' = (tile_num % tile_pitch) << 7
465 * | (A & 0b111000000000) >> 5
466 * | (A & 0b1111)
467 *
468 * For W tiling, tile() combines together the low-order bits of the X and Y
469 * coordinates in the pattern 0bxxxyyyyxyxyx, creating 4k tiles that are 64
470 * bytes wide and 64 rows high (note that W tiling is only used for stencil
471 * buffers, which always have cpp = 1 and S=0):
472 *
473 * tile(w_tiled, X, Y, S) = A
474 * where A = tile_num << 12 | offset
475 * tile_num = (Y' >> 6) * tile_pitch + (X' >> 6)
476 * offset = (X' & 0b111000) << 6
477 * | (Y' & 0b111100) << 3
478 * | (X' & 0b100) << 2
479 * | (Y' & 0b10) << 2
480 * | (X' & 0b10) << 1
481 * | (Y' & 0b1) << 1
482 * | (X' & 0b1)
483 * X' = X * cpp = X
484 * Y' = Y + S * qpitch
485 * detile(w_tiled, A) = (X, Y, S)
486 * where X = X' / cpp = X'
487 * Y = Y' % qpitch = Y'
488 * S = Y / qpitch = 0
489 * Y' = (tile_num / tile_pitch) << 6
490 * | (A & 0b111100000) >> 3
491 * | (A & 0b1000) >> 2
492 * | (A & 0b10) >> 1
493 * X' = (tile_num % tile_pitch) << 6
494 * | (A & 0b111000000000) >> 6
495 * | (A & 0b10000) >> 2
496 * | (A & 0b100) >> 1
497 * | (A & 0b1)
498 *
499 * Finally, for a non-tiled surface, tile() simply combines together the X and
500 * Y coordinates in the natural way:
501 *
502 * tile(untiled, X, Y, S) = A
503 * where A = Y * pitch + X'
504 * X' = X * cpp
505 * Y' = Y + S * qpitch
506 * detile(untiled, A) = (X, Y, S)
507 * where X = X' / cpp
508 * Y = Y' % qpitch
509 * S = Y' / qpitch
510 * X' = A % pitch
511 * Y' = A / pitch
512 *
513 * (In these formulas, pitch is the number of bytes occupied by a single row
514 * of samples).
515 */
516 class brw_blorp_blit_program : public brw_blorp_eu_emitter
517 {
518 public:
519 brw_blorp_blit_program(struct brw_context *brw,
520 const brw_blorp_blit_prog_key *key);
521
522 const GLuint *compile(struct brw_context *brw, GLuint *program_size,
523 FILE *dump_file = stderr);
524
525 brw_blorp_prog_data prog_data;
526
527 private:
528 void alloc_regs();
529 void alloc_push_const_regs(int base_reg);
530 void compute_frag_coords();
531 void translate_tiling(bool old_tiled_w, bool new_tiled_w);
532 void encode_msaa(unsigned num_samples, intel_msaa_layout layout);
533 void decode_msaa(unsigned num_samples, intel_msaa_layout layout);
534 void translate_dst_to_src();
535 void clamp_tex_coords(struct brw_reg regX, struct brw_reg regY,
536 struct brw_reg clampX0, struct brw_reg clampY0,
537 struct brw_reg clampX1, struct brw_reg clampY1);
538 void single_to_blend();
539 void manual_blend_average(unsigned num_samples);
540 void manual_blend_bilinear(unsigned num_samples);
541 void sample(struct brw_reg dst);
542 void texel_fetch(struct brw_reg dst);
543 void mcs_fetch();
544 void texture_lookup(struct brw_reg dst, enum opcode op,
545 const sampler_message_arg *args, int num_args);
546 void render_target_write();
547
548 /**
549 * Base-2 logarithm of the maximum number of samples that can be blended.
550 */
551 static const unsigned LOG2_MAX_BLEND_SAMPLES = 3;
552
553 struct brw_context *brw;
554 const brw_blorp_blit_prog_key *key;
555
556 /* Thread dispatch header */
557 struct brw_reg R0;
558
559 /* Pixel X/Y coordinates (always in R1). */
560 struct brw_reg R1;
561
562 /* Push constants */
563 struct brw_reg dst_x0;
564 struct brw_reg dst_x1;
565 struct brw_reg dst_y0;
566 struct brw_reg dst_y1;
567 /* Top right coordinates of the rectangular grid used for scaled blitting */
568 struct brw_reg rect_grid_x1;
569 struct brw_reg rect_grid_y1;
570 struct {
571 struct brw_reg multiplier;
572 struct brw_reg offset;
573 } x_transform, y_transform;
574
575 /* Data read from texture (4 vec16's per array element) */
576 struct brw_reg texture_data[LOG2_MAX_BLEND_SAMPLES + 1];
577
578 /* Auxiliary storage for the contents of the MCS surface.
579 *
580 * Since the sampler always returns 8 registers worth of data, this is 8
581 * registers wide, even though we only use the first 2 registers of it.
582 */
583 struct brw_reg mcs_data;
584
585 /* X coordinates. We have two of them so that we can perform coordinate
586 * transformations easily.
587 */
588 struct brw_reg x_coords[2];
589
590 /* Y coordinates. We have two of them so that we can perform coordinate
591 * transformations easily.
592 */
593 struct brw_reg y_coords[2];
594
595 /* X, Y coordinates of the pixel from which we need to fetch the specific
596 * sample. These are used for multisample scaled blitting.
597 */
598 struct brw_reg x_sample_coords;
599 struct brw_reg y_sample_coords;
600
601 /* Fractional parts of the x and y coordinates, used as bilinear interpolation coefficients */
602 struct brw_reg x_frac;
603 struct brw_reg y_frac;
604
605 /* Which element of x_coords and y_coords is currently in use.
606 */
607 int xy_coord_index;
608
609 /* True if, at the point in the program currently being compiled, the
610 * sample index is known to be zero.
611 */
612 bool s_is_zero;
613
614 /* Register storing the sample index when s_is_zero is false. */
615 struct brw_reg sample_index;
616
617 /* Temporaries */
618 struct brw_reg t1;
619 struct brw_reg t2;
620
621 /* MRF used for sampling and render target writes */
622 GLuint base_mrf;
623 };
624
625 brw_blorp_blit_program::brw_blorp_blit_program(
626 struct brw_context *brw,
627 const brw_blorp_blit_prog_key *key)
628 : brw_blorp_eu_emitter(brw),
629 brw(brw),
630 key(key)
631 {
632 }
633
634 const GLuint *
635 brw_blorp_blit_program::compile(struct brw_context *brw,
636 GLuint *program_size,
637 FILE *dump_file)
638 {
639 /* Sanity checks */
640 if (key->dst_tiled_w && key->rt_samples > 0) {
641 /* If the destination image is W tiled and multisampled, then the thread
642 * must be dispatched once per sample, not once per pixel. This is
643 * necessary because after conversion between W and Y tiling, there's no
644 * guarantee that all samples corresponding to a single pixel will still
645 * be together.
646 */
647 assert(key->persample_msaa_dispatch);
648 }
649
650 if (key->blend) {
651 /* We are blending, which means we won't have an opportunity to
652 * translate the tiling and sample count for the texture surface. So
653 * the surface state for the texture must be configured with the correct
654 * tiling and sample count.
655 */
656 assert(!key->src_tiled_w);
657 assert(key->tex_samples == key->src_samples);
658 assert(key->tex_layout == key->src_layout);
659 assert(key->tex_samples > 0);
660 }
661
662 if (key->persample_msaa_dispatch) {
663 /* It only makes sense to do persample dispatch if the render target is
664 * configured as multisampled.
665 */
666 assert(key->rt_samples > 0);
667 }
668
669 /* Make sure layout is consistent with sample count */
670 assert((key->tex_layout == INTEL_MSAA_LAYOUT_NONE) ==
671 (key->tex_samples == 0));
672 assert((key->rt_layout == INTEL_MSAA_LAYOUT_NONE) ==
673 (key->rt_samples == 0));
674 assert((key->src_layout == INTEL_MSAA_LAYOUT_NONE) ==
675 (key->src_samples == 0));
676 assert((key->dst_layout == INTEL_MSAA_LAYOUT_NONE) ==
677 (key->dst_samples == 0));
678
679 /* Set up prog_data */
680 memset(&prog_data, 0, sizeof(prog_data));
681 prog_data.persample_msaa_dispatch = key->persample_msaa_dispatch;
682
683 alloc_regs();
684 compute_frag_coords();
685
686 /* Render target and texture hardware don't support W tiling. */
687 const bool rt_tiled_w = false;
688 const bool tex_tiled_w = false;
689
690 /* The address that data will be written to is determined by the
691 * coordinates supplied to the WM thread and the tiling and sample count of
692 * the render target, according to the formula:
693 *
694 * (X, Y, S) = decode_msaa(rt_samples, detile(rt_tiling, offset))
695 *
696 * If the actual tiling and sample count of the destination surface are not
697 * the same as the configuration of the render target, then these
698 * coordinates are wrong and we have to adjust them to compensate for the
699 * difference.
700 */
701 if (rt_tiled_w != key->dst_tiled_w ||
702 key->rt_samples != key->dst_samples ||
703 key->rt_layout != key->dst_layout) {
704 encode_msaa(key->rt_samples, key->rt_layout);
705 /* Now (X, Y, S) = detile(rt_tiling, offset) */
706 translate_tiling(rt_tiled_w, key->dst_tiled_w);
707 /* Now (X, Y, S) = detile(dst_tiling, offset) */
708 decode_msaa(key->dst_samples, key->dst_layout);
709 }
710
711 /* Now (X, Y, S) = decode_msaa(dst_samples, detile(dst_tiling, offset)).
712 *
713 * That is: X, Y and S now contain the true coordinates and sample index of
714 * the data that the WM thread should output.
715 *
716 * If we need to kill pixels that are outside the destination rectangle,
717 * now is the time to do it.
718 */
719
720 if (key->use_kill)
721 emit_kill_if_outside_rect(x_coords[xy_coord_index],
722 y_coords[xy_coord_index],
723 dst_x0, dst_x1, dst_y0, dst_y1);
724
725 /* Next, apply a translation to obtain coordinates in the source image. */
726 translate_dst_to_src();
727
728 /* If the source image is not multisampled, then we want to fetch sample
729 * number 0, because that's the only sample there is.
730 */
731 if (key->src_samples == 0)
732 s_is_zero = true;
733
734 /* X, Y, and S are now the coordinates of the pixel in the source image
735 * that we want to texture from. Exception: if we are blending, then S is
736 * irrelevant, because we are going to fetch all samples.
737 */
738 if (key->blend && !key->blit_scaled) {
739 if (brw->gen == 6) {
740 /* Gen6 hardware an automatically blend using the SAMPLE message */
741 single_to_blend();
742 sample(texture_data[0]);
743 } else {
744 /* Gen7+ hardware doesn't automaticaly blend. */
745 manual_blend_average(key->src_samples);
746 }
747 } else if(key->blend && key->blit_scaled) {
748 manual_blend_bilinear(key->src_samples);
749 } else {
750 /* We aren't blending, which means we just want to fetch a single sample
751 * from the source surface. The address that we want to fetch from is
752 * related to the X, Y and S values according to the formula:
753 *
754 * (X, Y, S) = decode_msaa(src_samples, detile(src_tiling, offset)).
755 *
756 * If the actual tiling and sample count of the source surface are not
757 * the same as the configuration of the texture, then we need to adjust
758 * the coordinates to compensate for the difference.
759 */
760 if ((tex_tiled_w != key->src_tiled_w ||
761 key->tex_samples != key->src_samples ||
762 key->tex_layout != key->src_layout) &&
763 !key->bilinear_filter) {
764 encode_msaa(key->src_samples, key->src_layout);
765 /* Now (X, Y, S) = detile(src_tiling, offset) */
766 translate_tiling(key->src_tiled_w, tex_tiled_w);
767 /* Now (X, Y, S) = detile(tex_tiling, offset) */
768 decode_msaa(key->tex_samples, key->tex_layout);
769 }
770
771 if (key->bilinear_filter) {
772 sample(texture_data[0]);
773 }
774 else {
775 /* Now (X, Y, S) = decode_msaa(tex_samples, detile(tex_tiling, offset)).
776 *
777 * In other words: X, Y, and S now contain values which, when passed to
778 * the texturing unit, will cause data to be read from the correct
779 * memory location. So we can fetch the texel now.
780 */
781 if (key->tex_layout == INTEL_MSAA_LAYOUT_CMS)
782 mcs_fetch();
783 texel_fetch(texture_data[0]);
784 }
785 }
786
787 /* Finally, write the fetched (or blended) value to the render target and
788 * terminate the thread.
789 */
790 render_target_write();
791
792 return get_program(program_size, dump_file);
793 }
794
795 void
796 brw_blorp_blit_program::alloc_push_const_regs(int base_reg)
797 {
798 #define CONST_LOC(name) offsetof(brw_blorp_wm_push_constants, name)
799 #define ALLOC_REG(name, type) \
800 this->name = \
801 retype(brw_vec1_reg(BRW_GENERAL_REGISTER_FILE, \
802 base_reg + CONST_LOC(name) / 32, \
803 (CONST_LOC(name) % 32) / 4), type)
804
805 ALLOC_REG(dst_x0, BRW_REGISTER_TYPE_UD);
806 ALLOC_REG(dst_x1, BRW_REGISTER_TYPE_UD);
807 ALLOC_REG(dst_y0, BRW_REGISTER_TYPE_UD);
808 ALLOC_REG(dst_y1, BRW_REGISTER_TYPE_UD);
809 ALLOC_REG(rect_grid_x1, BRW_REGISTER_TYPE_F);
810 ALLOC_REG(rect_grid_y1, BRW_REGISTER_TYPE_F);
811 ALLOC_REG(x_transform.multiplier, BRW_REGISTER_TYPE_F);
812 ALLOC_REG(x_transform.offset, BRW_REGISTER_TYPE_F);
813 ALLOC_REG(y_transform.multiplier, BRW_REGISTER_TYPE_F);
814 ALLOC_REG(y_transform.offset, BRW_REGISTER_TYPE_F);
815 #undef CONST_LOC
816 #undef ALLOC_REG
817 }
818
819 void
820 brw_blorp_blit_program::alloc_regs()
821 {
822 int reg = 0;
823 this->R0 = retype(brw_vec8_grf(reg++, 0), BRW_REGISTER_TYPE_UW);
824 this->R1 = retype(brw_vec8_grf(reg++, 0), BRW_REGISTER_TYPE_UW);
825 prog_data.first_curbe_grf = reg;
826 alloc_push_const_regs(reg);
827 reg += BRW_BLORP_NUM_PUSH_CONST_REGS;
828 for (unsigned i = 0; i < ARRAY_SIZE(texture_data); ++i) {
829 this->texture_data[i] =
830 retype(vec16(brw_vec8_grf(reg, 0)), key->texture_data_type);
831 reg += 8;
832 }
833 this->mcs_data =
834 retype(brw_vec8_grf(reg, 0), BRW_REGISTER_TYPE_UD); reg += 8;
835
836 for (int i = 0; i < 2; ++i) {
837 this->x_coords[i]
838 = retype(brw_vec8_grf(reg, 0), BRW_REGISTER_TYPE_UD);
839 reg += 2;
840 this->y_coords[i]
841 = retype(brw_vec8_grf(reg, 0), BRW_REGISTER_TYPE_UD);
842 reg += 2;
843 }
844
845 if (key->blit_scaled && key->blend) {
846 this->x_sample_coords = brw_vec8_grf(reg, 0);
847 reg += 2;
848 this->y_sample_coords = brw_vec8_grf(reg, 0);
849 reg += 2;
850 this->x_frac = brw_vec8_grf(reg, 0);
851 reg += 2;
852 this->y_frac = brw_vec8_grf(reg, 0);
853 reg += 2;
854 }
855
856 this->xy_coord_index = 0;
857 this->sample_index
858 = retype(brw_vec8_grf(reg, 0), BRW_REGISTER_TYPE_UD);
859 reg += 2;
860 this->t1 = retype(brw_vec8_grf(reg, 0), BRW_REGISTER_TYPE_UD);
861 reg += 2;
862 this->t2 = retype(brw_vec8_grf(reg, 0), BRW_REGISTER_TYPE_UD);
863 reg += 2;
864
865 /* Make sure we didn't run out of registers */
866 assert(reg <= GEN7_MRF_HACK_START);
867
868 int mrf = 2;
869 this->base_mrf = mrf;
870 }
871
872 /* In the code that follows, X and Y can be used to quickly refer to the
873 * active elements of x_coords and y_coords, and Xp and Yp ("X prime" and "Y
874 * prime") to the inactive elements.
875 *
876 * S can be used to quickly refer to sample_index.
877 */
878 #define X x_coords[xy_coord_index]
879 #define Y y_coords[xy_coord_index]
880 #define Xp x_coords[!xy_coord_index]
881 #define Yp y_coords[!xy_coord_index]
882 #define S sample_index
883
884 /* Quickly swap the roles of (X, Y) and (Xp, Yp). Saves us from having to do
885 * MOVs to transfor (Xp, Yp) to (X, Y) after a coordinate transformation.
886 */
887 #define SWAP_XY_AND_XPYP() xy_coord_index = !xy_coord_index;
888
889 /**
890 * Emit code to compute the X and Y coordinates of the pixels being rendered
891 * by this WM invocation.
892 *
893 * Assuming the render target is set up for Y tiling, these (X, Y) values are
894 * related to the address offset where outputs will be written by the formula:
895 *
896 * (X, Y, S) = decode_msaa(detile(offset)).
897 *
898 * (See brw_blorp_blit_program).
899 */
900 void
901 brw_blorp_blit_program::compute_frag_coords()
902 {
903 /* R1.2[15:0] = X coordinate of upper left pixel of subspan 0 (pixel 0)
904 * R1.3[15:0] = X coordinate of upper left pixel of subspan 1 (pixel 4)
905 * R1.4[15:0] = X coordinate of upper left pixel of subspan 2 (pixel 8)
906 * R1.5[15:0] = X coordinate of upper left pixel of subspan 3 (pixel 12)
907 *
908 * Pixels within a subspan are laid out in this arrangement:
909 * 0 1
910 * 2 3
911 *
912 * So, to compute the coordinates of each pixel, we need to read every 2nd
913 * 16-bit value (vstride=2) from R1, starting at the 4th 16-bit value
914 * (suboffset=4), and duplicate each value 4 times (hstride=0, width=4).
915 * In other words, the data we want to access is R1.4<2;4,0>UW.
916 *
917 * Then, we need to add the repeating sequence (0, 1, 0, 1, ...) to the
918 * result, since pixels n+1 and n+3 are in the right half of the subspan.
919 */
920 emit_add(vec16(retype(X, BRW_REGISTER_TYPE_UW)),
921 stride(suboffset(R1, 4), 2, 4, 0), brw_imm_v(0x10101010));
922
923 /* Similarly, Y coordinates for subspans come from R1.2[31:16] through
924 * R1.5[31:16], so to get pixel Y coordinates we need to start at the 5th
925 * 16-bit value instead of the 4th (R1.5<2;4,0>UW instead of
926 * R1.4<2;4,0>UW).
927 *
928 * And we need to add the repeating sequence (0, 0, 1, 1, ...), since
929 * pixels n+2 and n+3 are in the bottom half of the subspan.
930 */
931 emit_add(vec16(retype(Y, BRW_REGISTER_TYPE_UW)),
932 stride(suboffset(R1, 5), 2, 4, 0), brw_imm_v(0x11001100));
933
934 /* Move the coordinates to UD registers. */
935 emit_mov(vec16(Xp), retype(X, BRW_REGISTER_TYPE_UW));
936 emit_mov(vec16(Yp), retype(Y, BRW_REGISTER_TYPE_UW));
937 SWAP_XY_AND_XPYP();
938
939 if (key->persample_msaa_dispatch) {
940 switch (key->rt_samples) {
941 case 4: {
942 /* The WM will be run in MSDISPMODE_PERSAMPLE with num_samples == 4.
943 * Therefore, subspan 0 will represent sample 0, subspan 1 will
944 * represent sample 1, and so on.
945 *
946 * So we need to populate S with the sequence (0, 0, 0, 0, 1, 1, 1,
947 * 1, 2, 2, 2, 2, 3, 3, 3, 3). The easiest way to do this is to
948 * populate a temporary variable with the sequence (0, 1, 2, 3), and
949 * then copy from it using vstride=1, width=4, hstride=0.
950 */
951 struct brw_reg t1_uw1 = retype(t1, BRW_REGISTER_TYPE_UW);
952 emit_mov(vec16(t1_uw1), brw_imm_v(0x3210));
953 /* Move to UD sample_index register. */
954 emit_mov_8(S, stride(t1_uw1, 1, 4, 0));
955 emit_mov_8(offset(S, 1), suboffset(stride(t1_uw1, 1, 4, 0), 2));
956 break;
957 }
958 case 8: {
959 /* The WM will be run in MSDISPMODE_PERSAMPLE with num_samples == 8.
960 * Therefore, subspan 0 will represent sample N (where N is 0 or 4),
961 * subspan 1 will represent sample 1, and so on. We can find the
962 * value of N by looking at R0.0 bits 7:6 ("Starting Sample Pair
963 * Index") and multiplying by two (since samples are always delivered
964 * in pairs). That is, we compute 2*((R0.0 & 0xc0) >> 6) == (R0.0 &
965 * 0xc0) >> 5.
966 *
967 * Then we need to add N to the sequence (0, 0, 0, 0, 1, 1, 1, 1, 2,
968 * 2, 2, 2, 3, 3, 3, 3), which we compute by populating a temporary
969 * variable with the sequence (0, 1, 2, 3), and then reading from it
970 * using vstride=1, width=4, hstride=0.
971 */
972 struct brw_reg t1_ud1 = vec1(retype(t1, BRW_REGISTER_TYPE_UD));
973 struct brw_reg t2_uw1 = retype(t2, BRW_REGISTER_TYPE_UW);
974 struct brw_reg r0_ud1 = vec1(retype(R0, BRW_REGISTER_TYPE_UD));
975 emit_and(t1_ud1, r0_ud1, brw_imm_ud(0xc0));
976 emit_shr(t1_ud1, t1_ud1, brw_imm_ud(5));
977 emit_mov(vec16(t2_uw1), brw_imm_v(0x3210));
978 emit_add(vec16(S), retype(t1_ud1, BRW_REGISTER_TYPE_UW),
979 stride(t2_uw1, 1, 4, 0));
980 emit_add_8(offset(S, 1),
981 retype(t1_ud1, BRW_REGISTER_TYPE_UW),
982 suboffset(stride(t2_uw1, 1, 4, 0), 2));
983 break;
984 }
985 default:
986 assert(!"Unrecognized sample count in "
987 "brw_blorp_blit_program::compute_frag_coords()");
988 break;
989 }
990 s_is_zero = false;
991 } else {
992 /* Either the destination surface is single-sampled, or the WM will be
993 * run in MSDISPMODE_PERPIXEL (which causes a single fragment dispatch
994 * per pixel). In either case, it's not meaningful to compute a sample
995 * value. Just set it to 0.
996 */
997 s_is_zero = true;
998 }
999 }
1000
1001 /**
1002 * Emit code to compensate for the difference between Y and W tiling.
1003 *
1004 * This code modifies the X and Y coordinates according to the formula:
1005 *
1006 * (X', Y', S') = detile(new_tiling, tile(old_tiling, X, Y, S))
1007 *
1008 * (See brw_blorp_blit_program).
1009 *
1010 * It can only translate between W and Y tiling, so new_tiling and old_tiling
1011 * are booleans where true represents W tiling and false represents Y tiling.
1012 */
1013 void
1014 brw_blorp_blit_program::translate_tiling(bool old_tiled_w, bool new_tiled_w)
1015 {
1016 if (old_tiled_w == new_tiled_w)
1017 return;
1018
1019 /* In the code that follows, we can safely assume that S = 0, because W
1020 * tiling formats always use IMS layout.
1021 */
1022 assert(s_is_zero);
1023
1024 if (new_tiled_w) {
1025 /* Given X and Y coordinates that describe an address using Y tiling,
1026 * translate to the X and Y coordinates that describe the same address
1027 * using W tiling.
1028 *
1029 * If we break down the low order bits of X and Y, using a
1030 * single letter to represent each low-order bit:
1031 *
1032 * X = A << 7 | 0bBCDEFGH
1033 * Y = J << 5 | 0bKLMNP (1)
1034 *
1035 * Then we can apply the Y tiling formula to see the memory offset being
1036 * addressed:
1037 *
1038 * offset = (J * tile_pitch + A) << 12 | 0bBCDKLMNPEFGH (2)
1039 *
1040 * If we apply the W detiling formula to this memory location, that the
1041 * corresponding X' and Y' coordinates are:
1042 *
1043 * X' = A << 6 | 0bBCDPFH (3)
1044 * Y' = J << 6 | 0bKLMNEG
1045 *
1046 * Combining (1) and (3), we see that to transform (X, Y) to (X', Y'),
1047 * we need to make the following computation:
1048 *
1049 * X' = (X & ~0b1011) >> 1 | (Y & 0b1) << 2 | X & 0b1 (4)
1050 * Y' = (Y & ~0b1) << 1 | (X & 0b1000) >> 2 | (X & 0b10) >> 1
1051 */
1052 emit_and(t1, X, brw_imm_uw(0xfff4)); /* X & ~0b1011 */
1053 emit_shr(t1, t1, brw_imm_uw(1)); /* (X & ~0b1011) >> 1 */
1054 emit_and(t2, Y, brw_imm_uw(1)); /* Y & 0b1 */
1055 emit_shl(t2, t2, brw_imm_uw(2)); /* (Y & 0b1) << 2 */
1056 emit_or(t1, t1, t2); /* (X & ~0b1011) >> 1 | (Y & 0b1) << 2 */
1057 emit_and(t2, X, brw_imm_uw(1)); /* X & 0b1 */
1058 emit_or(Xp, t1, t2);
1059 emit_and(t1, Y, brw_imm_uw(0xfffe)); /* Y & ~0b1 */
1060 emit_shl(t1, t1, brw_imm_uw(1)); /* (Y & ~0b1) << 1 */
1061 emit_and(t2, X, brw_imm_uw(8)); /* X & 0b1000 */
1062 emit_shr(t2, t2, brw_imm_uw(2)); /* (X & 0b1000) >> 2 */
1063 emit_or(t1, t1, t2); /* (Y & ~0b1) << 1 | (X & 0b1000) >> 2 */
1064 emit_and(t2, X, brw_imm_uw(2)); /* X & 0b10 */
1065 emit_shr(t2, t2, brw_imm_uw(1)); /* (X & 0b10) >> 1 */
1066 emit_or(Yp, t1, t2);
1067 SWAP_XY_AND_XPYP();
1068 } else {
1069 /* Applying the same logic as above, but in reverse, we obtain the
1070 * formulas:
1071 *
1072 * X' = (X & ~0b101) << 1 | (Y & 0b10) << 2 | (Y & 0b1) << 1 | X & 0b1
1073 * Y' = (Y & ~0b11) >> 1 | (X & 0b100) >> 2
1074 */
1075 emit_and(t1, X, brw_imm_uw(0xfffa)); /* X & ~0b101 */
1076 emit_shl(t1, t1, brw_imm_uw(1)); /* (X & ~0b101) << 1 */
1077 emit_and(t2, Y, brw_imm_uw(2)); /* Y & 0b10 */
1078 emit_shl(t2, t2, brw_imm_uw(2)); /* (Y & 0b10) << 2 */
1079 emit_or(t1, t1, t2); /* (X & ~0b101) << 1 | (Y & 0b10) << 2 */
1080 emit_and(t2, Y, brw_imm_uw(1)); /* Y & 0b1 */
1081 emit_shl(t2, t2, brw_imm_uw(1)); /* (Y & 0b1) << 1 */
1082 emit_or(t1, t1, t2); /* (X & ~0b101) << 1 | (Y & 0b10) << 2
1083 | (Y & 0b1) << 1 */
1084 emit_and(t2, X, brw_imm_uw(1)); /* X & 0b1 */
1085 emit_or(Xp, t1, t2);
1086 emit_and(t1, Y, brw_imm_uw(0xfffc)); /* Y & ~0b11 */
1087 emit_shr(t1, t1, brw_imm_uw(1)); /* (Y & ~0b11) >> 1 */
1088 emit_and(t2, X, brw_imm_uw(4)); /* X & 0b100 */
1089 emit_shr(t2, t2, brw_imm_uw(2)); /* (X & 0b100) >> 2 */
1090 emit_or(Yp, t1, t2);
1091 SWAP_XY_AND_XPYP();
1092 }
1093 }
1094
1095 /**
1096 * Emit code to compensate for the difference between MSAA and non-MSAA
1097 * surfaces.
1098 *
1099 * This code modifies the X and Y coordinates according to the formula:
1100 *
1101 * (X', Y', S') = encode_msaa(num_samples, IMS, X, Y, S)
1102 *
1103 * (See brw_blorp_blit_program).
1104 */
1105 void
1106 brw_blorp_blit_program::encode_msaa(unsigned num_samples,
1107 intel_msaa_layout layout)
1108 {
1109 switch (layout) {
1110 case INTEL_MSAA_LAYOUT_NONE:
1111 /* No translation necessary, and S should already be zero. */
1112 assert(s_is_zero);
1113 break;
1114 case INTEL_MSAA_LAYOUT_CMS:
1115 /* We can't compensate for compressed layout since at this point in the
1116 * program we haven't read from the MCS buffer.
1117 */
1118 assert(!"Bad layout in encode_msaa");
1119 break;
1120 case INTEL_MSAA_LAYOUT_UMS:
1121 /* No translation necessary. */
1122 break;
1123 case INTEL_MSAA_LAYOUT_IMS:
1124 switch (num_samples) {
1125 case 4:
1126 /* encode_msaa(4, IMS, X, Y, S) = (X', Y', 0)
1127 * where X' = (X & ~0b1) << 1 | (S & 0b1) << 1 | (X & 0b1)
1128 * Y' = (Y & ~0b1) << 1 | (S & 0b10) | (Y & 0b1)
1129 */
1130 emit_and(t1, X, brw_imm_uw(0xfffe)); /* X & ~0b1 */
1131 if (!s_is_zero) {
1132 emit_and(t2, S, brw_imm_uw(1)); /* S & 0b1 */
1133 emit_or(t1, t1, t2); /* (X & ~0b1) | (S & 0b1) */
1134 }
1135 emit_shl(t1, t1, brw_imm_uw(1)); /* (X & ~0b1) << 1
1136 | (S & 0b1) << 1 */
1137 emit_and(t2, X, brw_imm_uw(1)); /* X & 0b1 */
1138 emit_or(Xp, t1, t2);
1139 emit_and(t1, Y, brw_imm_uw(0xfffe)); /* Y & ~0b1 */
1140 emit_shl(t1, t1, brw_imm_uw(1)); /* (Y & ~0b1) << 1 */
1141 if (!s_is_zero) {
1142 emit_and(t2, S, brw_imm_uw(2)); /* S & 0b10 */
1143 emit_or(t1, t1, t2); /* (Y & ~0b1) << 1 | (S & 0b10) */
1144 }
1145 emit_and(t2, Y, brw_imm_uw(1)); /* Y & 0b1 */
1146 emit_or(Yp, t1, t2);
1147 break;
1148 case 8:
1149 /* encode_msaa(8, IMS, X, Y, S) = (X', Y', 0)
1150 * where X' = (X & ~0b1) << 2 | (S & 0b100) | (S & 0b1) << 1
1151 * | (X & 0b1)
1152 * Y' = (Y & ~0b1) << 1 | (S & 0b10) | (Y & 0b1)
1153 */
1154 emit_and(t1, X, brw_imm_uw(0xfffe)); /* X & ~0b1 */
1155 emit_shl(t1, t1, brw_imm_uw(2)); /* (X & ~0b1) << 2 */
1156 if (!s_is_zero) {
1157 emit_and(t2, S, brw_imm_uw(4)); /* S & 0b100 */
1158 emit_or(t1, t1, t2); /* (X & ~0b1) << 2 | (S & 0b100) */
1159 emit_and(t2, S, brw_imm_uw(1)); /* S & 0b1 */
1160 emit_shl(t2, t2, brw_imm_uw(1)); /* (S & 0b1) << 1 */
1161 emit_or(t1, t1, t2); /* (X & ~0b1) << 2 | (S & 0b100)
1162 | (S & 0b1) << 1 */
1163 }
1164 emit_and(t2, X, brw_imm_uw(1)); /* X & 0b1 */
1165 emit_or(Xp, t1, t2);
1166 emit_and(t1, Y, brw_imm_uw(0xfffe)); /* Y & ~0b1 */
1167 emit_shl(t1, t1, brw_imm_uw(1)); /* (Y & ~0b1) << 1 */
1168 if (!s_is_zero) {
1169 emit_and(t2, S, brw_imm_uw(2)); /* S & 0b10 */
1170 emit_or(t1, t1, t2); /* (Y & ~0b1) << 1 | (S & 0b10) */
1171 }
1172 emit_and(t2, Y, brw_imm_uw(1)); /* Y & 0b1 */
1173 emit_or(Yp, t1, t2);
1174 break;
1175 }
1176 SWAP_XY_AND_XPYP();
1177 s_is_zero = true;
1178 break;
1179 }
1180 }
1181
1182 /**
1183 * Emit code to compensate for the difference between MSAA and non-MSAA
1184 * surfaces.
1185 *
1186 * This code modifies the X and Y coordinates according to the formula:
1187 *
1188 * (X', Y', S) = decode_msaa(num_samples, IMS, X, Y, S)
1189 *
1190 * (See brw_blorp_blit_program).
1191 */
1192 void
1193 brw_blorp_blit_program::decode_msaa(unsigned num_samples,
1194 intel_msaa_layout layout)
1195 {
1196 switch (layout) {
1197 case INTEL_MSAA_LAYOUT_NONE:
1198 /* No translation necessary, and S should already be zero. */
1199 assert(s_is_zero);
1200 break;
1201 case INTEL_MSAA_LAYOUT_CMS:
1202 /* We can't compensate for compressed layout since at this point in the
1203 * program we don't have access to the MCS buffer.
1204 */
1205 assert(!"Bad layout in encode_msaa");
1206 break;
1207 case INTEL_MSAA_LAYOUT_UMS:
1208 /* No translation necessary. */
1209 break;
1210 case INTEL_MSAA_LAYOUT_IMS:
1211 assert(s_is_zero);
1212 switch (num_samples) {
1213 case 4:
1214 /* decode_msaa(4, IMS, X, Y, 0) = (X', Y', S)
1215 * where X' = (X & ~0b11) >> 1 | (X & 0b1)
1216 * Y' = (Y & ~0b11) >> 1 | (Y & 0b1)
1217 * S = (Y & 0b10) | (X & 0b10) >> 1
1218 */
1219 emit_and(t1, X, brw_imm_uw(0xfffc)); /* X & ~0b11 */
1220 emit_shr(t1, t1, brw_imm_uw(1)); /* (X & ~0b11) >> 1 */
1221 emit_and(t2, X, brw_imm_uw(1)); /* X & 0b1 */
1222 emit_or(Xp, t1, t2);
1223 emit_and(t1, Y, brw_imm_uw(0xfffc)); /* Y & ~0b11 */
1224 emit_shr(t1, t1, brw_imm_uw(1)); /* (Y & ~0b11) >> 1 */
1225 emit_and(t2, Y, brw_imm_uw(1)); /* Y & 0b1 */
1226 emit_or(Yp, t1, t2);
1227 emit_and(t1, Y, brw_imm_uw(2)); /* Y & 0b10 */
1228 emit_and(t2, X, brw_imm_uw(2)); /* X & 0b10 */
1229 emit_shr(t2, t2, brw_imm_uw(1)); /* (X & 0b10) >> 1 */
1230 emit_or(S, t1, t2);
1231 break;
1232 case 8:
1233 /* decode_msaa(8, IMS, X, Y, 0) = (X', Y', S)
1234 * where X' = (X & ~0b111) >> 2 | (X & 0b1)
1235 * Y' = (Y & ~0b11) >> 1 | (Y & 0b1)
1236 * S = (X & 0b100) | (Y & 0b10) | (X & 0b10) >> 1
1237 */
1238 emit_and(t1, X, brw_imm_uw(0xfff8)); /* X & ~0b111 */
1239 emit_shr(t1, t1, brw_imm_uw(2)); /* (X & ~0b111) >> 2 */
1240 emit_and(t2, X, brw_imm_uw(1)); /* X & 0b1 */
1241 emit_or(Xp, t1, t2);
1242 emit_and(t1, Y, brw_imm_uw(0xfffc)); /* Y & ~0b11 */
1243 emit_shr(t1, t1, brw_imm_uw(1)); /* (Y & ~0b11) >> 1 */
1244 emit_and(t2, Y, brw_imm_uw(1)); /* Y & 0b1 */
1245 emit_or(Yp, t1, t2);
1246 emit_and(t1, X, brw_imm_uw(4)); /* X & 0b100 */
1247 emit_and(t2, Y, brw_imm_uw(2)); /* Y & 0b10 */
1248 emit_or(t1, t1, t2); /* (X & 0b100) | (Y & 0b10) */
1249 emit_and(t2, X, brw_imm_uw(2)); /* X & 0b10 */
1250 emit_shr(t2, t2, brw_imm_uw(1)); /* (X & 0b10) >> 1 */
1251 emit_or(S, t1, t2);
1252 break;
1253 }
1254 s_is_zero = false;
1255 SWAP_XY_AND_XPYP();
1256 break;
1257 }
1258 }
1259
1260 /**
1261 * Emit code to translate from destination (X, Y) coordinates to source (X, Y)
1262 * coordinates.
1263 */
1264 void
1265 brw_blorp_blit_program::translate_dst_to_src()
1266 {
1267 struct brw_reg X_f = retype(X, BRW_REGISTER_TYPE_F);
1268 struct brw_reg Y_f = retype(Y, BRW_REGISTER_TYPE_F);
1269 struct brw_reg Xp_f = retype(Xp, BRW_REGISTER_TYPE_F);
1270 struct brw_reg Yp_f = retype(Yp, BRW_REGISTER_TYPE_F);
1271
1272 /* Move the UD coordinates to float registers. */
1273 emit_mov(Xp_f, X);
1274 emit_mov(Yp_f, Y);
1275 /* Scale and offset */
1276 emit_mul(X_f, Xp_f, x_transform.multiplier);
1277 emit_mul(Y_f, Yp_f, y_transform.multiplier);
1278 emit_add(X_f, X_f, x_transform.offset);
1279 emit_add(Y_f, Y_f, y_transform.offset);
1280 if (key->blit_scaled && key->blend) {
1281 /* Translate coordinates to lay out the samples in a rectangular grid
1282 * roughly corresponding to sample locations.
1283 */
1284 emit_mul(X_f, X_f, brw_imm_f(key->x_scale));
1285 emit_mul(Y_f, Y_f, brw_imm_f(key->y_scale));
1286 /* Adjust coordinates so that integers represent pixel centers rather
1287 * than pixel edges.
1288 */
1289 emit_add(X_f, X_f, brw_imm_f(-0.5));
1290 emit_add(Y_f, Y_f, brw_imm_f(-0.5));
1291
1292 /* Clamp the X, Y texture coordinates to properly handle the sampling of
1293 * texels on texture edges.
1294 */
1295 clamp_tex_coords(X_f, Y_f,
1296 brw_imm_f(0.0), brw_imm_f(0.0),
1297 rect_grid_x1, rect_grid_y1);
1298
1299 /* Store the fractional parts to be used as bilinear interpolation
1300 * coefficients.
1301 */
1302 emit_frc(x_frac, X_f);
1303 emit_frc(y_frac, Y_f);
1304
1305 /* Round the float coordinates down to nearest integer */
1306 emit_rndd(Xp_f, X_f);
1307 emit_rndd(Yp_f, Y_f);
1308 emit_mul(X_f, Xp_f, brw_imm_f(1 / key->x_scale));
1309 emit_mul(Y_f, Yp_f, brw_imm_f(1 / key->y_scale));
1310 SWAP_XY_AND_XPYP();
1311 } else if (!key->bilinear_filter) {
1312 /* Round the float coordinates down to nearest integer by moving to
1313 * UD registers.
1314 */
1315 emit_mov(Xp, X_f);
1316 emit_mov(Yp, Y_f);
1317 SWAP_XY_AND_XPYP();
1318 }
1319 }
1320
1321 void
1322 brw_blorp_blit_program::clamp_tex_coords(struct brw_reg regX,
1323 struct brw_reg regY,
1324 struct brw_reg clampX0,
1325 struct brw_reg clampY0,
1326 struct brw_reg clampX1,
1327 struct brw_reg clampY1)
1328 {
1329 emit_cond_mov(regX, clampX0, BRW_CONDITIONAL_L, regX, clampX0);
1330 emit_cond_mov(regX, clampX1, BRW_CONDITIONAL_G, regX, clampX1);
1331 emit_cond_mov(regY, clampY0, BRW_CONDITIONAL_L, regY, clampY0);
1332 emit_cond_mov(regY, clampY1, BRW_CONDITIONAL_G, regY, clampY1);
1333 }
1334
1335 /**
1336 * Emit code to transform the X and Y coordinates as needed for blending
1337 * together the different samples in an MSAA texture.
1338 */
1339 void
1340 brw_blorp_blit_program::single_to_blend()
1341 {
1342 /* When looking up samples in an MSAA texture using the SAMPLE message,
1343 * Gen6 requires the texture coordinates to be odd integers (so that they
1344 * correspond to the center of a 2x2 block representing the four samples
1345 * that maxe up a pixel). So we need to multiply our X and Y coordinates
1346 * each by 2 and then add 1.
1347 */
1348 emit_shl(t1, X, brw_imm_w(1));
1349 emit_shl(t2, Y, brw_imm_w(1));
1350 emit_add(Xp, t1, brw_imm_w(1));
1351 emit_add(Yp, t2, brw_imm_w(1));
1352 SWAP_XY_AND_XPYP();
1353 }
1354
1355
1356 /**
1357 * Count the number of trailing 1 bits in the given value. For example:
1358 *
1359 * count_trailing_one_bits(0) == 0
1360 * count_trailing_one_bits(7) == 3
1361 * count_trailing_one_bits(11) == 2
1362 */
1363 inline int count_trailing_one_bits(unsigned value)
1364 {
1365 #if defined(__GNUC__) && ((__GNUC__ * 100 + __GNUC_MINOR__) >= 304) /* gcc 3.4 or later */
1366 return __builtin_ctz(~value);
1367 #else
1368 return _mesa_bitcount(value & ~(value + 1));
1369 #endif
1370 }
1371
1372
1373 void
1374 brw_blorp_blit_program::manual_blend_average(unsigned num_samples)
1375 {
1376 if (key->tex_layout == INTEL_MSAA_LAYOUT_CMS)
1377 mcs_fetch();
1378
1379 /* We add together samples using a binary tree structure, e.g. for 4x MSAA:
1380 *
1381 * result = ((sample[0] + sample[1]) + (sample[2] + sample[3])) / 4
1382 *
1383 * This ensures that when all samples have the same value, no numerical
1384 * precision is lost, since each addition operation always adds two equal
1385 * values, and summing two equal floating point values does not lose
1386 * precision.
1387 *
1388 * We perform this computation by treating the texture_data array as a
1389 * stack and performing the following operations:
1390 *
1391 * - push sample 0 onto stack
1392 * - push sample 1 onto stack
1393 * - add top two stack entries
1394 * - push sample 2 onto stack
1395 * - push sample 3 onto stack
1396 * - add top two stack entries
1397 * - add top two stack entries
1398 * - divide top stack entry by 4
1399 *
1400 * Note that after pushing sample i onto the stack, the number of add
1401 * operations we do is equal to the number of trailing 1 bits in i. This
1402 * works provided the total number of samples is a power of two, which it
1403 * always is for i965.
1404 *
1405 * For integer formats, we replace the add operations with average
1406 * operations and skip the final division.
1407 */
1408 unsigned stack_depth = 0;
1409 for (unsigned i = 0; i < num_samples; ++i) {
1410 assert(stack_depth == _mesa_bitcount(i)); /* Loop invariant */
1411
1412 /* Push sample i onto the stack */
1413 assert(stack_depth < ARRAY_SIZE(texture_data));
1414 if (i == 0) {
1415 s_is_zero = true;
1416 } else {
1417 s_is_zero = false;
1418 emit_mov(vec16(S), brw_imm_ud(i));
1419 }
1420 texel_fetch(texture_data[stack_depth++]);
1421
1422 if (i == 0 && key->tex_layout == INTEL_MSAA_LAYOUT_CMS) {
1423 /* The Ivy Bridge PRM, Vol4 Part1 p27 (Multisample Control Surface)
1424 * suggests an optimization:
1425 *
1426 * "A simple optimization with probable large return in
1427 * performance is to compare the MCS value to zero (indicating
1428 * all samples are on sample slice 0), and sample only from
1429 * sample slice 0 using ld2dss if MCS is zero."
1430 *
1431 * Note that in the case where the MCS value is zero, sampling from
1432 * sample slice 0 using ld2dss and sampling from sample 0 using
1433 * ld2dms are equivalent (since all samples are on sample slice 0).
1434 * Since we have already sampled from sample 0, all we need to do is
1435 * skip the remaining fetches and averaging if MCS is zero.
1436 */
1437 emit_cmp_if(BRW_CONDITIONAL_NZ, mcs_data, brw_imm_ud(0));
1438 }
1439
1440 /* Do count_trailing_one_bits(i) times */
1441 for (int j = count_trailing_one_bits(i); j-- > 0; ) {
1442 assert(stack_depth >= 2);
1443 --stack_depth;
1444
1445 /* TODO: should use a smaller loop bound for non_RGBA formats */
1446 for (int k = 0; k < 4; ++k) {
1447 emit_combine(key->texture_data_type == BRW_REGISTER_TYPE_F ?
1448 BRW_OPCODE_ADD : BRW_OPCODE_AVG,
1449 offset(texture_data[stack_depth - 1], 2*k),
1450 offset(vec8(texture_data[stack_depth - 1]), 2*k),
1451 offset(vec8(texture_data[stack_depth]), 2*k));
1452 }
1453 }
1454 }
1455
1456 /* We should have just 1 sample on the stack now. */
1457 assert(stack_depth == 1);
1458
1459 if (key->texture_data_type == BRW_REGISTER_TYPE_F) {
1460 /* Scale the result down by a factor of num_samples */
1461 /* TODO: should use a smaller loop bound for non-RGBA formats */
1462 for (int j = 0; j < 4; ++j) {
1463 emit_mul(offset(texture_data[0], 2*j),
1464 offset(vec8(texture_data[0]), 2*j),
1465 brw_imm_f(1.0/num_samples));
1466 }
1467 }
1468
1469 if (key->tex_layout == INTEL_MSAA_LAYOUT_CMS)
1470 emit_endif();
1471 }
1472
1473 void
1474 brw_blorp_blit_program::manual_blend_bilinear(unsigned num_samples)
1475 {
1476 /* We do this computation by performing the following operations:
1477 *
1478 * In case of 4x, 8x MSAA:
1479 * - Compute the pixel coordinates and sample numbers (a, b, c, d)
1480 * which are later used for interpolation
1481 * - linearly interpolate samples a and b in X
1482 * - linearly interpolate samples c and d in X
1483 * - linearly interpolate the results of last two operations in Y
1484 *
1485 * result = lrp(lrp(a + b) + lrp(c + d))
1486 */
1487 struct brw_reg Xp_f = retype(Xp, BRW_REGISTER_TYPE_F);
1488 struct brw_reg Yp_f = retype(Yp, BRW_REGISTER_TYPE_F);
1489 struct brw_reg t1_f = retype(t1, BRW_REGISTER_TYPE_F);
1490 struct brw_reg t2_f = retype(t2, BRW_REGISTER_TYPE_F);
1491
1492 for (unsigned i = 0; i < 4; ++i) {
1493 assert(i < ARRAY_SIZE(texture_data));
1494 s_is_zero = false;
1495
1496 /* Compute pixel coordinates */
1497 emit_add(vec16(x_sample_coords), Xp_f,
1498 brw_imm_f((float)(i & 0x1) * (1.0 / key->x_scale)));
1499 emit_add(vec16(y_sample_coords), Yp_f,
1500 brw_imm_f((float)((i >> 1) & 0x1) * (1.0 / key->y_scale)));
1501 emit_mov(vec16(X), x_sample_coords);
1502 emit_mov(vec16(Y), y_sample_coords);
1503
1504 /* The MCS value we fetch has to match up with the pixel that we're
1505 * sampling from. Since we sample from different pixels in each
1506 * iteration of this "for" loop, the call to mcs_fetch() should be
1507 * here inside the loop after computing the pixel coordinates.
1508 */
1509 if (key->tex_layout == INTEL_MSAA_LAYOUT_CMS)
1510 mcs_fetch();
1511
1512 /* Compute sample index and map the sample index to a sample number.
1513 * Sample index layout shows the numbering of slots in a rectangular
1514 * grid of samples with in a pixel. Sample number layout shows the
1515 * rectangular grid of samples roughly corresponding to the real sample
1516 * locations with in a pixel.
1517 * In case of 4x MSAA, layout of sample indices matches the layout of
1518 * sample numbers:
1519 * ---------
1520 * | 0 | 1 |
1521 * ---------
1522 * | 2 | 3 |
1523 * ---------
1524 *
1525 * In case of 8x MSAA the two layouts don't match.
1526 * sample index layout : --------- sample number layout : ---------
1527 * | 0 | 1 | | 5 | 2 |
1528 * --------- ---------
1529 * | 2 | 3 | | 4 | 6 |
1530 * --------- ---------
1531 * | 4 | 5 | | 0 | 3 |
1532 * --------- ---------
1533 * | 6 | 7 | | 7 | 1 |
1534 * --------- ---------
1535 */
1536 emit_frc(vec16(t1_f), x_sample_coords);
1537 emit_frc(vec16(t2_f), y_sample_coords);
1538 emit_mul(vec16(t1_f), t1_f, brw_imm_f(key->x_scale));
1539 emit_mul(vec16(t2_f), t2_f, brw_imm_f(key->x_scale * key->y_scale));
1540 emit_add(vec16(t1_f), t1_f, t2_f);
1541 emit_mov(vec16(S), t1_f);
1542
1543 if (num_samples == 8) {
1544 /* Map the sample index to a sample number */
1545 emit_cmp_if(BRW_CONDITIONAL_L, S, brw_imm_d(4));
1546 {
1547 emit_mov(vec16(t2), brw_imm_d(5));
1548 emit_if_eq_mov(S, 1, vec16(t2), 2);
1549 emit_if_eq_mov(S, 2, vec16(t2), 4);
1550 emit_if_eq_mov(S, 3, vec16(t2), 6);
1551 }
1552 emit_else();
1553 {
1554 emit_mov(vec16(t2), brw_imm_d(0));
1555 emit_if_eq_mov(S, 5, vec16(t2), 3);
1556 emit_if_eq_mov(S, 6, vec16(t2), 7);
1557 emit_if_eq_mov(S, 7, vec16(t2), 1);
1558 }
1559 emit_endif();
1560 emit_mov(vec16(S), t2);
1561 }
1562 texel_fetch(texture_data[i]);
1563 }
1564
1565 #define SAMPLE(x, y) offset(texture_data[x], y)
1566 for (int index = 3; index > 0; ) {
1567 /* Since we're doing SIMD16, 4 color channels fits in to 8 registers.
1568 * Counter value of 8 in 'for' loop below is used to interpolate all
1569 * the color components.
1570 */
1571 for (int k = 0; k < 8; k += 2)
1572 emit_lrp(vec8(SAMPLE(index - 1, k)),
1573 x_frac,
1574 vec8(SAMPLE(index, k)),
1575 vec8(SAMPLE(index - 1, k)));
1576 index -= 2;
1577 }
1578 for (int k = 0; k < 8; k += 2)
1579 emit_lrp(vec8(SAMPLE(0, k)),
1580 y_frac,
1581 vec8(SAMPLE(2, k)),
1582 vec8(SAMPLE(0, k)));
1583 #undef SAMPLE
1584 }
1585
1586 /**
1587 * Emit code to look up a value in the texture using the SAMPLE message (which
1588 * does blending of MSAA surfaces).
1589 */
1590 void
1591 brw_blorp_blit_program::sample(struct brw_reg dst)
1592 {
1593 static const sampler_message_arg args[2] = {
1594 SAMPLER_MESSAGE_ARG_U_FLOAT,
1595 SAMPLER_MESSAGE_ARG_V_FLOAT
1596 };
1597
1598 texture_lookup(dst, SHADER_OPCODE_TEX, args, ARRAY_SIZE(args));
1599 }
1600
1601 /**
1602 * Emit code to look up a value in the texture using the SAMPLE_LD message
1603 * (which does a simple texel fetch).
1604 */
1605 void
1606 brw_blorp_blit_program::texel_fetch(struct brw_reg dst)
1607 {
1608 static const sampler_message_arg gen6_args[5] = {
1609 SAMPLER_MESSAGE_ARG_U_INT,
1610 SAMPLER_MESSAGE_ARG_V_INT,
1611 SAMPLER_MESSAGE_ARG_ZERO_INT, /* R */
1612 SAMPLER_MESSAGE_ARG_ZERO_INT, /* LOD */
1613 SAMPLER_MESSAGE_ARG_SI_INT
1614 };
1615 static const sampler_message_arg gen7_ld_args[3] = {
1616 SAMPLER_MESSAGE_ARG_U_INT,
1617 SAMPLER_MESSAGE_ARG_ZERO_INT, /* LOD */
1618 SAMPLER_MESSAGE_ARG_V_INT
1619 };
1620 static const sampler_message_arg gen7_ld2dss_args[3] = {
1621 SAMPLER_MESSAGE_ARG_SI_INT,
1622 SAMPLER_MESSAGE_ARG_U_INT,
1623 SAMPLER_MESSAGE_ARG_V_INT
1624 };
1625 static const sampler_message_arg gen7_ld2dms_args[4] = {
1626 SAMPLER_MESSAGE_ARG_SI_INT,
1627 SAMPLER_MESSAGE_ARG_MCS_INT,
1628 SAMPLER_MESSAGE_ARG_U_INT,
1629 SAMPLER_MESSAGE_ARG_V_INT
1630 };
1631
1632 switch (brw->gen) {
1633 case 6:
1634 texture_lookup(dst, SHADER_OPCODE_TXF, gen6_args, s_is_zero ? 2 : 5);
1635 break;
1636 case 7:
1637 switch (key->tex_layout) {
1638 case INTEL_MSAA_LAYOUT_IMS:
1639 /* From the Ivy Bridge PRM, Vol4 Part1 p72 (Multisampled Surface Storage
1640 * Format):
1641 *
1642 * If this field is MSFMT_DEPTH_STENCIL
1643 * [a.k.a. INTEL_MSAA_LAYOUT_IMS], the only sampling engine
1644 * messages allowed are "ld2dms", "resinfo", and "sampleinfo".
1645 *
1646 * So fall through to emit the same message as we use for
1647 * INTEL_MSAA_LAYOUT_CMS.
1648 */
1649 case INTEL_MSAA_LAYOUT_CMS:
1650 texture_lookup(dst, SHADER_OPCODE_TXF_CMS,
1651 gen7_ld2dms_args, ARRAY_SIZE(gen7_ld2dms_args));
1652 break;
1653 case INTEL_MSAA_LAYOUT_UMS:
1654 texture_lookup(dst, SHADER_OPCODE_TXF_UMS,
1655 gen7_ld2dss_args, ARRAY_SIZE(gen7_ld2dss_args));
1656 break;
1657 case INTEL_MSAA_LAYOUT_NONE:
1658 assert(s_is_zero);
1659 texture_lookup(dst, SHADER_OPCODE_TXF, gen7_ld_args,
1660 ARRAY_SIZE(gen7_ld_args));
1661 break;
1662 }
1663 break;
1664 default:
1665 assert(!"Should not get here.");
1666 break;
1667 };
1668 }
1669
1670 void
1671 brw_blorp_blit_program::mcs_fetch()
1672 {
1673 static const sampler_message_arg gen7_ld_mcs_args[2] = {
1674 SAMPLER_MESSAGE_ARG_U_INT,
1675 SAMPLER_MESSAGE_ARG_V_INT
1676 };
1677 texture_lookup(vec16(mcs_data), SHADER_OPCODE_TXF_MCS,
1678 gen7_ld_mcs_args, ARRAY_SIZE(gen7_ld_mcs_args));
1679 }
1680
1681 void
1682 brw_blorp_blit_program::texture_lookup(struct brw_reg dst,
1683 enum opcode op,
1684 const sampler_message_arg *args,
1685 int num_args)
1686 {
1687 struct brw_reg mrf =
1688 retype(vec16(brw_message_reg(base_mrf)), BRW_REGISTER_TYPE_UD);
1689 for (int arg = 0; arg < num_args; ++arg) {
1690 switch (args[arg]) {
1691 case SAMPLER_MESSAGE_ARG_U_FLOAT:
1692 if (key->bilinear_filter)
1693 emit_mov(retype(mrf, BRW_REGISTER_TYPE_F),
1694 retype(X, BRW_REGISTER_TYPE_F));
1695 else
1696 emit_mov(retype(mrf, BRW_REGISTER_TYPE_F), X);
1697 break;
1698 case SAMPLER_MESSAGE_ARG_V_FLOAT:
1699 if (key->bilinear_filter)
1700 emit_mov(retype(mrf, BRW_REGISTER_TYPE_F),
1701 retype(Y, BRW_REGISTER_TYPE_F));
1702 else
1703 emit_mov(retype(mrf, BRW_REGISTER_TYPE_F), Y);
1704 break;
1705 case SAMPLER_MESSAGE_ARG_U_INT:
1706 emit_mov(mrf, X);
1707 break;
1708 case SAMPLER_MESSAGE_ARG_V_INT:
1709 emit_mov(mrf, Y);
1710 break;
1711 case SAMPLER_MESSAGE_ARG_SI_INT:
1712 /* Note: on Gen7, this code may be reached with s_is_zero==true
1713 * because in Gen7's ld2dss message, the sample index is the first
1714 * argument. When this happens, we need to move a 0 into the
1715 * appropriate message register.
1716 */
1717 if (s_is_zero)
1718 emit_mov(mrf, brw_imm_ud(0));
1719 else
1720 emit_mov(mrf, S);
1721 break;
1722 case SAMPLER_MESSAGE_ARG_MCS_INT:
1723 switch (key->tex_layout) {
1724 case INTEL_MSAA_LAYOUT_CMS:
1725 emit_mov(mrf, mcs_data);
1726 break;
1727 case INTEL_MSAA_LAYOUT_IMS:
1728 /* When sampling from an IMS surface, MCS data is not relevant,
1729 * and the hardware ignores it. So don't bother populating it.
1730 */
1731 break;
1732 default:
1733 /* We shouldn't be trying to send MCS data with any other
1734 * layouts.
1735 */
1736 assert (!"Unsupported layout for MCS data");
1737 break;
1738 }
1739 break;
1740 case SAMPLER_MESSAGE_ARG_ZERO_INT:
1741 emit_mov(mrf, brw_imm_ud(0));
1742 break;
1743 }
1744 mrf.nr += 2;
1745 }
1746
1747 emit_texture_lookup(retype(dst, BRW_REGISTER_TYPE_UW) /* dest */,
1748 op,
1749 base_mrf,
1750 mrf.nr - base_mrf /* msg_length */);
1751 }
1752
1753 #undef X
1754 #undef Y
1755 #undef U
1756 #undef V
1757 #undef S
1758 #undef SWAP_XY_AND_XPYP
1759
1760 void
1761 brw_blorp_blit_program::render_target_write()
1762 {
1763 struct brw_reg mrf_rt_write =
1764 retype(vec16(brw_message_reg(base_mrf)), key->texture_data_type);
1765 int mrf_offset = 0;
1766
1767 /* If we may have killed pixels, then we need to send R0 and R1 in a header
1768 * so that the render target knows which pixels we killed.
1769 */
1770 bool use_header = key->use_kill;
1771 if (use_header) {
1772 /* Copy R0/1 to MRF */
1773 emit_mov(retype(mrf_rt_write, BRW_REGISTER_TYPE_UD),
1774 retype(R0, BRW_REGISTER_TYPE_UD));
1775 mrf_offset += 2;
1776 }
1777
1778 /* Copy texture data to MRFs */
1779 for (int i = 0; i < 4; ++i) {
1780 /* E.g. mov(16) m2.0<1>:f r2.0<8;8,1>:f { Align1, H1 } */
1781 emit_mov(offset(mrf_rt_write, mrf_offset),
1782 offset(vec8(texture_data[0]), 2*i));
1783 mrf_offset += 2;
1784 }
1785
1786 /* Now write to the render target and terminate the thread */
1787 emit_render_target_write(
1788 mrf_rt_write,
1789 base_mrf,
1790 mrf_offset /* msg_length. TODO: Should be smaller for non-RGBA formats. */,
1791 use_header);
1792 }
1793
1794
1795 void
1796 brw_blorp_coord_transform_params::setup(GLfloat src0, GLfloat src1,
1797 GLfloat dst0, GLfloat dst1,
1798 bool mirror)
1799 {
1800 float scale = (src1 - src0) / (dst1 - dst0);
1801 if (!mirror) {
1802 /* When not mirroring a coordinate (say, X), we need:
1803 * src_x - src_x0 = (dst_x - dst_x0 + 0.5) * scale
1804 * Therefore:
1805 * src_x = src_x0 + (dst_x - dst_x0 + 0.5) * scale
1806 *
1807 * blorp program uses "round toward zero" to convert the
1808 * transformed floating point coordinates to integer coordinates,
1809 * whereas the behaviour we actually want is "round to nearest",
1810 * so 0.5 provides the necessary correction.
1811 */
1812 multiplier = scale;
1813 offset = src0 + (-dst0 + 0.5) * scale;
1814 } else {
1815 /* When mirroring X we need:
1816 * src_x - src_x0 = dst_x1 - dst_x - 0.5
1817 * Therefore:
1818 * src_x = src_x0 + (dst_x1 -dst_x - 0.5) * scale
1819 */
1820 multiplier = -scale;
1821 offset = src0 + (dst1 - 0.5) * scale;
1822 }
1823 }
1824
1825
1826 /**
1827 * Determine which MSAA layout the GPU pipeline should be configured for,
1828 * based on the chip generation, the number of samples, and the true layout of
1829 * the image in memory.
1830 */
1831 inline intel_msaa_layout
1832 compute_msaa_layout_for_pipeline(struct brw_context *brw, unsigned num_samples,
1833 intel_msaa_layout true_layout)
1834 {
1835 if (num_samples <= 1) {
1836 /* When configuring the GPU for non-MSAA, we can still accommodate IMS
1837 * format buffers, by transforming coordinates appropriately.
1838 */
1839 assert(true_layout == INTEL_MSAA_LAYOUT_NONE ||
1840 true_layout == INTEL_MSAA_LAYOUT_IMS);
1841 return INTEL_MSAA_LAYOUT_NONE;
1842 } else {
1843 assert(true_layout != INTEL_MSAA_LAYOUT_NONE);
1844 }
1845
1846 /* Prior to Gen7, all MSAA surfaces use IMS layout. */
1847 if (brw->gen == 6) {
1848 assert(true_layout == INTEL_MSAA_LAYOUT_IMS);
1849 }
1850
1851 return true_layout;
1852 }
1853
1854
1855 brw_blorp_blit_params::brw_blorp_blit_params(struct brw_context *brw,
1856 struct intel_mipmap_tree *src_mt,
1857 unsigned src_level, unsigned src_layer,
1858 struct intel_mipmap_tree *dst_mt,
1859 unsigned dst_level, unsigned dst_layer,
1860 GLfloat src_x0, GLfloat src_y0,
1861 GLfloat src_x1, GLfloat src_y1,
1862 GLfloat dst_x0, GLfloat dst_y0,
1863 GLfloat dst_x1, GLfloat dst_y1,
1864 GLenum filter,
1865 bool mirror_x, bool mirror_y)
1866 {
1867 src.set(brw, src_mt, src_level, src_layer, false);
1868 dst.set(brw, dst_mt, dst_level, dst_layer, true);
1869
1870 /* Even though we do multisample resolves at the time of the blit, OpenGL
1871 * specification defines them as if they happen at the time of rendering,
1872 * which means that the type of averaging we do during the resolve should
1873 * only depend on the source format; the destination format should be
1874 * ignored. But, specification doesn't seem to be strict about it.
1875 *
1876 * It has been observed that mulitisample resolves produce slightly better
1877 * looking images when averaging is done using destination format. NVIDIA's
1878 * proprietary OpenGL driver also follow this approach. So, we choose to
1879 * follow it in our driver.
1880 *
1881 * When multisampling, if the source and destination formats are equal
1882 * (aside from the color space), we choose to blit in sRGB space to get
1883 * this higher quality image.
1884 */
1885 if (src.num_samples > 1 &&
1886 _mesa_get_format_color_encoding(dst_mt->format) == GL_SRGB &&
1887 _mesa_get_srgb_format_linear(src_mt->format) ==
1888 _mesa_get_srgb_format_linear(dst_mt->format)) {
1889 dst.brw_surfaceformat = brw_format_for_mesa_format(dst_mt->format);
1890 src.brw_surfaceformat = dst.brw_surfaceformat;
1891 }
1892
1893 /* When doing a multisample resolve of a GL_LUMINANCE32F or GL_INTENSITY32F
1894 * texture, the above code configures the source format for L32_FLOAT or
1895 * I32_FLOAT, and the destination format for R32_FLOAT. On Sandy Bridge,
1896 * the SAMPLE message appears to handle multisampled L32_FLOAT and
1897 * I32_FLOAT textures incorrectly, resulting in blocky artifacts. So work
1898 * around the problem by using a source format of R32_FLOAT. This
1899 * shouldn't affect rendering correctness, since the destination format is
1900 * R32_FLOAT, so only the contents of the red channel matters.
1901 */
1902 if (brw->gen == 6 && src.num_samples > 1 && dst.num_samples <= 1 &&
1903 src_mt->format == dst_mt->format &&
1904 dst.brw_surfaceformat == BRW_SURFACEFORMAT_R32_FLOAT) {
1905 src.brw_surfaceformat = dst.brw_surfaceformat;
1906 }
1907
1908 use_wm_prog = true;
1909 memset(&wm_prog_key, 0, sizeof(wm_prog_key));
1910
1911 /* texture_data_type indicates the register type that should be used to
1912 * manipulate texture data.
1913 */
1914 switch (_mesa_get_format_datatype(src_mt->format)) {
1915 case GL_UNSIGNED_NORMALIZED:
1916 case GL_SIGNED_NORMALIZED:
1917 case GL_FLOAT:
1918 wm_prog_key.texture_data_type = BRW_REGISTER_TYPE_F;
1919 break;
1920 case GL_UNSIGNED_INT:
1921 if (src_mt->format == MESA_FORMAT_S_UINT8) {
1922 /* We process stencil as though it's an unsigned normalized color */
1923 wm_prog_key.texture_data_type = BRW_REGISTER_TYPE_F;
1924 } else {
1925 wm_prog_key.texture_data_type = BRW_REGISTER_TYPE_UD;
1926 }
1927 break;
1928 case GL_INT:
1929 wm_prog_key.texture_data_type = BRW_REGISTER_TYPE_D;
1930 break;
1931 default:
1932 assert(!"Unrecognized blorp format");
1933 break;
1934 }
1935
1936 if (brw->gen > 6) {
1937 /* Gen7's rendering hardware only supports the IMS layout for depth and
1938 * stencil render targets. Blorp always maps its destination surface as
1939 * a color render target (even if it's actually a depth or stencil
1940 * buffer). So if the destination is IMS, we'll have to map it as a
1941 * single-sampled texture and interleave the samples ourselves.
1942 */
1943 if (dst_mt->msaa_layout == INTEL_MSAA_LAYOUT_IMS)
1944 dst.num_samples = 0;
1945 }
1946
1947 if (dst.map_stencil_as_y_tiled && dst.num_samples > 1) {
1948 /* If the destination surface is a W-tiled multisampled stencil buffer
1949 * that we're mapping as Y tiled, then we need to arrange for the WM
1950 * program to run once per sample rather than once per pixel, because
1951 * the memory layout of related samples doesn't match between W and Y
1952 * tiling.
1953 */
1954 wm_prog_key.persample_msaa_dispatch = true;
1955 }
1956
1957 if (src.num_samples > 0 && dst.num_samples > 1) {
1958 /* We are blitting from a multisample buffer to a multisample buffer, so
1959 * we must preserve samples within a pixel. This means we have to
1960 * arrange for the WM program to run once per sample rather than once
1961 * per pixel.
1962 */
1963 wm_prog_key.persample_msaa_dispatch = true;
1964 }
1965
1966 /* Scaled blitting or not. */
1967 wm_prog_key.blit_scaled =
1968 ((dst_x1 - dst_x0) == (src_x1 - src_x0) &&
1969 (dst_y1 - dst_y0) == (src_y1 - src_y0)) ? false : true;
1970
1971 /* Scaling factors used for bilinear filtering in multisample scaled
1972 * blits.
1973 */
1974 wm_prog_key.x_scale = 2.0;
1975 wm_prog_key.y_scale = src_mt->num_samples / 2.0;
1976
1977 if (filter == GL_LINEAR && src.num_samples <= 1 && dst.num_samples <= 1)
1978 wm_prog_key.bilinear_filter = true;
1979
1980 GLenum base_format = _mesa_get_format_base_format(src_mt->format);
1981 if (base_format != GL_DEPTH_COMPONENT && /* TODO: what about depth/stencil? */
1982 base_format != GL_STENCIL_INDEX &&
1983 src_mt->num_samples > 1 && dst_mt->num_samples <= 1) {
1984 /* We are downsampling a color buffer, so blend. */
1985 wm_prog_key.blend = true;
1986 }
1987
1988 /* src_samples and dst_samples are the true sample counts */
1989 wm_prog_key.src_samples = src_mt->num_samples;
1990 wm_prog_key.dst_samples = dst_mt->num_samples;
1991
1992 /* tex_samples and rt_samples are the sample counts that are set up in
1993 * SURFACE_STATE.
1994 */
1995 wm_prog_key.tex_samples = src.num_samples;
1996 wm_prog_key.rt_samples = dst.num_samples;
1997
1998 /* tex_layout and rt_layout indicate the MSAA layout the GPU pipeline will
1999 * use to access the source and destination surfaces.
2000 */
2001 wm_prog_key.tex_layout =
2002 compute_msaa_layout_for_pipeline(brw, src.num_samples, src.msaa_layout);
2003 wm_prog_key.rt_layout =
2004 compute_msaa_layout_for_pipeline(brw, dst.num_samples, dst.msaa_layout);
2005
2006 /* src_layout and dst_layout indicate the true MSAA layout used by src and
2007 * dst.
2008 */
2009 wm_prog_key.src_layout = src_mt->msaa_layout;
2010 wm_prog_key.dst_layout = dst_mt->msaa_layout;
2011
2012 wm_prog_key.src_tiled_w = src.map_stencil_as_y_tiled;
2013 wm_prog_key.dst_tiled_w = dst.map_stencil_as_y_tiled;
2014 x0 = wm_push_consts.dst_x0 = dst_x0;
2015 y0 = wm_push_consts.dst_y0 = dst_y0;
2016 x1 = wm_push_consts.dst_x1 = dst_x1;
2017 y1 = wm_push_consts.dst_y1 = dst_y1;
2018 wm_push_consts.rect_grid_x1 = (minify(src_mt->logical_width0, src_level) *
2019 wm_prog_key.x_scale - 1.0);
2020 wm_push_consts.rect_grid_y1 = (minify(src_mt->logical_height0, src_level) *
2021 wm_prog_key.y_scale - 1.0);
2022
2023 wm_push_consts.x_transform.setup(src_x0, src_x1, dst_x0, dst_x1, mirror_x);
2024 wm_push_consts.y_transform.setup(src_y0, src_y1, dst_y0, dst_y1, mirror_y);
2025
2026 if (dst.num_samples <= 1 && dst_mt->num_samples > 1) {
2027 /* We must expand the rectangle we send through the rendering pipeline,
2028 * to account for the fact that we are mapping the destination region as
2029 * single-sampled when it is in fact multisampled. We must also align
2030 * it to a multiple of the multisampling pattern, because the
2031 * differences between multisampled and single-sampled surface formats
2032 * will mean that pixels are scrambled within the multisampling pattern.
2033 * TODO: what if this makes the coordinates too large?
2034 *
2035 * Note: this only works if the destination surface uses the IMS layout.
2036 * If it's UMS, then we have no choice but to set up the rendering
2037 * pipeline as multisampled.
2038 */
2039 assert(dst_mt->msaa_layout == INTEL_MSAA_LAYOUT_IMS);
2040 switch (dst_mt->num_samples) {
2041 case 4:
2042 x0 = ROUND_DOWN_TO(x0 * 2, 4);
2043 y0 = ROUND_DOWN_TO(y0 * 2, 4);
2044 x1 = ALIGN(x1 * 2, 4);
2045 y1 = ALIGN(y1 * 2, 4);
2046 break;
2047 case 8:
2048 x0 = ROUND_DOWN_TO(x0 * 4, 8);
2049 y0 = ROUND_DOWN_TO(y0 * 2, 4);
2050 x1 = ALIGN(x1 * 4, 8);
2051 y1 = ALIGN(y1 * 2, 4);
2052 break;
2053 default:
2054 assert(!"Unrecognized sample count in brw_blorp_blit_params ctor");
2055 break;
2056 }
2057 wm_prog_key.use_kill = true;
2058 }
2059
2060 if (dst.map_stencil_as_y_tiled) {
2061 /* We must modify the rectangle we send through the rendering pipeline
2062 * (and the size and x/y offset of the destination surface), to account
2063 * for the fact that we are mapping it as Y-tiled when it is in fact
2064 * W-tiled.
2065 *
2066 * Both Y tiling and W tiling can be understood as organizations of
2067 * 32-byte sub-tiles; within each 32-byte sub-tile, the layout of pixels
2068 * is different, but the layout of the 32-byte sub-tiles within the 4k
2069 * tile is the same (8 sub-tiles across by 16 sub-tiles down, in
2070 * column-major order). In Y tiling, the sub-tiles are 16 bytes wide
2071 * and 2 rows high; in W tiling, they are 8 bytes wide and 4 rows high.
2072 *
2073 * Therefore, to account for the layout differences within the 32-byte
2074 * sub-tiles, we must expand the rectangle so the X coordinates of its
2075 * edges are multiples of 8 (the W sub-tile width), and its Y
2076 * coordinates of its edges are multiples of 4 (the W sub-tile height).
2077 * Then we need to scale the X and Y coordinates of the rectangle to
2078 * account for the differences in aspect ratio between the Y and W
2079 * sub-tiles. We need to modify the layer width and height similarly.
2080 *
2081 * A correction needs to be applied when MSAA is in use: since
2082 * INTEL_MSAA_LAYOUT_IMS uses an interleaving pattern whose height is 4,
2083 * we need to align the Y coordinates to multiples of 8, so that when
2084 * they are divided by two they are still multiples of 4.
2085 *
2086 * Note: Since the x/y offset of the surface will be applied using the
2087 * SURFACE_STATE command packet, it will be invisible to the swizzling
2088 * code in the shader; therefore it needs to be in a multiple of the
2089 * 32-byte sub-tile size. Fortunately it is, since the sub-tile is 8
2090 * pixels wide and 4 pixels high (when viewed as a W-tiled stencil
2091 * buffer), and the miplevel alignment used for stencil buffers is 8
2092 * pixels horizontally and either 4 or 8 pixels vertically (see
2093 * intel_horizontal_texture_alignment_unit() and
2094 * intel_vertical_texture_alignment_unit()).
2095 *
2096 * Note: Also, since the SURFACE_STATE command packet can only apply
2097 * offsets that are multiples of 4 pixels horizontally and 2 pixels
2098 * vertically, it is important that the offsets will be multiples of
2099 * these sizes after they are converted into Y-tiled coordinates.
2100 * Fortunately they will be, since we know from above that the offsets
2101 * are a multiple of the 32-byte sub-tile size, and in Y-tiled
2102 * coordinates the sub-tile is 16 pixels wide and 2 pixels high.
2103 *
2104 * TODO: what if this makes the coordinates (or the texture size) too
2105 * large?
2106 */
2107 const unsigned x_align = 8, y_align = dst.num_samples != 0 ? 8 : 4;
2108 x0 = ROUND_DOWN_TO(x0, x_align) * 2;
2109 y0 = ROUND_DOWN_TO(y0, y_align) / 2;
2110 x1 = ALIGN(x1, x_align) * 2;
2111 y1 = ALIGN(y1, y_align) / 2;
2112 dst.width = ALIGN(dst.width, x_align) * 2;
2113 dst.height = ALIGN(dst.height, y_align) / 2;
2114 dst.x_offset *= 2;
2115 dst.y_offset /= 2;
2116 wm_prog_key.use_kill = true;
2117 }
2118
2119 if (src.map_stencil_as_y_tiled) {
2120 /* We must modify the size and x/y offset of the source surface to
2121 * account for the fact that we are mapping it as Y-tiled when it is in
2122 * fact W tiled.
2123 *
2124 * See the comments above concerning x/y offset alignment for the
2125 * destination surface.
2126 *
2127 * TODO: what if this makes the texture size too large?
2128 */
2129 const unsigned x_align = 8, y_align = src.num_samples != 0 ? 8 : 4;
2130 src.width = ALIGN(src.width, x_align) * 2;
2131 src.height = ALIGN(src.height, y_align) / 2;
2132 src.x_offset *= 2;
2133 src.y_offset /= 2;
2134 }
2135 }
2136
2137 uint32_t
2138 brw_blorp_blit_params::get_wm_prog(struct brw_context *brw,
2139 brw_blorp_prog_data **prog_data) const
2140 {
2141 uint32_t prog_offset = 0;
2142 if (!brw_search_cache(&brw->cache, BRW_BLORP_BLIT_PROG,
2143 &this->wm_prog_key, sizeof(this->wm_prog_key),
2144 &prog_offset, prog_data)) {
2145 brw_blorp_blit_program prog(brw, &this->wm_prog_key);
2146 GLuint program_size;
2147 const GLuint *program = prog.compile(brw, &program_size, stderr);
2148 brw_upload_cache(&brw->cache, BRW_BLORP_BLIT_PROG,
2149 &this->wm_prog_key, sizeof(this->wm_prog_key),
2150 program, program_size,
2151 &prog.prog_data, sizeof(prog.prog_data),
2152 &prog_offset, prog_data);
2153 }
2154 return prog_offset;
2155 }