diff options
Diffstat (limited to 'src/i965_video.c')
-rw-r--r-- | src/i965_video.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/i965_video.c b/src/i965_video.c index 1d2c3f54..68337e7e 100644 --- a/src/i965_video.c +++ b/src/i965_video.c @@ -78,7 +78,7 @@ static const uint32_t sip_kernel_static[][4] = { #define SF_MAX_THREADS 1 static const uint32_t sf_kernel_static[][4] = { -#include "packed_yuv_sf.g4b" +#include "exa_sf.g4b" }; /* @@ -94,7 +94,11 @@ static const uint32_t sf_kernel_static[][4] = { #define BRW_GRF_BLOCKS(nreg) ((nreg + 15) / 16 - 1) static const uint32_t ps_kernel_static[][4] = { -#include "packed_yuv_wm.g4b" +#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_write.g4b" }; #define ALIGN(i,m) (((i) + (m) - 1) & ~((m) - 1)) |