summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/i965
diff options
context:
space:
mode:
authorBryan Cain <[email protected]>2011-05-05 21:10:28 -0500
committerBryan Cain <[email protected]>2011-08-01 17:59:07 -0500
commit17b695e6e7dd730497fb60a8e161935b23fa0e9c (patch)
tree0d803d248d2efdf966dda9d28064de991a4282f6 /src/gallium/drivers/i965
parent16d7a717d592524e4d62fec4173cb9523f7a1453 (diff)
gallium: add PIPE_SHADER_CAP_INTEGERS
Diffstat (limited to 'src/gallium/drivers/i965')
-rw-r--r--src/gallium/drivers/i965/brw_screen.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/i965/brw_screen.c b/src/gallium/drivers/i965/brw_screen.c
index 9178dfa8f69..39e9e2fa6ac 100644
--- a/src/gallium/drivers/i965/brw_screen.c
+++ b/src/gallium/drivers/i965/brw_screen.c
@@ -243,6 +243,8 @@ brw_get_shader_param(struct pipe_screen *screen, unsigned shader, enum pipe_shad
return 1;
case PIPE_SHADER_CAP_SUBROUTINES:
return 1;
+ case PIPE_SHADER_CAP_INTEGERS:
+ return 0;
default:
assert(0);
return 0;