mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2025-10-30 08:01:01 +00:00
* set_gfx_command part 2 * part 3 * get gfx/vtx from name; copy gfx/vtx * gfx/vtx dynamic allocation lua * gfx/vtx_new: don't take level/model/vanilla names * Clean up gbi constants * update example * Isaac review; add gfx_get_next_command and vtx_get_next_vertex * make all commands length 1; missing NULL checks
8 lines
212 B
C
8 lines
212 B
C
const GeoLayout shape_geo[] = {
|
|
GEO_NODE_START(),
|
|
GEO_OPEN_NODE(),
|
|
GEO_ASM(0, geo_update_shape),
|
|
GEO_DISPLAY_LIST(LAYER_OPAQUE, shape_template_dl),
|
|
GEO_CLOSE_NODE(),
|
|
GEO_END(),
|
|
};
|