diff options
Diffstat (limited to 'lib/intel_batchbuffer.c')
-rw-r--r-- | lib/intel_batchbuffer.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/intel_batchbuffer.c b/lib/intel_batchbuffer.c index 3828ba75..51aae4dc 100644 --- a/lib/intel_batchbuffer.c +++ b/lib/intel_batchbuffer.c @@ -37,6 +37,7 @@ #include "intel_bufmgr.h" #include "intel_chipset.h" #include "intel_reg.h" +#include "veboxcopy.h" #include "rendercopy.h" #include "media_fill.h" #include "ioctl_wrappers.h" @@ -850,6 +851,16 @@ igt_render_copyfunc_t igt_get_render_copyfunc(int devid) return copy; } +igt_vebox_copyfunc_t igt_get_vebox_copyfunc(int devid) +{ + igt_vebox_copyfunc_t copy = NULL; + + if (IS_GEN12(devid)) + copy = gen12_vebox_copyfunc; + + return copy; +} + /** * igt_get_media_fillfunc: * @devid: pci device id |