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/brw | |
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/brw')
-rw-r--r-- | src/sna/brw/brw_test_gen4.c | 4 | ||||
-rw-r--r-- | src/sna/brw/brw_test_gen5.c | 4 | ||||
-rw-r--r-- | src/sna/brw/brw_test_gen6.c | 4 | ||||
-rw-r--r-- | src/sna/brw/brw_test_gen7.c | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/src/sna/brw/brw_test_gen4.c b/src/sna/brw/brw_test_gen4.c index c0a185f3..78ff7465 100644 --- a/src/sna/brw/brw_test_gen4.c +++ b/src/sna/brw/brw_test_gen4.c @@ -115,7 +115,7 @@ static const uint32_t ps_kernel_packed_static[][4] = { #include "exa_wm_xy.g4b" #include "exa_wm_src_affine.g4b" #include "exa_wm_src_sample_argb.g4b" -#include "exa_wm_yuv_rgb.g4b" +#include "exa_wm_yuv_rgb_bt601.g4b" #include "exa_wm_write.g4b" }; @@ -123,7 +123,7 @@ static const uint32_t ps_kernel_planar_static[][4] = { #include "exa_wm_xy.g4b" #include "exa_wm_src_affine.g4b" #include "exa_wm_src_sample_planar.g4b" -#include "exa_wm_yuv_rgb.g4b" +#include "exa_wm_yuv_rgb_bt601.g4b" #include "exa_wm_write.g4b" }; diff --git a/src/sna/brw/brw_test_gen5.c b/src/sna/brw/brw_test_gen5.c index 5f909fe5..e821ce8b 100644 --- a/src/sna/brw/brw_test_gen5.c +++ b/src/sna/brw/brw_test_gen5.c @@ -115,7 +115,7 @@ static const uint32_t ps_kernel_packed_static[][4] = { #include "exa_wm_xy.g5b" #include "exa_wm_src_affine.g5b" #include "exa_wm_src_sample_argb.g5b" -#include "exa_wm_yuv_rgb.g5b" +#include "exa_wm_yuv_rgb_bt601.g5b" #include "exa_wm_write.g5b" }; @@ -123,7 +123,7 @@ static const uint32_t ps_kernel_planar_static[][4] = { #include "exa_wm_xy.g5b" #include "exa_wm_src_affine.g5b" #include "exa_wm_src_sample_planar.g5b" -#include "exa_wm_yuv_rgb.g5b" +#include "exa_wm_yuv_rgb_bt601.g5b" #include "exa_wm_write.g5b" }; diff --git a/src/sna/brw/brw_test_gen6.c b/src/sna/brw/brw_test_gen6.c index 813ea8ac..9603b9d9 100644 --- a/src/sna/brw/brw_test_gen6.c +++ b/src/sna/brw/brw_test_gen6.c @@ -98,14 +98,14 @@ static const uint32_t ps_kernel_masknoca_projective[][4] = { static const uint32_t ps_kernel_packed[][4] = { #include "exa_wm_src_affine.g6b" #include "exa_wm_src_sample_argb.g6b" -#include "exa_wm_yuv_rgb.g6b" +#include "exa_wm_yuv_rgb_bt601.g6b" #include "exa_wm_write.g6b" }; static const uint32_t ps_kernel_planar[][4] = { #include "exa_wm_src_affine.g6b" #include "exa_wm_src_sample_planar.g6b" -#include "exa_wm_yuv_rgb.g6b" +#include "exa_wm_yuv_rgb_bt601.g6b" #include "exa_wm_write.g6b" }; diff --git a/src/sna/brw/brw_test_gen7.c b/src/sna/brw/brw_test_gen7.c index 297ae470..658b6699 100644 --- a/src/sna/brw/brw_test_gen7.c +++ b/src/sna/brw/brw_test_gen7.c @@ -98,14 +98,14 @@ static const uint32_t ps_kernel_masknoca_projective[][4] = { static const uint32_t ps_kernel_packed[][4] = { #include "exa_wm_src_affine.g7b" #include "exa_wm_src_sample_argb.g7b" -#include "exa_wm_yuv_rgb.g7b" +#include "exa_wm_yuv_rgb_bt601.g7b" #include "exa_wm_write.g7b" }; static const uint32_t ps_kernel_planar[][4] = { #include "exa_wm_src_affine.g7b" #include "exa_wm_src_sample_planar.g7b" -#include "exa_wm_yuv_rgb.g7b" +#include "exa_wm_yuv_rgb_bt601.g7b" #include "exa_wm_write.g7b" }; |