diff options
author | Lionel Landwerlin <[email protected]> | 2017-03-14 17:22:36 +0000 |
---|---|---|
committer | Lionel Landwerlin <[email protected]> | 2017-10-06 11:46:08 +0100 |
commit | 72aec2060fb47f0423770891ac64e927b8f92790 (patch) | |
tree | 0b716797e04d4dc3aa87f7ccaeda3012f9a9e504 /src/intel/vulkan/anv_private.h | |
parent | bbc37007983a73bc0effae004dddcdee8ffef993 (diff) |
anv: add new formats KHR_sampler_ycbcr_conversion
Adding new downsampling factors for each planes.
Signed-off-by: Lionel Landwerlin <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/intel/vulkan/anv_private.h')
-rw-r--r-- | src/intel/vulkan/anv_private.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/intel/vulkan/anv_private.h b/src/intel/vulkan/anv_private.h index 879f481f2a1..36aa86141fc 100644 --- a/src/intel/vulkan/anv_private.h +++ b/src/intel/vulkan/anv_private.h @@ -2172,12 +2172,22 @@ anv_pipeline_compile_cs(struct anv_pipeline *pipeline, struct anv_format_plane { enum isl_format isl_format:16; struct isl_swizzle swizzle; + + /* Whether this plane contains chroma channels */ + bool has_chroma; + + /* For downscaling of YUV planes */ + uint8_t denominator_scales[2]; + + /* How to map sampled ycbcr planes to a single 4 component element. */ + struct isl_swizzle ycbcr_swizzle; }; struct anv_format { struct anv_format_plane planes[3]; uint8_t n_planes; + bool can_ycbcr; }; static inline uint32_t |