diff options
author | Brian <brian.paul@tungstengraphics.com> | 2008-03-20 15:01:44 -0600 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2008-03-20 15:04:08 -0600 |
commit | 80567f9c9f84d9df1cdb2d91a3c0814888cc5d08 (patch) | |
tree | 72ce69ce243575e7fcb6ebd3ff2cdf7945624757 | |
parent | f6cd3778c54c0329c3f497a7368a158087d653d3 (diff) |
gallium: added width, height to pipe_framebuffer_state
-rw-r--r-- | src/gallium/include/pipe/p_state.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/include/pipe/p_state.h b/src/gallium/include/pipe/p_state.h index 5791a10119..3e531c4da4 100644 --- a/src/gallium/include/pipe/p_state.h +++ b/src/gallium/include/pipe/p_state.h @@ -220,6 +220,8 @@ struct pipe_blend_color struct pipe_framebuffer_state { + unsigned width, height; + /** multiple colorbuffers for multiple render targets */ unsigned num_cbufs; struct pipe_surface *cbufs[PIPE_MAX_COLOR_BUFS]; |