diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2011-10-16 17:39:06 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2011-10-16 19:39:24 +0100 |
commit | eefa925e3d3e009b21ecc0b428d93a6c732bfa14 (patch) | |
tree | 184b93709954ad5e44894137bab6a366aab06d76 /src/sna/kgem_debug.c | |
parent | 01f41e624b31af88d433a25eaefce557e7ff3d62 (diff) |
sna/accel: Fall-forward for handling a non-copy CopyArea to a dst gpu bo
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'src/sna/kgem_debug.c')
-rw-r--r-- | src/sna/kgem_debug.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/sna/kgem_debug.c b/src/sna/kgem_debug.c index 2cc7b3a4..ad0a5334 100644 --- a/src/sna/kgem_debug.c +++ b/src/sna/kgem_debug.c @@ -255,8 +255,9 @@ decode_2d(struct kgem *kgem, uint32_t offset) break; } - kgem_debug_print(data, offset, 1, "format %s, pitch %d, " + kgem_debug_print(data, offset, 1, "format %s, rop %x, pitch %d, " "clipping %sabled\n", format, + (data[1] >> 16) & 0xff, (short)(data[1] & 0xffff), data[1] & (1 << 30) ? "en" : "dis"); kgem_debug_print(data, offset, 2, "(%d,%d)\n", @@ -303,8 +304,9 @@ decode_2d(struct kgem *kgem, uint32_t offset) break; } - kgem_debug_print(data, offset, 1, "format %s, dst pitch %d, " + kgem_debug_print(data, offset, 1, "format %s, rop %x, dst pitch %d, " "clipping %sabled\n", format, + (data[1] >> 16) & 0xff, (short)(data[1] & 0xffff), data[1] & (1 << 30) ? "en" : "dis"); kgem_debug_print(data, offset, 2, "dst (%d,%d)\n", |