diff options
author | Ville Syrjälä <ville.syrjala@linux.intel.com> | 2018-05-29 21:33:09 +0300 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2018-05-31 20:35:30 +0100 |
commit | 35a9e96992a9298577d81e6b98c1329475282db1 (patch) | |
tree | 7ad4edb3028a79c19f36935f1dff2e713b32b8de /src/sna/gen8_render.c | |
parent | d3c93e66df0e9cb95c1b6003a19c1997dc2f1dc1 (diff) |
Rename current yuv->rgb shader sources to exa_wm_yuv_rgb_bt601
Our current yuv->rgb shaders follow the BT.601 conversion formula.
Rename the shader sources to indicate that fact.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'src/sna/gen8_render.c')
-rw-r--r-- | src/sna/gen8_render.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sna/gen8_render.c b/src/sna/gen8_render.c index 46369d6b..eadb09eb 100644 --- a/src/sna/gen8_render.c +++ b/src/sna/gen8_render.c @@ -96,21 +96,21 @@ static const uint32_t ps_kernel_packed[][4] = { #include "exa_wm_src_affine.g8b" #include "exa_wm_src_sample_argb.g8b" -#include "exa_wm_yuv_rgb.g8b" +#include "exa_wm_yuv_rgb_bt601.g8b" #include "exa_wm_write.g8b" }; static const uint32_t ps_kernel_planar[][4] = { #include "exa_wm_src_affine.g8b" #include "exa_wm_src_sample_planar.g8b" -#include "exa_wm_yuv_rgb.g8b" +#include "exa_wm_yuv_rgb_bt601.g8b" #include "exa_wm_write.g8b" }; static const uint32_t ps_kernel_nv12[][4] = { #include "exa_wm_src_affine.g8b" #include "exa_wm_src_sample_nv12.g8b" -#include "exa_wm_yuv_rgb.g8b" +#include "exa_wm_yuv_rgb_bt601.g8b" #include "exa_wm_write.g8b" }; |