summaryrefslogtreecommitdiff
path: root/lib/intel_batchbuffer.c
diff options
context:
space:
mode:
authorZhenyu Wang <zhenyuw@linux.intel.com>2014-12-03 18:56:39 +0800
committerZhenyu Wang <zhenyuw@linux.intel.com>2014-12-04 10:17:12 +0800
commit106f0bf965ac5ba8e5553e3e1b39396750bedc74 (patch)
treec580be0e847637134fe778619ea5e396c1f1ca89 /lib/intel_batchbuffer.c
parent4e5c16c17ed14831aaa369877d78788ad23ce388 (diff)
lib: rename igt_media_fillfunc_t typedef to igt_fillfunc_t
This makes fill function more general to prepare for other fill method using GPGPU pipeline. Signed-off-by: Zhenyu Wang <zhenyuw@linux.intel.com>
Diffstat (limited to 'lib/intel_batchbuffer.c')
-rw-r--r--lib/intel_batchbuffer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/intel_batchbuffer.c b/lib/intel_batchbuffer.c
index 30ef2cf7..4b3a5b87 100644
--- a/lib/intel_batchbuffer.c
+++ b/lib/intel_batchbuffer.c
@@ -496,9 +496,9 @@ igt_render_copyfunc_t igt_get_render_copyfunc(int devid)
* The platform-specific media fill function pointer for the device specified
* with @devid. Will return NULL when no media fill function is implemented.
*/
-igt_media_fillfunc_t igt_get_media_fillfunc(int devid)
+igt_fillfunc_t igt_get_media_fillfunc(int devid)
{
- igt_media_fillfunc_t fill = NULL;
+ igt_fillfunc_t fill = NULL;
if (IS_GEN9(devid))
fill = gen9_media_fillfunc;