summaryrefslogtreecommitdiff
path: root/rtl/gfx/gfx_perspective.sv
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2023-11-02 22:19:26 -0600
committerAlejandro Soto <alejandro@34project.org>2023-11-10 01:43:02 -0600
commitd5de20fade70a0d454e3aa0087313ca715ff8759 (patch)
tree55751c829e989500972c56f05a7b0cb5e4e07621 /rtl/gfx/gfx_perspective.sv
parent09fcdbe01553385658fe437dcb1777008c0ceb39 (diff)
rtl/gfx: rename modules
Diffstat (limited to 'rtl/gfx/gfx_perspective.sv')
-rw-r--r--rtl/gfx/gfx_perspective.sv4
1 files changed, 2 insertions, 2 deletions
diff --git a/rtl/gfx/gfx_perspective.sv b/rtl/gfx/gfx_perspective.sv
index 3cc38b2..6af1724 100644
--- a/rtl/gfx/gfx_perspective.sv
+++ b/rtl/gfx/gfx_perspective.sv
@@ -19,7 +19,7 @@ module gfx_perspective
assign w_inv = w_inv_pipes[`FP_MUL_STAGES - 1];
assign selected_w_inv = in_start ? next_w_inv : vertex_w_inv;
- fp_inv inv
+ gfx_fp_inv inv
(
.a(clip_attr.w),
.q(next_w_inv),
@@ -29,7 +29,7 @@ module gfx_perspective
genvar i;
generate
for (i = 0; i < `FLOATS_PER_VEC; ++i) begin: divs
- fp_mul div
+ gfx_fp_mul div
(
.a(in_pipes[`FP_INV_STAGES - 1][i]),
.b(selected_w_inv),