diff options
author | Keith Whitwell <[email protected]> | 2009-11-04 20:26:41 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2009-11-04 20:26:41 +0000 |
commit | e18f223da710a6e1f6a08d346951ea66c6a1de99 (patch) | |
tree | 6741613369c491f2c034f41a9657e737d8ef5270 /src/gallium/drivers/i965/brw_screen.h | |
parent | 19119517ce00f7710c6cd627c75e7eef765021c2 (diff) |
i965g: hook up pipe_clear functions
Diffstat (limited to 'src/gallium/drivers/i965/brw_screen.h')
-rw-r--r-- | src/gallium/drivers/i965/brw_screen.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gallium/drivers/i965/brw_screen.h b/src/gallium/drivers/i965/brw_screen.h index 820c6a6679f..f7267cc78a1 100644 --- a/src/gallium/drivers/i965/brw_screen.h +++ b/src/gallium/drivers/i965/brw_screen.h @@ -89,7 +89,13 @@ union brw_surface_id { struct brw_surface { struct pipe_surface base; + union brw_surface_id id; + unsigned cpp; + unsigned pitch; + unsigned draw_offset; + unsigned tiling; + struct brw_surface_state ss; struct brw_winsys_buffer *bo; struct brw_surface *next, *prev; |