blob: 00be72ee0187bd43d68eff873a046d815dd80d5e (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <dolphin/gf.h>
#include <dolphin/gd.h>
void GFSetGenMode2(u8 nTexGens, u8 nChans, u8 nTevs, u8 nInds, GXCullMode cm) {
static u8 cm2hw[4] = {0, 2, 1, 3};
GFWriteBPCmd(0xFE07FC3F);
GFWriteBPCmd(GF_GEN_MODE(nTexGens, nChans, nTevs - 1, cm2hw[cm], nInds));
GFWriteXFCmd(XF_REG_NUMCOLORS_ID, nChans);
GFWriteXFCmd(XF_REG_NUMTEX_ID, nTexGens);
}
|