[CHG] Files cleanup

This commit is contained in:
Crayon2000 2010-01-05 22:28:13 +00:00
parent 45a9b43afb
commit 25876beeb9
2 changed files with 53 additions and 56 deletions

View file

@ -103,7 +103,6 @@ void GRRLIB_3dMode(f32 minDist, f32 maxDist, f32 fov, bool colormode, bool textu
if(texturemode==FALSE) GX_SetTevOp(GX_TEVSTAGE0, GX_PASSCLR); if(texturemode==FALSE) GX_SetTevOp(GX_TEVSTAGE0, GX_PASSCLR);
else GX_SetTevOp(GX_TEVSTAGE0, GX_MODULATE); else GX_SetTevOp(GX_TEVSTAGE0, GX_MODULATE);
} }
/** /**
@ -170,7 +169,6 @@ void GRRLIB_ObjectView(f32 posx, f32 posy, f32 posz, f32 angx, f32 angy, f32 ang
GX_LoadNrmMtxImm(mv, GX_PNMTX0); GX_LoadNrmMtxImm(mv, GX_PNMTX0);
} }
/** /**
* Set the texture to an object (contributed by chris_c aka DaShAmAn). * Set the texture to an object (contributed by chris_c aka DaShAmAn).
* @param tex poiter to an image texture (GRRLIB_texImg format). * @param tex poiter to an image texture (GRRLIB_texImg format).
@ -199,10 +197,10 @@ void GRRLIB_SetTexture(GRRLIB_texImg *tex, bool rep) {
} }
/** /**
* Initialise a Diffuse Light. * Initialise a diffuse light.
* @param id a light ID in libogc style : GX_LIGHT0,..., GX_LIGHT7). * @param id A light ID in libogc style : GX_LIGHT0,..., GX_LIGHT7.
* @param lpos a guVector x,y,z position of the light. * @param lpos A guVector x,y,z position of the light.
* @param lcol color of the light. * @param lcol Color of the light.
*/ */
void GRRLIB_InitLight(u8 id, guVector lpos, u32 lcol) { void GRRLIB_InitLight(u8 id, guVector lpos, u32 lcol) {
GXLightObj MyLight; GXLightObj MyLight;
@ -214,7 +212,7 @@ GXLightObj MyLight;
} }
/** /**
* All Light Off, colors come from the Vertex. * All light off, colors come from the Vertex.
*/ */
void GRRLIB_LightOff(void) { void GRRLIB_LightOff(void) {
GX_SetNumChans(1); GX_SetNumChans(1);
@ -224,7 +222,7 @@ void GRRLIB_LightOff(void){
/** /**
* Define what light to turn on and some other param. * Define what light to turn on and some other param.
* @param id light IDs of the desired switched ON lights (ORed) (ie GX_LIGHT0|GX_LIGHT7). * @param id Light IDs of the desired switched ON lights (ORed) (ie GX_LIGHT0|GX_LIGHT7).
* @param ambcol Ambiant color u32 formated * @param ambcol Ambiant color u32 formated
* @param matcol Material color u32 formated. * @param matcol Material color u32 formated.
* @param colsrc Material color sources comes from the Vertex ???? (True/False) * @param colsrc Material color sources comes from the Vertex ???? (True/False)
@ -239,4 +237,3 @@ void GRRLIB_LightSwitch(u8 id, u32 ambcol, u32 matcol, u8 colsrc){
GX_SetChanAmbColor(GX_COLOR0A0, (GXColor) { R(ambcol), G(ambcol), B(ambcol), A(ambcol)}); GX_SetChanAmbColor(GX_COLOR0A0, (GXColor) { R(ambcol), G(ambcol), B(ambcol), A(ambcol)});
GX_SetChanMatColor(GX_COLOR0A0, (GXColor) { R(matcol), G(matcol), B(matcol), A(matcol)}); GX_SetChanMatColor(GX_COLOR0A0, (GXColor) { R(matcol), G(matcol), B(matcol), A(matcol)});
} }