From 8c05d9ac06dc1a40acf260f1aab59d7467dc4128 Mon Sep 17 00:00:00 2001 From: Crayon2000 Date: Thu, 15 Oct 2009 14:52:42 +0000 Subject: [PATCH] [CHG] Renamed GRRLIB.html to README.html [CHG] Deleted the "Temporary fix" README.txt, not needed with devkitPro 18 --- GRRLIB/GRRLIB/GRRLIB_texEdit.c | 18 +++++++++--------- GRRLIB/GRRLIB/README.txt | 18 ------------------ GRRLIB.html => README.html | 0 3 files changed, 9 insertions(+), 27 deletions(-) delete mode 100644 GRRLIB/GRRLIB/README.txt rename GRRLIB.html => README.html (100%) diff --git a/GRRLIB/GRRLIB/GRRLIB_texEdit.c b/GRRLIB/GRRLIB/GRRLIB_texEdit.c index 707e149..dd99e02 100644 --- a/GRRLIB/GRRLIB/GRRLIB_texEdit.c +++ b/GRRLIB/GRRLIB/GRRLIB_texEdit.c @@ -31,10 +31,10 @@ THE SOFTWARE. /** * Convert a raw BMP (RGB, no alpha) to 4x4RGBA. * @author DragonMinded - * @param src - * @param dst - * @param width - * @param height + * @param src Source. + * @param dst Destination. + * @param width Width. + * @param height Height. */ static void RawTo4x4RGBA (const u8 *src, void *dst, @@ -177,11 +177,11 @@ GRRLIB_texImg* GRRLIB_LoadTextureJPG (const u8 *my_jpg) { * Currently only performs "a-over-b (normal) alpha compositing" (opacity) * Ie. Light source is behind the eye, not behind the canvas! * @author BlueChip - * @param xoff : The x-offset within the canvas (negative values allowed) - * @param yoff : The y-offset within the canvas (negative values allowed) - * @param layer : The layer/sprite to draw - * @param canvas : The canvas/textured-image on which to draw - * @param mode : Currently unused - will be composition mode + * @param xoff The x-offset within the canvas (negative values allowed) + * @param yoff The y-offset within the canvas (negative values allowed) + * @param layer The layer/sprite to draw + * @param canvas The canvas/textured-image on which to draw + * @param mode Currently unused - will be composition mode */ void GRRLIB_Compose( int xoff, int yoff, GRRLIB_texImg* layer, GRRLIB_texImg* canvas, GRRLIB_ComposeMode mode ) diff --git a/GRRLIB/GRRLIB/README.txt b/GRRLIB/GRRLIB/README.txt deleted file mode 100644 index 69cf9f1..0000000 --- a/GRRLIB/GRRLIB/README.txt +++ /dev/null @@ -1,18 +0,0 @@ -*** Temporary fix *** -After the release of libogc v1.7.1a, Vector was renamed to guVector -"to avoid collisions" [svn 3650] -...also Quaternion was renamed to guQuaternion - but GRRLIB does not use these! - -The main codebase of GRRLIB has been updated to reflect this change. -But until the new libogc is officially released, -if you are using a version of libogc later than v1.7.1a/svn3649, -you will need to add: - -DNOGUFIX -to the compiler flags in your makefile - -When the libogc changes are officially released, -this *temporary fix* should be removed [see grrlib.h, line 50ish] -The requirement for -DNOGUFIX will be deprecated, -but its lingering presence will not be a hinderance - -Thanks to Nicksasa for reporting this problem :) diff --git a/GRRLIB.html b/README.html similarity index 100% rename from GRRLIB.html rename to README.html