From: Samuel Iglesias Gonsalvez Date: Mon, 13 Jul 2015 13:51:17 +0000 (+0200) Subject: i965/gs/gen6: Refactor ir_emit_vertex and ir_end_primitive for gen6 X-Git-Tag: upstream/17.1.0~17119 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7eced3aa863394c6e74ac3f037ed1cf9c481fe37;p=platform%2Fupstream%2Fmesa.git i965/gs/gen6: Refactor ir_emit_vertex and ir_end_primitive for gen6 So the implementation is independent of GLSL IR and the visit methods of the gen6 GS visitor. This way we will be able to reuse that implementation directly from the NIR vec4 backend. Signed-off-by: Samuel Iglesias Gonsalvez Reviewed-by: Jason Ekstrand --- diff --git a/src/mesa/drivers/dri/i965/gen6_gs_visitor.cpp b/src/mesa/drivers/dri/i965/gen6_gs_visitor.cpp index 782687a..68e443d 100644 --- a/src/mesa/drivers/dri/i965/gen6_gs_visitor.cpp +++ b/src/mesa/drivers/dri/i965/gen6_gs_visitor.cpp @@ -147,7 +147,12 @@ gen6_gs_visitor::emit_prolog() } void -gen6_gs_visitor::visit(ir_emit_vertex *) +gen6_gs_visitor::visit(ir_emit_vertex *ir) +{ + gs_emit_vertex(ir->stream_id()); +} +void +gen6_gs_visitor::gs_emit_vertex(int stream_id) { this->current_annotation = "gen6 emit vertex"; /* Honor max_vertex layout indication in geometry shader by ignoring any @@ -224,6 +229,12 @@ gen6_gs_visitor::visit(ir_emit_vertex *) void gen6_gs_visitor::visit(ir_end_primitive *) { + gs_end_primitive(); +} + +void +gen6_gs_visitor::gs_end_primitive() +{ this->current_annotation = "gen6 end primitive"; /* Calling EndPrimitive() is optional for point output. In this case we set * the PrimEnd flag when we process EmitVertex(). diff --git a/src/mesa/drivers/dri/i965/gen6_gs_visitor.h b/src/mesa/drivers/dri/i965/gen6_gs_visitor.h index 862d0ea..4cf9489 100644 --- a/src/mesa/drivers/dri/i965/gen6_gs_visitor.h +++ b/src/mesa/drivers/dri/i965/gen6_gs_visitor.h @@ -51,6 +51,8 @@ protected: virtual void emit_thread_end(); virtual void visit(ir_emit_vertex *); virtual void visit(ir_end_primitive *); + virtual void gs_emit_vertex(int stream_id); + virtual void gs_end_primitive(); virtual void emit_urb_write_header(int mrf); virtual void emit_urb_write_opcode(bool complete, int base_mrf,