diff options
author | Kenneth Graunke <[email protected]> | 2013-09-03 16:44:25 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2013-09-09 11:52:22 -0700 |
commit | d716b3376ccf66200d007852b30147ca7f7e7c68 (patch) | |
tree | 2037b97cf726af4b5c6a527bbacda6dc3d688896 /src/glsl/ir_builder.cpp | |
parent | f72a8498e7e2c2d3233cdfd58de3b1124a247d39 (diff) |
glsl: Add IR builder support for generating return statements.
We use "ret" as the function name since "return" is a C++ keyword, and
"ir_return" is already a class name.
Signed-off-by: Kenneth Graunke <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Reviewed-by: Paul Berry <[email protected]>
Diffstat (limited to 'src/glsl/ir_builder.cpp')
-rw-r--r-- | src/glsl/ir_builder.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/glsl/ir_builder.cpp b/src/glsl/ir_builder.cpp index b2b926b610f..b549ff4f72b 100644 --- a/src/glsl/ir_builder.cpp +++ b/src/glsl/ir_builder.cpp @@ -76,6 +76,13 @@ assign(deref lhs, operand rhs, operand condition) return assign(lhs, rhs, condition, (1 << lhs.val->type->vector_elements) - 1); } +ir_return * +ret(operand retval) +{ + void *mem_ctx = ralloc_parent(retval.val); + return new(mem_ctx) ir_return(retval.val); +} + ir_swizzle * swizzle(operand a, int swizzle, int components) { |