diff options
author | Keith Whitwell <[email protected]> | 2009-11-04 13:03:35 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2009-11-04 13:03:35 +0000 |
commit | 211d7ab22b13430aaae00a0dfe95492450bcca20 (patch) | |
tree | db312543dec8016161b9df2afa596412bf34fbeb /src/gallium/drivers/i965/brw_curbe.c | |
parent | a277bb20debc413f6ccf46f529497bf8bafa64dd (diff) |
i965g: add standalone xlib debug winsys
Create a dummy winsys that just debug-prints on calls into the winsys
functions. Will use this to get to the point where we are generating
sane-looking debug dumps and diassembly.
Also fix various warnings generated with the new compiler flags set in
this config.
Diffstat (limited to 'src/gallium/drivers/i965/brw_curbe.c')
-rw-r--r-- | src/gallium/drivers/i965/brw_curbe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/i965/brw_curbe.c b/src/gallium/drivers/i965/brw_curbe.c index 3910174bda5..5763173bca6 100644 --- a/src/gallium/drivers/i965/brw_curbe.c +++ b/src/gallium/drivers/i965/brw_curbe.c @@ -243,7 +243,7 @@ static int prepare_curbe_buffer(struct brw_context *brw) buf[i+0], buf[i+1], buf[i+2], buf[i+3]); debug_printf("last_buf %p buf %p sz %d/%d cmp %d\n", - brw->curbe.last_buf, buf, + (void *)brw->curbe.last_buf, (void *)buf, bufsz, brw->curbe.last_bufsz, brw->curbe.last_buf ? memcmp(buf, brw->curbe.last_buf, bufsz) : -1); } |