diff options
| author | Alejandro Soto <alejandro@34project.org> | 2023-11-22 08:03:58 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2023-11-22 08:03:58 -0600 |
| commit | 60e7f0faeacbb471dde4cb6b25743bc29e99bb44 (patch) | |
| tree | 5bfd182dd08c3fa0a6124c7f9444741b6dd65578 /rtl/gfx/gfx_raster.sv | |
| parent | 5f1911807f0b7fc130f79443756d0b97d3f9f7da (diff) | |
rtl/gfx: fix setup offsets hazards
Diffstat (limited to 'rtl/gfx/gfx_raster.sv')
| -rw-r--r-- | rtl/gfx/gfx_raster.sv | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/rtl/gfx/gfx_raster.sv b/rtl/gfx/gfx_raster.sv index e37282b..cb03744 100644 --- a/rtl/gfx/gfx_raster.sv +++ b/rtl/gfx/gfx_raster.sv @@ -36,7 +36,7 @@ module gfx_raster fixed_tri coarse_x_offsets, coarse_y_offsets, coarse_test_offsets, edge_refs; raster_xy pos_ref; coarse_dim span_x, span_y; - raster_offsets_tri offsets; //TODO: fsm con esto holdeado + raster_offsets_tri offsets; gfx_setup setup ( @@ -50,6 +50,7 @@ module gfx_raster logic coarse_ready, coarse_valid; fixed_tri coarse_corners; raster_xy coarse_pos; + raster_offsets_tri fine_offsets; gfx_raster_coarse coarse ( @@ -100,6 +101,7 @@ module gfx_raster .pos(coarse_pos), .corners(coarse_corners), + .offsets(fine_offsets), .barys(barys_ij[i][j]), .paint(paint_ij[j * `GFX_RASTER_SIZE + i]), |
