diff options
author | Bryan Cain <[email protected]> | 2011-05-05 21:10:28 -0500 |
---|---|---|
committer | Bryan Cain <[email protected]> | 2011-08-01 17:59:07 -0500 |
commit | 17b695e6e7dd730497fb60a8e161935b23fa0e9c (patch) | |
tree | 0d803d248d2efdf966dda9d28064de991a4282f6 /src/gallium/drivers/nvfx | |
parent | 16d7a717d592524e4d62fec4173cb9523f7a1453 (diff) |
gallium: add PIPE_SHADER_CAP_INTEGERS
Diffstat (limited to 'src/gallium/drivers/nvfx')
-rw-r--r-- | src/gallium/drivers/nvfx/nvfx_screen.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/nvfx/nvfx_screen.c b/src/gallium/drivers/nvfx/nvfx_screen.c index 475138c3c32..d880b12fcaa 100644 --- a/src/gallium/drivers/nvfx/nvfx_screen.c +++ b/src/gallium/drivers/nvfx/nvfx_screen.c @@ -174,6 +174,8 @@ nvfx_screen_get_shader_param(struct pipe_screen *pscreen, unsigned shader, enum return 1; case PIPE_SHADER_CAP_SUBROUTINES: return 1; + case PIPE_SHADER_CAP_INTEGERS: + return 0; default: break; } |