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/r600 | |
parent | 16d7a717d592524e4d62fec4173cb9523f7a1453 (diff) |
gallium: add PIPE_SHADER_CAP_INTEGERS
Diffstat (limited to 'src/gallium/drivers/r600')
-rw-r--r-- | src/gallium/drivers/r600/r600_pipe.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/r600/r600_pipe.c b/src/gallium/drivers/r600/r600_pipe.c index 16fe6c54a15..2d744137522 100644 --- a/src/gallium/drivers/r600/r600_pipe.c +++ b/src/gallium/drivers/r600/r600_pipe.c @@ -504,6 +504,8 @@ static int r600_get_shader_param(struct pipe_screen* pscreen, unsigned shader, e return 1; case PIPE_SHADER_CAP_SUBROUTINES: return 0; + case PIPE_SHADER_CAP_INTEGERS: + return 0; default: return 0; } |