diff options
author | Tom Stellard <[email protected]> | 2012-04-23 12:08:02 -0400 |
---|---|---|
committer | Tom Stellard <[email protected]> | 2012-06-01 11:26:57 -0400 |
commit | 1d118a2a76345063db026b4b4d6cf0df1e341094 (patch) | |
tree | 83f6cd54a7b301391827c08c5fb4260bd78466ec /src/gallium/include | |
parent | d85e5123745e1657a63eba8912d56d82295e2c7d (diff) |
gallium: Add PIPE_SHADER_IR_LLVM to enum pipe_shader_ir v2
v2:
- s/PIPE_SHADER_IR_LLVM_R600/PIPE_SHADER_IR_LLVM/
Reviewed-by: Francisco Jerez <[email protected]>
Diffstat (limited to 'src/gallium/include')
-rw-r--r-- | src/gallium/include/pipe/p_defines.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/include/pipe/p_defines.h b/src/gallium/include/pipe/p_defines.h index ad7f24ef39b..d0819e28a61 100644 --- a/src/gallium/include/pipe/p_defines.h +++ b/src/gallium/include/pipe/p_defines.h @@ -536,7 +536,8 @@ enum pipe_shader_cap */ enum pipe_shader_ir { - PIPE_SHADER_IR_TGSI + PIPE_SHADER_IR_TGSI, + PIPE_SHADER_IR_LLVM }; /** |