[CHG] Clean comments for doc

This commit is contained in:
Crayon2000 2009-11-09 02:36:22 +00:00
parent 54a20ad5ca
commit db1246ce52
2 changed files with 4 additions and 3 deletions

View file

@ -24,10 +24,10 @@ THE SOFTWARE.
/** /**
* Make a snapshot of the screen in a texture. * Make a snapshot of the screen in a texture.
* @param posx top left corner of the grabbed part * @param posx top left corner of the grabbed part.
* @param posy top left corner of the grabbed part * @param posy top left corner of the grabbed part.
* @param tex A pointer to a texture representing the screen or NULL if an error occurs. * @param tex A pointer to a texture representing the screen or NULL if an error occurs.
* @param clear, want that GX clear the grabbed part ? * @param clear When this flag is set to true, the grabbed part is cleared while copying.
*/ */
void GRRLIB_Screen2Texture (int posx, int posy, GRRLIB_texImg *tex, bool clear) { void GRRLIB_Screen2Texture (int posx, int posy, GRRLIB_texImg *tex, bool clear) {
if(tex->data != NULL) { if(tex->data != NULL) {

View file

@ -123,6 +123,7 @@ void GRRLIB_Render (void) ;
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// GRRLIB_snapshot.c - Create a texture containing a snapshot of a part of the framebuffer // GRRLIB_snapshot.c - Create a texture containing a snapshot of a part of the framebuffer
void GRRLIB_Screen2Texture (int posx, int posy, GRRLIB_texImg *tex, bool clear) ; void GRRLIB_Screen2Texture (int posx, int posy, GRRLIB_texImg *tex, bool clear) ;
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// GRRLIB_texEdit.c - Modifying the content of a texture // GRRLIB_texEdit.c - Modifying the content of a texture