diff options
author | Ilia Mirkin <[email protected]> | 2014-08-13 23:33:04 -0400 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2014-08-14 20:25:32 -0400 |
commit | f80c6847e969016596b5ce3202236c15663cc61a (patch) | |
tree | f3531c3b33bfeffd276cf26faa7ec5f874a07a2a /src/glsl/ir.h | |
parent | 4a9c36c98559a988fe2bb9dd3f97d46c4459aaba (diff) |
glsl: add ARB_derivative control support
Signed-off-by: Ilia Mirkin <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Reviewed-by: Chris Forbes <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/glsl/ir.h')
-rw-r--r-- | src/glsl/ir.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/glsl/ir.h b/src/glsl/ir.h index 31c354556e4..18623b96868 100644 --- a/src/glsl/ir.h +++ b/src/glsl/ir.h @@ -1205,7 +1205,11 @@ enum ir_expression_operation { */ /*@{*/ ir_unop_dFdx, + ir_unop_dFdx_coarse, + ir_unop_dFdx_fine, ir_unop_dFdy, + ir_unop_dFdy_coarse, + ir_unop_dFdy_fine, /*@}*/ /** |