diff options
author | Christoph Bumiller <[email protected]> | 2010-07-23 12:03:33 +0200 |
---|---|---|
committer | Christoph Bumiller <[email protected]> | 2010-07-23 15:53:15 +0200 |
commit | 0811b096690090dbd86b1433c0214cca619e0519 (patch) | |
tree | fb4a98cf577136de8ce75a53450725b5c186d6c6 /src/gallium/drivers/nv50/nv50_context.h | |
parent | a96feddddb64f6839bc292ffdbe5834a8dbb340d (diff) |
nv50: implement depth clamp
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 9c672a0f301..12c4a93a9bd 100644 --- a/src/gallium/drivers/nv50/nv50_context.h +++ b/src/gallium/drivers/nv50/nv50_context.h @@ -50,6 +50,7 @@ #define NV50_NEW_SAMPLER (1 << 15) #define NV50_NEW_TEXTURE (1 << 16) #define NV50_NEW_STENCIL_REF (1 << 17) +#define NV50_NEW_CLIP (1 << 18) struct nv50_blend_stateobj { struct pipe_blend_state pipe; @@ -140,6 +141,7 @@ struct nv50_context { struct pipe_scissor_state scissor; struct pipe_viewport_state viewport; struct pipe_framebuffer_state framebuffer; + struct pipe_clip_state clip; struct nv50_program *vertprog; struct nv50_program *fragprog; struct nv50_program *geomprog; |