diff options
author | Ian Romanick <[email protected]> | 2010-11-24 22:21:10 -0800 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2010-12-01 12:01:13 -0800 |
commit | c4285be9a5bd1adaa89050989374b95a9a601cdc (patch) | |
tree | 588f3788a24029512cdda1efe5f5831634243bbd /src/mesa/main | |
parent | da61afa7388f1ce50ef612b89aba2302a052a3bb (diff) |
glsl: Lower ir_binop_pow to a sequence of EXP2 and LOG2
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/mtypes.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index 80c20e09d9a..82495714f21 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -2197,6 +2197,7 @@ struct gl_shader_compiler_options GLboolean EmitNoCont; /**< Emit CONT opcode? */ GLboolean EmitNoMainReturn; /**< Emit CONT/RET opcodes? */ GLboolean EmitNoNoise; /**< Emit NOISE opcodes? */ + GLboolean EmitNoPow; /**< Emit POW opcodes? */ /** * \name Forms of indirect addressing the driver cannot do. |