Skip to content

Commit 1cd0b62

Browse files
committed
Removed "Untested: comments as they have all now been tested
1 parent c4bae33 commit 1cd0b62

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

include/spritetools_render.h

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,20 +32,17 @@ void ST_RenderEndRender(void);
3232
\*******************************/
3333
/* Draw Spritesheet at Position */
3434
/* Takes spritesheet and x and y of position to render on screen */
35-
/* Untested */
3635
void ST_RenderSpritesheetPosition(st_spritesheet *spritesheet, int x, int y);
3736

3837
/* Draw Spritesheet at 0,0 */
3938
/* Takes spritesheet */
40-
/* Untested */
4139
void ST_RenderSpritesheet(st_spritesheet *spritesheet);
4240

4341
/* Draw Sprite in Spritesheet at Position */
4442
/* Takes spritesheet */
4543
/* Takes x and y of the top left pixel of the sprite in the spritesheet */
4644
/* Takes width and height of the sprite in the spritesheet */
4745
/* Takes position to print the sprite on screen */
48-
/* Untested */
4946
void ST_RenderSpritePosition(st_spritesheet *spritesheet,
5047
unsigned int xleft, unsigned int ytop,
5148
unsigned int width, unsigned int height,
@@ -55,7 +52,6 @@ void ST_RenderSpritePosition(st_spritesheet *spritesheet,
5552
/* Takes spritesheet */
5653
/* Takes x and y of the top left pixel of the sprite in the spritesheet */
5754
/* Takes width and height of the sprite in the spritesheet */
58-
/* Untested */
5955
void ST_RenderSprite(st_spritesheet *spritesheet,
6056
unsigned int xleft, unsigned int ytop,
6157
unsigned int width, unsigned int height);
@@ -66,7 +62,6 @@ void ST_RenderSprite(st_spritesheet *spritesheet,
6662
/* Takes width and height of the sprite in the spritesheet */
6763
/* Takes position to print the sprite on screen */
6864
/* Takes value to scale by */
69-
/* Untested */
7065
void ST_RenderSpritePositionScale(st_spritesheet *spritesheet,
7166
unsigned int xleft, unsigned int ytop,
7267
unsigned int width, unsigned int height,
@@ -79,7 +74,6 @@ void ST_RenderSpritePositionScale(st_spritesheet *spritesheet,
7974
/* Takes width and height of the sprite in the spritesheet */
8075
/* Takes position to print the sprite on screen */
8176
/* Takes radian value to rotate by */
82-
/* Untested */
8377
void ST_RenderSpritePositionRotate(st_spritesheet *spritesheet,
8478
unsigned int xleft, unsigned int ytop,
8579
unsigned int width, unsigned int height,
@@ -93,7 +87,6 @@ void ST_RenderSpritePositionRotate(st_spritesheet *spritesheet,
9387
/* Takes position to print the sprite on screen */
9488
/* Takes value to scale by */
9589
/* Takes value to rotate by */
96-
/* Untested */
9790
void ST_RenderSpritePositionScaleRotate(st_spritesheet *spritesheet,
9891
unsigned int xleft, unsigned int ytop,
9992
unsigned int width, unsigned int height,

0 commit comments

Comments
 (0)