[Intel-gfx] [PATCH i-g-t 26/26] lib/skl: Return the render copy and media fill functions
Damien Lespiau
damien.lespiau at intel.com
Fri Sep 26 16:03:24 CEST 2014
From: "Xiang, Haihao" <haihao.xiang at intel.com>
Signed-off-by: Xiang, Haihao <haihao.xiang at intel.com>
[Ben: Reordered if tree]
Signed-off-by: Ben Widawsky <benjamin.widawsky at linux.intel.com>
Signed-off-by: Damien Lespiau <damien.lespiau at intel.com>
---
lib/intel_batchbuffer.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/lib/intel_batchbuffer.c b/lib/intel_batchbuffer.c
index 952b86a..c1b0e3d 100644
--- a/lib/intel_batchbuffer.c
+++ b/lib/intel_batchbuffer.c
@@ -481,6 +481,8 @@ igt_render_copyfunc_t igt_get_render_copyfunc(int devid)
copy = gen7_render_copyfunc;
else if (IS_GEN8(devid))
copy = gen8_render_copyfunc;
+ else if (IS_GEN9(devid))
+ copy = gen9_render_copyfunc;
return copy;
}
@@ -498,7 +500,9 @@ igt_media_fillfunc_t igt_get_media_fillfunc(int devid)
{
igt_media_fillfunc_t fill = NULL;
- if (IS_BROADWELL(devid))
+ if (IS_GEN9(devid))
+ fill = gen9_media_fillfunc;
+ else if (IS_BROADWELL(devid))
fill = gen8_media_fillfunc;
else if (IS_GEN7(devid))
fill = gen7_media_fillfunc;
--
1.8.3.1
More information about the Intel-gfx
mailing list