mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 15:20:10 +01:00
ir_to_mesa: Remove debug force-enablement of EmitNoIfs.
This commit is contained in:
parent
f4239872c9
commit
9de2c4fc8e
1 changed files with 1 additions and 1 deletions
|
|
@ -2614,7 +2614,7 @@ _mesa_glsl_compile_shader(GLcontext *ctx, struct gl_shader *shader)
|
|||
progress = do_constant_folding(shader->ir) || progress;
|
||||
progress = do_algebraic(shader->ir) || progress;
|
||||
progress = do_if_return(shader->ir) || progress;
|
||||
if (1 || ctx->Shader.EmitNoIfs)
|
||||
if (ctx->Shader.EmitNoIfs)
|
||||
progress = do_if_to_cond_assign(shader->ir) || progress;
|
||||
|
||||
progress = do_vec_index_to_swizzle(shader->ir) || progress;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue