Gfx GX Fn GXGetVtxAttrFmtv - wowjinxy/libPorpoise GitHub Wiki
GXGetVtxAttrFmtv
- Category:
Geometry and Vertex
- Matrix Status:
Implemented
- Matrix Notes: Returns SDK-ordered VAT list for
GX_VA_POS..GX_VA_TEX7 and appends GX_VA_NULL terminator.
- Matrix Link: Gfx-GX-API-Matrix
Official SDK (Reference)
- Manual root:
reference/rvlsdk/man/en_US/gx
- Primary SDK source area:
demos/PikminDemo/src/gx (GC-style Dolphin GX source)
- Notes:
libPorpoise Implementation
- Runtime implementation area:
src/gx
- Public API surface:
include/dolphin/gx
- Notes:
SDK vs Porpoise Diff
- Signature parity:
- Behavioral parity:
-
Known divergence:
Validation Checklist
Working Notes
- Docs checked against
reference/man/gfx/gx/Geometry/GXGetVtxAttrFmtv.html and SDK source in reference/gx/GXAttr.c.
- Runtime parity updates in
src/gx/pc_gx.c:
- Iteration range now matches SDK:
GX_VA_POS .. GX_VA_TEX7 only.
- Appends
GX_VA_NULL terminator after the fixed range.
- Uses
GXGetVtxAttrFmt for each entry to keep shared parity logic.