diff options
author | Ben Skeggs <[email protected]> | 2008-03-12 04:50:53 +1100 |
---|---|---|
committer | Ben Skeggs <[email protected]> | 2008-03-12 04:50:53 +1100 |
commit | cd9ed05aec9d1d9614973165fd13647ba2e1b8c7 (patch) | |
tree | ae8d6c8a9ecdc88b6dbe478a64dfd5bbbc6eb933 /src/gallium/drivers/nv50/nv50_context.h | |
parent | cd85dc1e5dfa37cb9bee696e5e18332e3f1d65a1 (diff) |
nv50: start on fb state
Diffstat (limited to 'src/gallium/drivers/nv50/nv50_context.h')
-rw-r--r-- | src/gallium/drivers/nv50/nv50_context.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/nv50/nv50_context.h b/src/gallium/drivers/nv50/nv50_context.h index d839cf701eb..f532fa6bfb3 100644 --- a/src/gallium/drivers/nv50/nv50_context.h +++ b/src/gallium/drivers/nv50/nv50_context.h @@ -29,6 +29,7 @@ #define NV50_NEW_SCISSOR (1 << 4) #define NV50_NEW_VIEWPORT (1 << 5) #define NV50_NEW_RASTERIZER (1 << 6) +#define NV50_NEW_FRAMEBUFFER (1 << 7) struct nv50_blend_stateobj { struct pipe_blend_state pipe; @@ -61,6 +62,7 @@ struct nv50_context { struct pipe_poly_stipple stipple; struct pipe_scissor_state scissor; struct pipe_viewport_state viewport; + struct pipe_framebuffer_state framebuffer; }; static INLINE struct nv50_context * |