From 12ceecf971e416fbd8be921ea187f68238878c0c Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Tue, 23 Jun 2009 16:21:34 -0700 Subject: [PATCH] Add the acthd to the GPU dump. --- tools/intel_gpu_dump.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/intel_gpu_dump.c b/tools/intel_gpu_dump.c index 58ec3151..c8b5cdd9 100644 --- a/tools/intel_gpu_dump.c +++ b/tools/intel_gpu_dump.c @@ -2063,6 +2063,8 @@ main (int argc, char *argv[]) parse_ringbuffer_info(filename, &ring_head, &ring_tail, &acthd); free (filename); + printf("ACTHD: 0x%08x\n", acthd); + asprintf (&filename, "%s/i915_batchbuffers", path); head_offset = acthd; tail_offset = 0xffffffff;