lib: s/drmtest_dumb_aub/igt_aub_dump_enabled/
authorDaniel Vetter <daniel.vetter@ffwll.ch>
Sat, 22 Mar 2014 21:42:35 +0000 (22:42 +0100)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Sat, 22 Mar 2014 21:42:35 +0000 (22:42 +0100)
This is prep work to extract a new igt aux library with all kinds
of random stuff. Also give it a bit a more suitable name to
indicate that this is just a flag and doesn't do the aub dumping
itself.

Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
lib/drmtest.c
lib/drmtest.h
lib/rendercopy_gen8.c
tests/gem_render_copy.c

index 3c72ac8..9fcd221 100644 (file)
@@ -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;
 
index 97d60d0..0985109 100644 (file)
@@ -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);
index 424afa0..02333cf 100644 (file)
@@ -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,
index 12ac18d..86ae643 100644 (file)
@@ -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();