summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/drmtest.c2
-rw-r--r--lib/drmtest.h2
-rw-r--r--lib/rendercopy_gen8.c2
-rw-r--r--tests/gem_render_copy.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/lib/drmtest.c b/lib/drmtest.c
index 3c72ac8d..9fcd221b 100644
--- a/lib/drmtest.c
+++ b/lib/drmtest.c
@@ -329,7 +329,7 @@ bool igt_env_set(const char *env_var, bool default_value)
return atoi(val) != 0;
}
-bool drmtest_dump_aub(void)
+bool igt_aub_dump_enabled(void)
{
static int dump_aub = -1;
diff --git a/lib/drmtest.h b/lib/drmtest.h
index 97d60d0c..0985109b 100644
--- a/lib/drmtest.h
+++ b/lib/drmtest.h
@@ -66,7 +66,7 @@ void igt_permute_array(void *array, unsigned size,
void igt_progress(const char *header, uint64_t i, uint64_t total);
bool igt_env_set(const char *env_var, bool default_value);
-bool drmtest_dump_aub(void);
+bool igt_aub_dump_enabled(void);
/* helpers based upon the libdrm buffer manager */
void igt_init_aperture_trashers(drm_intel_bufmgr *bufmgr);
diff --git a/lib/rendercopy_gen8.c b/lib/rendercopy_gen8.c
index 424afa0a..02333cfd 100644
--- a/lib/rendercopy_gen8.c
+++ b/lib/rendercopy_gen8.c
@@ -120,7 +120,7 @@ static void annotation_add_state(struct annotations_context *ctx,
static void annotation_flush(struct annotations_context *ctx,
struct intel_batchbuffer *batch)
{
- if (!drmtest_dump_aub())
+ if (!igt_aub_dump_enabled())
return;
drm_intel_bufmgr_gem_set_aub_annotations(batch->bo,
diff --git a/tests/gem_render_copy.c b/tests/gem_render_copy.c
index 12ac18d3..86ae6438 100644
--- a/tests/gem_render_copy.c
+++ b/tests/gem_render_copy.c
@@ -127,7 +127,7 @@ int main(int argc, char **argv)
igt_render_copyfunc_t render_copy = NULL;
int opt;
int opt_dump_png = false;
- int opt_dump_aub = drmtest_dump_aub();
+ int opt_dump_aub = igt_aub_dump_enabled();
igt_simple_init();