diff options
author | Matt Turner <[email protected]> | 2013-04-23 17:19:06 -0700 |
---|---|---|
committer | Matt Turner <[email protected]> | 2013-08-27 15:03:30 -0700 |
commit | d55c543c3637fec784518f34b1f12e7a73be2281 (patch) | |
tree | 1a15ea60c074d916df2971af7803426ac08d0672 /src/glsl/ir.h | |
parent | 6829c18609fc3c979133b462173141dd7dfd09c3 (diff) |
glsl: Add support for new fma built-in in ARB_gpu_shader5.
v2: Add constant folding support.
Reviewed-by: Paul Berry <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/glsl/ir.h')
-rw-r--r-- | src/glsl/ir.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/glsl/ir.h b/src/glsl/ir.h index 62e3b27ca92..b45e6cbd831 100644 --- a/src/glsl/ir.h +++ b/src/glsl/ir.h @@ -1169,6 +1169,13 @@ enum ir_expression_operation { */ ir_last_binop = ir_binop_vector_extract, + /** + * \name Fused floating-point multiply-add, part of ARB_gpu_shader5. + */ + /*@{*/ + ir_triop_fma, + /*@}*/ + ir_triop_lrp, /** |