summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/nvfx
diff options
context:
space:
mode:
authorLuca Barbieri <luca@luca-barbieri.com>2010-09-04 03:40:49 +0200
committerLuca Barbieri <luca@luca-barbieri.com>2010-09-04 04:05:37 +0200
commit527a4f11a774a334c21027a51ce5530caf218677 (patch)
tree48bdaff9730d1447002d7d36bfadc21d04bc514d /src/gallium/drivers/nvfx
parentf1507806ca1f4efbd433b9d58565cfcac9082ff2 (diff)
nvfx: don't claim we support preds since the driver doesn't
Diffstat (limited to 'src/gallium/drivers/nvfx')
-rw-r--r--src/gallium/drivers/nvfx/nvfx_screen.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/nvfx/nvfx_screen.c b/src/gallium/drivers/nvfx/nvfx_screen.c
index 9e7266b874..e01b2a6133 100644
--- a/src/gallium/drivers/nvfx/nvfx_screen.c
+++ b/src/gallium/drivers/nvfx/nvfx_screen.c
@@ -95,7 +95,7 @@ nvfx_screen_get_param(struct pipe_screen *pscreen, enum pipe_cap param)
case PIPE_CAP_MAX_FS_ADDRS:
return screen->is_nv4x ? 1 : 0;
case PIPE_CAP_MAX_FS_PREDS:
- return screen->is_nv4x ? 1 : 0;
+ return 0; /* we could expose these, but nothing uses them */
case PIPE_CAP_MAX_VS_INSTRUCTIONS:
case PIPE_CAP_MAX_VS_ALU_INSTRUCTIONS:
return screen->is_nv4x ? 512 : 256;
@@ -117,7 +117,7 @@ nvfx_screen_get_param(struct pipe_screen *pscreen, enum pipe_cap param)
case PIPE_CAP_MAX_VS_ADDRS:
return 2;
case PIPE_CAP_MAX_VS_PREDS:
- return screen->is_nv4x ? 1 : 0;
+ return 0; /* we could expose these, but nothing uses them */
case PIPE_CAP_GEOMETRY_SHADER4:
return 0;
case PIPE_CAP_DEPTH_CLAMP: