Module: Mesa Branch: master Commit: 0e800dfe75d75c2c5c12bb3762aa9723854a241e URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=0e800dfe75d75c2c5c12bb3762aa9723854a241e
Author: Matt Turner <[email protected]> Date: Mon Jun 23 13:30:13 2014 -0700 i965/vec4: Don't return void from a void function. Reviewed-by: Ben Widawsky <[email protected]> Reviewed-by: Kenneth Graunke <[email protected]> Reviewed-by: Ian Romanick <[email protected]> --- src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp b/src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp index 7fd8c2b..f3316f8 100644 --- a/src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp +++ b/src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp @@ -366,9 +366,9 @@ vec4_visitor::emit_math(opcode opcode, dst_reg dst, src_reg src) } if (brw->gen >= 6) { - return emit_math1_gen6(opcode, dst, src); + emit_math1_gen6(opcode, dst, src); } else { - return emit_math1_gen4(opcode, dst, src); + emit_math1_gen4(opcode, dst, src); } } @@ -418,9 +418,9 @@ vec4_visitor::emit_math(enum opcode opcode, } if (brw->gen >= 6) { - return emit_math2_gen6(opcode, dst, src0, src1); + emit_math2_gen6(opcode, dst, src0, src1); } else { - return emit_math2_gen4(opcode, dst, src0, src1); + emit_math2_gen4(opcode, dst, src0, src1); } } _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
