summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2023-11-22 06:45:21 -0600
committerAlejandro Soto <alejandro@34project.org>2023-11-22 07:19:35 -0600
commit05f2f06eacca22f77309a15364ff6b2f15760884 (patch)
tree6a07ce55d925466678616d49e2cca603aea650a2
parent5116e5c80541f26d0f87a535539147030ecd2fed (diff)
rtl/gfx: disable perspective correction
Diffstat (limited to '')
-rw-r--r--rtl/gfx/gfx_persp.sv9
1 files changed, 9 insertions, 0 deletions
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