diff options
author | Kenneth Graunke <[email protected]> | 2011-08-18 14:08:06 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2011-08-19 23:29:24 -0700 |
commit | 07e9b9049f94ceb443eac1206cc3f9e1e51ac6c1 (patch) | |
tree | e1b06c653e48f51e6a25d3b8f9cea405fe9ab83a /src/mesa | |
parent | eb86bb55f5faef67c21604db19210c6788592679 (diff) |
ir_to_mesa: Remove incorrect usage of the 'struct' keyword on classes.
Signed-off-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/program/ir_to_mesa.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/program/ir_to_mesa.cpp b/src/mesa/program/ir_to_mesa.cpp index b1211c1145c..ec3fba182d8 100644 --- a/src/mesa/program/ir_to_mesa.cpp +++ b/src/mesa/program/ir_to_mesa.cpp @@ -581,7 +581,7 @@ ir_to_mesa_visitor::emit_scs(ir_instruction *ir, enum prog_opcode op, } } -struct src_reg +src_reg ir_to_mesa_visitor::src_reg_for_float(float val) { src_reg src(PROGRAM_CONSTANT, -1, NULL); @@ -725,7 +725,7 @@ ir_to_mesa_visitor::visit(ir_variable *ir) } } - struct variable_storage *storage; + variable_storage *storage; dst_reg dst; if (i == ir->num_state_slots) { /* We'll set the index later. */ |