diff options
author | Brian Paul <[email protected]> | 2011-01-26 21:16:14 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-01-26 21:16:14 -0700 |
commit | 86471246f0f3c4c122f605fdd56dd0f5864fc307 (patch) | |
tree | ad376aa1a5dbd6358074cb7ba9e555572a1c96d8 /src/mesa/program/ir_to_mesa.cpp | |
parent | 7baa498ae46668aebf165b9f2b1ddf0f5fe87c07 (diff) |
glsl: move ir_var_out code
Diffstat (limited to 'src/mesa/program/ir_to_mesa.cpp')
-rw-r--r-- | src/mesa/program/ir_to_mesa.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mesa/program/ir_to_mesa.cpp b/src/mesa/program/ir_to_mesa.cpp index daedcadc9df..b7746a6e30c 100644 --- a/src/mesa/program/ir_to_mesa.cpp +++ b/src/mesa/program/ir_to_mesa.cpp @@ -1485,7 +1485,6 @@ ir_to_mesa_visitor::visit(ir_dereference_variable *ir) this->variables.push_tail(entry); break; case ir_var_in: - case ir_var_out: case ir_var_inout: /* The linker assigns locations for varyings and attributes, * including deprecated builtins (like gl_Color), user-assign @@ -1509,12 +1508,13 @@ ir_to_mesa_visitor::visit(ir_dereference_variable *ir) var->type->gl_type, var->location - VERT_ATTRIB_GENERIC0); } - } else { - entry = new(mem_ctx) variable_storage(var, - PROGRAM_OUTPUT, - var->location); - } - + } + break; + case ir_var_out: + assert(var->location != -1); + entry = new(mem_ctx) variable_storage(var, + PROGRAM_OUTPUT, + var->location); break; case ir_var_system_value: entry = new(mem_ctx) variable_storage(var, |