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>
This commit is contained in:
Daniel Vetter
2014-03-22 15:49:02 +01:00
parent 83a4c7d3eb
commit 53a4d9e982
13 changed files with 38 additions and 38 deletions
+3 -3
View File
@@ -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);
}