diff options
author | Eric Anholt <[email protected]> | 2010-07-01 10:37:11 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2010-07-01 11:07:22 -0700 |
commit | d925c9173009e9e5d48df30b30aaef22753183aa (patch) | |
tree | e42ee590b44d75b69fb67ee7de8b42ce05ee1c11 /src/glsl/ir.cpp | |
parent | 5e4dd061d17563828bcce5525400a0ce363aa15d (diff) |
glsl2: Add ir_unop_fract as an expression type.
Most backends will prefer seeing this to seeing (a - floor(a)), so
represent it explicitly.
Diffstat (limited to 'src/glsl/ir.cpp')
-rw-r--r-- | src/glsl/ir.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/glsl/ir.cpp b/src/glsl/ir.cpp index 60ee36d17cb..42578425839 100644 --- a/src/glsl/ir.cpp +++ b/src/glsl/ir.cpp @@ -72,6 +72,7 @@ ir_expression::get_num_operands(ir_expression_operation op) 1, /* ir_unop_trunc */ 1, /* ir_unop_ceil */ 1, /* ir_unop_floor */ + 1, /* ir_unop_fract */ 1, /* ir_unop_sin */ 1, /* ir_unop_cos */ @@ -137,6 +138,7 @@ static const char *const operator_strs[] = { "trunc", "ceil", "floor", + "fract", "sin", "cos", "dFdx", |