summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/nv30/nv30_state_fb.c
diff options
context:
space:
mode:
authorPatrice Mandin <patmandin@gmail.com>2009-10-23 18:42:21 +0200
committerPatrice Mandin <patmandin@gmail.com>2009-10-23 18:42:21 +0200
commitd9014a13e72b6682a959217d38050f3252628edb (patch)
tree26dd979abf43f163c96f7fe44b7beb1cf7902dfc /src/gallium/drivers/nv30/nv30_state_fb.c
parentc84a05676497ff7263f3ea8203b868071c4f678f (diff)
nouveau: nv30: Relax some limits. We can render to z24s8 buffer even if color buffer is 16 bits.
Diffstat (limited to 'src/gallium/drivers/nv30/nv30_state_fb.c')
-rw-r--r--src/gallium/drivers/nv30/nv30_state_fb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nv30/nv30_state_fb.c b/src/gallium/drivers/nv30/nv30_state_fb.c
index f90681b0f9..4d6a67e56d 100644
--- a/src/gallium/drivers/nv30/nv30_state_fb.c
+++ b/src/gallium/drivers/nv30/nv30_state_fb.c
@@ -92,7 +92,7 @@ nv30_state_framebuffer_validate(struct nv30_context *nv30)
assert(0);
}
- if (colour_bits != zeta_bits) {
+ if (colour_bits > zeta_bits) {
return FALSE;
}