summaryrefslogtreecommitdiff
path: root/rtl/gfx/gfx_transpose.sv
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2024-05-05 17:34:22 -0600
committerAlejandro Soto <alejandro@34project.org>2024-05-05 17:38:27 -0600
commit081a8a3ba8bfe036f31da53f9c041a2caa30fce2 (patch)
tree7d712b67d3dc1ad3d37041562774ba3c4e5a7f49 /rtl/gfx/gfx_transpose.sv
parente5b64ea353678baabd16d245fcfaa3384e1acf8f (diff)
rtl/legacy_gfx: rename gfx -> legacy_gfx
Diffstat (limited to 'rtl/gfx/gfx_transpose.sv')
-rw-r--r--rtl/gfx/gfx_transpose.sv17
1 files changed, 0 insertions, 17 deletions
diff --git a/rtl/gfx/gfx_transpose.sv b/rtl/gfx/gfx_transpose.sv
deleted file mode 100644
index 03ecf2d..0000000
--- a/rtl/gfx/gfx_transpose.sv
+++ /dev/null
@@ -1,17 +0,0 @@
-`include "gfx/gfx_defs.sv"
-
-module gfx_transpose
-(
- input mat4 in,
- output mat4 out
-);
-
- integer i, j;
-
- // Esto no tiene costo en hardware, es un renombramiento de seƱales
- always_comb
- for (i = 0; i < `VECS_PER_MAT; ++i)
- for (j = 0; j < `FLOATS_PER_VEC; ++j)
- out[i][j] = in[j][i];
-
-endmodule