diff options
author | Ian Romanick <[email protected]> | 2010-09-16 14:40:26 +0200 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2010-09-17 11:00:24 +0200 |
commit | a6ecd1c3724a78b76ab9e81ea39632f1279021f8 (patch) | |
tree | cc42484babe94e40d020f04f4c0082da98027540 /src/mesa/main | |
parent | 6e4fe39da26bf101f5fe1103ba426c0903445352 (diff) |
glsl2: Add flags to enable variable index lowering
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/mtypes.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index 864805af0ef..fdf8100c8cd 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -2191,6 +2191,16 @@ struct gl_shader_compiler_options GLboolean EmitNoMainReturn; /**< Emit CONT/RET opcodes? */ GLboolean EmitNoNoise; /**< Emit NOISE opcodes? */ + /** + * \name Forms of indirect addressing the driver cannot do. + */ + /*@{*/ + GLboolean EmitNoIndirectInput; /**< No indirect addressing of inputs */ + GLboolean EmitNoIndirectOutput; /**< No indirect addressing of outputs */ + GLboolean EmitNoIndirectTemp; /**< No indirect addressing of temps */ + GLboolean EmitNoIndirectUniform; /**< No indirect addressing of constants */ + /*@}*/ + GLuint MaxUnrollIterations; struct gl_sl_pragmas DefaultPragmas; /**< Default #pragma settings */ |