mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 17:48:10 +02:00
i965: Make INTEL_DEBUG=shader_time use the RAW surface format.
Untyped Atomic Operation messages are illegal for non-RAW formats. The
IVB hardware proceeds happily (after all, who cares what the format of the
surface is if you're doing untyped ops on it?), but later hardware
apparently doesn't. The simulator for gen7 does complain, though.
v2: Rebase against updates to previous patches. (by anholt)
NOTE: This is a candidate for the 9.1 branch.
Reviewed-by: Eric Anholt <eric@anholt.net>
Reviewed-by: Paul Berry <stereotype441@gmail.com>
Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
(cherry picked from commit 91df4d746b)
This commit is contained in:
parent
0d9f849ddf
commit
6e6dcd451e
2 changed files with 3 additions and 3 deletions
|
|
@ -437,6 +437,7 @@
|
|||
#define BRW_SURFACEFORMAT_B10G10R10A2_SSCALED 0x1B9
|
||||
#define BRW_SURFACEFORMAT_B10G10R10A2_UINT 0x1BA
|
||||
#define BRW_SURFACEFORMAT_B10G10R10A2_SINT 0x1BB
|
||||
#define BRW_SURFACEFORMAT_RAW 0x1FF
|
||||
#define BRW_SURFACE_FORMAT_SHIFT 18
|
||||
#define BRW_SURFACE_FORMAT_MASK INTEL_MASK(26, 18)
|
||||
|
||||
|
|
|
|||
|
|
@ -427,15 +427,14 @@ gen7_create_shader_time_surface(struct brw_context *brw, uint32_t *out_offset)
|
|||
memset(surf, 0, 8 * 4);
|
||||
|
||||
surf[0] = BRW_SURFACE_BUFFER << BRW_SURFACE_TYPE_SHIFT |
|
||||
BRW_SURFACEFORMAT_R32G32B32A32_FLOAT << BRW_SURFACE_FORMAT_SHIFT |
|
||||
BRW_SURFACEFORMAT_RAW << BRW_SURFACE_FORMAT_SHIFT |
|
||||
BRW_SURFACE_RC_READ_WRITE;
|
||||
|
||||
surf[1] = brw->shader_time.bo->offset; /* reloc */
|
||||
|
||||
surf[2] = SET_FIELD(w & 0x7f, GEN7_SURFACE_WIDTH) |
|
||||
SET_FIELD((w >> 7) & 0x1fff, GEN7_SURFACE_HEIGHT);
|
||||
surf[3] = SET_FIELD((w >> 20) & 0x7f, BRW_SURFACE_DEPTH) |
|
||||
(16 - 1); /* stride between samples */
|
||||
surf[3] = SET_FIELD((w >> 20) & 0x7f, BRW_SURFACE_DEPTH);
|
||||
|
||||
/* Unlike texture or renderbuffer surfaces, we only do untyped operations
|
||||
* on the shader_time surface, so there's no need to set HSW channel
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue