diff options
author | Eric Anholt <[email protected]> | 2010-07-19 10:21:58 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2010-07-19 10:47:08 -0700 |
commit | 95c08920ea3d040360e5cc51d8a852d21a0329ee (patch) | |
tree | b199e096f3611df9971a4c0e8e09c2a97d62a029 /src/mesa/main | |
parent | 29ce44ad2b8d37ea54923f1d1856b44ef26903e5 (diff) |
i915: Ask the compiler to flatten out all the if statements that it can.
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/mtypes.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index 9a36740c415..be9eaaa875c 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -2038,6 +2038,11 @@ struct gl_shader_state GLboolean EmitCondCodes; /**< Use condition codes? */ GLboolean EmitComments; /**< Annotated instructions */ GLboolean EmitNVTempInitialization; /**< 0-fill NV temp registers */ + /** + * Attempts to flatten all ir_if (OPCODE_IF) for GPUs that can't + * support control flow. + */ + GLboolean EmitNoIfs; void *MemPool; GLbitfield Flags; /**< Mask of GLSL_x flags */ struct gl_sl_pragmas DefaultPragmas; /**< Default #pragma settings */ |