mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2026-08-18 20:03:06 +00:00
decode: fix gen6 PS binding table update bit
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
This commit is contained in:
@@ -1787,7 +1787,7 @@ decode_3d_965(uint32_t *data, int count, uint32_t hw_offset, uint32_t devid, int
|
||||
"GS mod %d, PS mod %d\n",
|
||||
(data[0] & (1 << 8)) != 0,
|
||||
(data[0] & (1 << 9)) != 0,
|
||||
(data[0] & (1 << 10)) != 0);
|
||||
(data[0] & (1 << 12)) != 0);
|
||||
instr_out(data, hw_offset, 1, "VS binding table\n");
|
||||
instr_out(data, hw_offset, 2, "GS binding table\n");
|
||||
instr_out(data, hw_offset, 3, "WM binding table\n");
|
||||
|
||||
Reference in New Issue
Block a user