diff options
author | Jason Ekstrand <[email protected]> | 2017-12-13 09:19:57 -0800 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2017-12-14 13:27:13 -0800 |
commit | d4081fb778e2bb0e6189d828962e28adeeb4bf46 (patch) | |
tree | e91c0145805163e1a6490765940b68f455d7b53d /src/intel/common | |
parent | e27ec208ed282998390496034f923d45750ff012 (diff) |
intel/batch-decoder: Decode vertex and index buffers
Reviewed-by: Lionel Landwerlin <[email protected]>
Diffstat (limited to 'src/intel/common')
-rw-r--r-- | src/intel/common/gen_decoder.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/intel/common/gen_decoder.h b/src/intel/common/gen_decoder.h index b188787a76f..ff388700287 100644 --- a/src/intel/common/gen_decoder.h +++ b/src/intel/common/gen_decoder.h @@ -191,6 +191,8 @@ enum gen_batch_decode_flags { GEN_BATCH_DECODE_FULL = (1 << 1), /** Print offsets along with the batch */ GEN_BATCH_DECODE_OFFSETS = (1 << 2), + /** Guess when a value is a float and print it as such */ + GEN_BATCH_DECODE_FLOATS = (1 << 3), }; struct gen_batch_decode_bo { |