From 05f2f06eacca22f77309a15364ff6b2f15760884 Mon Sep 17 00:00:00 2001 From: Alejandro Soto Date: Wed, 22 Nov 2023 06:45:21 -0600 Subject: rtl/gfx: disable perspective correction --- rtl/gfx/gfx_persp.sv | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'rtl') diff --git a/rtl/gfx/gfx_persp.sv b/rtl/gfx/gfx_persp.sv index 0a75d39..243b5eb 100644 --- a/rtl/gfx/gfx_persp.sv +++ b/rtl/gfx/gfx_persp.sv @@ -18,6 +18,14 @@ module gfx_persp out_vertex_c ); + // Perdón Ronald + assign in_ready = out_ready; + assign out_valid = in_valid; + assign out_vertex_a = in_vertex_a; + assign out_vertex_b = in_vertex_b; + assign out_vertex_c = in_vertex_c; + +/* logic stall; gfx_pipeline_flow #(.STAGES(`FIXED_DIV_STAGES)) flow @@ -45,5 +53,6 @@ module gfx_persp .out_vertex(out_vertex_c), .* ); +*/ endmodule -- cgit v1.2.3