diff options
author | Kenneth Graunke <[email protected]> | 2010-10-14 13:37:03 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2010-10-14 15:59:47 -0700 |
commit | d85d25dd1f4fd281bd210ba6ba5135ba1e3b535f (patch) | |
tree | 9d2af431818f346d1df9c0701737577e5e24da16 /src/glsl/ir.h | |
parent | 510c503762a228db2b3d6804f5f5c7af9be1a920 (diff) |
glsl: Add a new ir_unop_round_even opcode for GLSL 1.30's roundEven.
Also, update ir_to_mesa's "1.30 is unsupported" case to "handle" it.
Diffstat (limited to 'src/glsl/ir.h')
-rw-r--r-- | src/glsl/ir.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/glsl/ir.h b/src/glsl/ir.h index 3503bc9c897..06198e4f3f6 100644 --- a/src/glsl/ir.h +++ b/src/glsl/ir.h @@ -700,6 +700,7 @@ enum ir_expression_operation { ir_unop_ceil, ir_unop_floor, ir_unop_fract, + ir_unop_round_even, /*@}*/ /** |