sm64

A Super Mario 64 decompilation
Log | Files | Refs | README | LICENSE

model.inc.c (1215B)


      1 // White Particle
      2 
      3 // 0x0302C660
      4 static const Vtx white_particle_vertex[] = {
      5     {{{   -15,    -15,      0}, 0, {     0,    480}, {0xff, 0xff, 0xff, 0xff}}},
      6     {{{    15,    -15,      0}, 0, {   480,    480}, {0xff, 0xff, 0xff, 0xff}}},
      7     {{{    15,     15,      0}, 0, {   480,      0}, {0xff, 0xff, 0xff, 0xff}}},
      8     {{{   -15,     15,      0}, 0, {     0,      0}, {0xff, 0xff, 0xff, 0xff}}},
      9 };
     10 
     11 // 0x0302C6A0
     12 ALIGNED8 static const Texture white_particle_texture[] = {
     13 #include "actors/white_particle/snow_particle.rgba16.inc.c"
     14 };
     15 
     16 // 0x0302C8A0 - 0x0302C938
     17 const Gfx white_particle_dl[] = {
     18     gsDPPipeSync(),
     19     gsSPClearGeometryMode(G_LIGHTING),
     20     gsDPSetCombineMode(G_CC_DECALRGBA, G_CC_DECALRGBA),
     21     gsDPLoadTextureBlock(white_particle_texture, G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 16, 0, G_TX_CLAMP, G_TX_CLAMP, 4, 4, G_TX_NOLOD, G_TX_NOLOD),
     22     gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON),
     23     gsSPVertex(white_particle_vertex, 4, 0),
     24     gsSP2Triangles( 0,  1,  2, 0x0,  0,  2,  3, 0x0),
     25     gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_OFF),
     26     gsDPPipeSync(),
     27     gsDPSetCombineMode(G_CC_SHADE, G_CC_SHADE),
     28     gsSPSetGeometryMode(G_LIGHTING),
     29     gsSPEndDisplayList(),
     30 };