diff options
author | Brian <brian.paul@tungstengraphics.com> | 2008-01-03 09:40:02 -0700 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2008-01-03 09:40:02 -0700 |
commit | 4ff6367295bc266cf1e3390570c9aee50fe716a0 (patch) | |
tree | 1bc19ebc25dd83fffc430b0e7fdfb6e82d15f322 /src/mesa/pipe/cell/common.h | |
parent | 9b598df95ebe99d9aaf2043ce8786847978de4aa (diff) |
Cell: improve surface state code to replace some temporary code.
Diffstat (limited to 'src/mesa/pipe/cell/common.h')
-rw-r--r-- | src/mesa/pipe/cell/common.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/pipe/cell/common.h b/src/mesa/pipe/cell/common.h index 983ccd0775..dff0b1f8ec 100644 --- a/src/mesa/pipe/cell/common.h +++ b/src/mesa/pipe/cell/common.h @@ -59,9 +59,9 @@ */ struct cell_command_framebuffer { - void *start; int width, height; - enum pipe_format format; + void *color_start, *depth_start; + enum pipe_format color_format, depth_format; } ALIGN16_ATTRIB; |