Skip to content

Commit

Permalink
Removed "Untested: comments as they have all now been tested
Browse files Browse the repository at this point in the history
  • Loading branch information
BtheDestroyer committed Dec 27, 2016
1 parent c4bae33 commit 1cd0b62
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions include/spritetools_render.h
Expand Up @@ -32,20 +32,17 @@ void ST_RenderEndRender(void);
\*******************************/
/* Draw Spritesheet at Position */
/* Takes spritesheet and x and y of position to render on screen */
/* Untested */
void ST_RenderSpritesheetPosition(st_spritesheet *spritesheet, int x, int y);

/* Draw Spritesheet at 0,0 */
/* Takes spritesheet */
/* Untested */
void ST_RenderSpritesheet(st_spritesheet *spritesheet);

/* Draw Sprite in Spritesheet at Position */
/* Takes spritesheet */
/* Takes x and y of the top left pixel of the sprite in the spritesheet */
/* Takes width and height of the sprite in the spritesheet */
/* Takes position to print the sprite on screen */
/* Untested */
void ST_RenderSpritePosition(st_spritesheet *spritesheet,
unsigned int xleft, unsigned int ytop,
unsigned int width, unsigned int height,
Expand All @@ -55,7 +52,6 @@ void ST_RenderSpritePosition(st_spritesheet *spritesheet,
/* Takes spritesheet */
/* Takes x and y of the top left pixel of the sprite in the spritesheet */
/* Takes width and height of the sprite in the spritesheet */
/* Untested */
void ST_RenderSprite(st_spritesheet *spritesheet,
unsigned int xleft, unsigned int ytop,
unsigned int width, unsigned int height);
Expand All @@ -66,7 +62,6 @@ void ST_RenderSprite(st_spritesheet *spritesheet,
/* Takes width and height of the sprite in the spritesheet */
/* Takes position to print the sprite on screen */
/* Takes value to scale by */
/* Untested */
void ST_RenderSpritePositionScale(st_spritesheet *spritesheet,
unsigned int xleft, unsigned int ytop,
unsigned int width, unsigned int height,
Expand All @@ -79,7 +74,6 @@ void ST_RenderSpritePositionScale(st_spritesheet *spritesheet,
/* Takes width and height of the sprite in the spritesheet */
/* Takes position to print the sprite on screen */
/* Takes radian value to rotate by */
/* Untested */
void ST_RenderSpritePositionRotate(st_spritesheet *spritesheet,
unsigned int xleft, unsigned int ytop,
unsigned int width, unsigned int height,
Expand All @@ -93,7 +87,6 @@ void ST_RenderSpritePositionRotate(st_spritesheet *spritesheet,
/* Takes position to print the sprite on screen */
/* Takes value to scale by */
/* Takes value to rotate by */
/* Untested */
void ST_RenderSpritePositionScaleRotate(st_spritesheet *spritesheet,
unsigned int xleft, unsigned int ytop,
unsigned int width, unsigned int height,
Expand Down

2 comments on commit 1cd0b62

@BtheDestroyer
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@BtheDestroyer
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.