diff options
| author | Alejandro Soto <alejandro@34project.org> | 2023-11-22 02:39:54 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2023-11-22 02:39:54 -0600 |
| commit | b47f4a129d3b843702935413681673751443ce4c (patch) | |
| tree | 499d24524c5646cb0e10362eb60c02aa6507c879 /rtl/gfx | |
| parent | 2aff861d026009e2783c51f72a54a4b9f92d3117 (diff) | |
rtl/gfx: add definition for fp_xyzw
Diffstat (limited to 'rtl/gfx')
| -rw-r--r-- | rtl/gfx/gfx_defs.sv | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/rtl/gfx/gfx_defs.sv b/rtl/gfx/gfx_defs.sv index 913cb85..18e1339 100644 --- a/rtl/gfx/gfx_defs.sv +++ b/rtl/gfx/gfx_defs.sv @@ -89,6 +89,11 @@ typedef struct packed raster_zw zw; } raster_xyzw; +typedef struct packed +{ + fp x, y, z, w; +} fp_xyzw; + typedef logic[8:0] coarse_dim; `define GFX_MASK_SRAM_STAGES 3 |
