summaryrefslogtreecommitdiffhomepage
path: root/src/shapes.c
diff options
context:
space:
mode:
authorRay <[email protected]>2020-01-08 18:21:08 +0100
committerRay <[email protected]>2020-01-08 18:21:08 +0100
commit4211056354c66f90702508bb78631a0947d57a1f (patch)
tree15fba737cdaa2f8fde83f4e1192f771e23eebcf2 /src/shapes.c
parent6d56c99a37df6b399d871d79ff7c48cf9a85884d (diff)
downloadraylib-4211056354c66f90702508bb78631a0947d57a1f.tar.gz
raylib-4211056354c66f90702508bb78631a0947d57a1f.zip
Reviewed some comments
Diffstat (limited to 'src/shapes.c')
-rw-r--r--src/shapes.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shapes.c b/src/shapes.c
index 0c533df0..bdc6ae0c 100644
--- a/src/shapes.c
+++ b/src/shapes.c
@@ -58,8 +58,8 @@
//----------------------------------------------------------------------------------
// Global Variables Definition
//----------------------------------------------------------------------------------
-static Texture2D texShapes = { 0 };
-static Rectangle recTexShapes = { 0 };
+static Texture2D texShapes = { 0 }; // Texture used on shapes drawing (usually a white)
+static Rectangle recTexShapes = { 0 }; // Texture source rectangle used on shapes drawing
//----------------------------------------------------------------------------------
// Module specific Functions Declaration