diff options
author | Jason Ekstrand <[email protected]> | 2016-09-19 22:04:40 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2016-11-16 10:10:26 -0800 |
commit | b3bc8068550d2efc98c49d7d82a6aa40154f76fe (patch) | |
tree | e4591cae1e83cd0d8ec2b1395fa3023714c1c0a9 /src/intel/isl/isl.h | |
parent | ba349e106ec2aa48798676dd33edcf643d168b8e (diff) |
intel/isl: Add some basic info about RENDER_SURFACE_STATE to isl_device
Signed-off-by: Jason Ekstrand <[email protected]>
Reviewed-by: Topi Pohjolainen <[email protected]>
Diffstat (limited to 'src/intel/isl/isl.h')
-rw-r--r-- | src/intel/isl/isl.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/intel/isl/isl.h b/src/intel/isl/isl.h index 11ad8919e64..07368f9bcf5 100644 --- a/src/intel/isl/isl.h +++ b/src/intel/isl/isl.h @@ -671,6 +671,17 @@ struct isl_device { const struct gen_device_info *info; bool use_separate_stencil; bool has_bit6_swizzling; + + /** + * Describes the layout of a RENDER_SURFACE_STATE structure for the + * current gen. + */ + struct { + uint8_t size; + uint8_t align; + uint8_t addr_offset; + uint8_t aux_addr_offset; + } ss; }; struct isl_extent2d { |