mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-10 17:36:11 +00:00
Add CONSTANT_BUFFER decoding
This commit is contained in:
parent
357e43a4f1
commit
147f07b5c2
@ -1515,6 +1515,12 @@ decode_3d_965(uint32_t *data, int count, uint32_t hw_offset, int *failures)
|
||||
case 0x6000:
|
||||
len = (data[0] & 0x000000ff) + 2;
|
||||
return i965_decode_urb_fence(data, hw_offset, len, count, failures);
|
||||
case 0x6002:
|
||||
instr_out(data, hw_offset, 0, "CONSTANT_BUFFER: %s\n",
|
||||
(data[0] >> 8) & 1 ? "valid" : "invalid");
|
||||
instr_out(data, hw_offset, 1, "offset: 0x%08x, length: 0x%08x\n",
|
||||
data[1] >> 6, data[1] & 0x3f);
|
||||
return len;
|
||||
case 0x6101:
|
||||
if (len != 6)
|
||||
fprintf(out, "Bad count in STATE_BASE_ADDRESS\n");
|
||||
|
Loading…
x
Reference in New Issue
Block a user