diff options
author | Bryan Cain <bryancain3@gmail.com> | 2011-05-05 21:10:28 -0500 |
---|---|---|
committer | Bryan Cain <bryancain3@gmail.com> | 2011-08-01 17:59:07 -0500 |
commit | 17b695e6e7dd730497fb60a8e161935b23fa0e9c (patch) | |
tree | 0d803d248d2efdf966dda9d28064de991a4282f6 /src/gallium/auxiliary/tgsi | |
parent | 16d7a717d592524e4d62fec4173cb9523f7a1453 (diff) |
gallium: add PIPE_SHADER_CAP_INTEGERS
Diffstat (limited to 'src/gallium/auxiliary/tgsi')
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_exec.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_exec.h b/src/gallium/auxiliary/tgsi/tgsi_exec.h index 33f33aa82c..6c32ccff32 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_exec.h +++ b/src/gallium/auxiliary/tgsi/tgsi_exec.h @@ -400,6 +400,8 @@ tgsi_exec_get_shader_param(enum pipe_shader_cap param) return 1; case PIPE_SHADER_CAP_SUBROUTINES: return 1; + case PIPE_SHADER_CAP_INTEGERS: + return 1; default: return 0; } |