[CHG] GRRLIB_Compose is now using 4 spaces for tabs (instead of 2)

This commit is contained in:
Crayon2000 2009-08-25 00:53:43 +00:00
parent 08c03a8de9
commit c8abda9052

View file

@ -173,9 +173,8 @@ GRRLIB_texImg* GRRLIB_LoadTextureJPG (const u8 *my_jpg) {
return my_texture; return my_texture;
} }
//==============================================================================
/** /**
* Compose a layer/sprite to a canvas/textured-image * Compose a layer/sprite to a canvas/textured-image.
* Currently only performs "a-over-b (normal) alpha compositing" (opacity) * Currently only performs "a-over-b (normal) alpha compositing" (opacity)
* Ie. Light source is behind the eye, not behind the canvas! * Ie. Light source is behind the eye, not behind the canvas!
* @author BlueChip * @author BlueChip
@ -185,7 +184,6 @@ GRRLIB_texImg* GRRLIB_LoadTextureJPG (const u8 *my_jpg) {
* @param canvas : The canvas/textured-image on which to draw * @param canvas : The canvas/textured-image on which to draw
* @param mode : Currently unused - will be composition mode * @param mode : Currently unused - will be composition mode
*/ */
//==============================================================================
void GRRLIB_Compose( int xoff, int yoff, GRRLIB_texImg* layer, void GRRLIB_Compose( int xoff, int yoff, GRRLIB_texImg* layer,
GRRLIB_texImg* canvas, GRRLIB_ComposeMode mode ) GRRLIB_texImg* canvas, GRRLIB_ComposeMode mode )
{ {