summaryrefslogtreecommitdiff
path: root/tests/gem_ringfill.c
diff options
context:
space:
mode:
authorDaniel Vetter <daniel.vetter@ffwll.ch>2014-03-22 15:49:02 +0100
committerDaniel Vetter <daniel.vetter@ffwll.ch>2014-03-22 15:49:02 +0100
commit53a4d9e982420e8a921ecf7b9542adbd3586317c (patch)
treea4606602ab0cb859dbdff254772dafab47780a36 /tests/gem_ringfill.c
parent83a4c7d3eb6347f9b743144611b08a2869f11f94 (diff)
lib/intel_batchbuffer: igt_ prefix for rendercopy/mediafill funcs
Now everything is prepared to pour some neat api docs over this all. Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'tests/gem_ringfill.c')
-rw-r--r--tests/gem_ringfill.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/gem_ringfill.c b/tests/gem_ringfill.c
index 0dd22272..3c3df73b 100644
--- a/tests/gem_ringfill.c
+++ b/tests/gem_ringfill.c
@@ -113,7 +113,7 @@ static void destroy_bo(struct bo *b)
static int check_ring(drm_intel_bufmgr *bufmgr,
struct intel_batchbuffer *batch,
const char *ring,
- render_copyfunc_t copy)
+ igt_render_copyfunc_t copy)
{
struct igt_buf src, tmp, dst;
struct bo bo;
@@ -197,7 +197,7 @@ static void blt_copy(struct intel_batchbuffer *batch,
drm_intel_bufmgr *bufmgr;
struct intel_batchbuffer *batch;
-render_copyfunc_t copy;
+igt_render_copyfunc_t copy;
int fd;
igt_main
@@ -219,7 +219,7 @@ igt_main
/* Strictly only required on architectures with a separate BLT ring,
* but lets stress everybody.
*/
- copy = get_render_copyfunc(batch->devid);
+ copy = igt_get_render_copyfunc(batch->devid);
igt_require(copy);
}