Migrated Gfx at 0x80186D00
This commit is contained in:
parent
d855e67fa1
commit
c7872bf945
|
|
@ -406,7 +406,7 @@ segments:
|
||||||
- [0x5C8A0, .rodata, "gfx/ob_mutual_ball"]
|
- [0x5C8A0, .rodata, "gfx/ob_mutual_ball"]
|
||||||
- [0x5CAD0, .rodata, "gfx/ob_thick_bikes"]
|
- [0x5CAD0, .rodata, "gfx/ob_thick_bikes"]
|
||||||
- [0x5CB60, .rodata, "gfx/ob_hospitable_friends"]
|
- [0x5CB60, .rodata, "gfx/ob_hospitable_friends"]
|
||||||
- [0x5CC00, rodata]
|
- [0x5CC00, .rodata, "gfx/ob_broad_badge"]
|
||||||
- [0x5CC90, rodata]
|
- [0x5CC90, rodata]
|
||||||
- [0x5CCD0, rodata]
|
- [0x5CCD0, rodata]
|
||||||
- [0x5CD20, rodata]
|
- [0x5CD20, rodata]
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,27 @@
|
||||||
|
#include <ultra64.h>
|
||||||
|
|
||||||
|
#include "common.h"
|
||||||
|
|
||||||
|
/* 5CC00 80186D00 */
|
||||||
|
const Gfx DISPLAY_LIST_80186D00[] = {
|
||||||
|
gsDPPipeSync(),
|
||||||
|
gsSPTexture(0, 0, 0, G_TX_RENDERTILE, G_OFF),
|
||||||
|
gsSPClearGeometryMode(G_ZBUFFER | G_SHADE | G_CULL_BOTH | G_FOG |
|
||||||
|
G_LIGHTING | G_TEXTURE_GEN | G_TEXTURE_GEN_LINEAR |
|
||||||
|
G_LOD | G_SHADING_SMOOTH | G_CLIPPING | 0x0040F9FA),
|
||||||
|
gsDPPipeSync(),
|
||||||
|
gsDPPipeSync(),
|
||||||
|
gsDPSetCycleType(G_CYC_1CYCLE),
|
||||||
|
gsDPPipeSync(),
|
||||||
|
gsDPSetTexturePersp(G_TP_NONE),
|
||||||
|
gsDPSetTextureDetail(G_TD_CLAMP),
|
||||||
|
gsDPSetTextureLOD(G_TL_TILE),
|
||||||
|
gsDPSetTextureLUT(G_TT_NONE),
|
||||||
|
gsDPSetCombineMode(G_CC_DECALRGBA, G_CC_DECALRGBA),
|
||||||
|
gsDPSetRenderMode(G_RM_OPA_SURF, G_RM_OPA_SURF2),
|
||||||
|
gsDPSetTextureFilter(G_TF_POINT),
|
||||||
|
gsDPSetBlendColor(0xFF, 0xFF, 0xFF, 0x01),
|
||||||
|
gsDPSetAlphaCompare(G_AC_NONE),
|
||||||
|
gsDPPipeSync(),
|
||||||
|
gsSPEndDisplayList(),
|
||||||
|
};
|
||||||
Loading…
Reference in New Issue