aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorraysan5 <raysan5@gmail.com>2016-05-20 09:40:48 +0200
committerraysan5 <raysan5@gmail.com>2016-05-20 09:40:48 +0200
commit03cc031d00ab97ab46b61b66a6281a175c33541f (patch)
tree376adde6b4bd64609d84c9f5b00392a6abb16007 /src
parent7d1d9ff143cd7c6c55d3fd891b43e143431ea15f (diff)
downloadraylib-03cc031d00ab97ab46b61b66a6281a175c33541f.tar.gz
raylib-03cc031d00ab97ab46b61b66a6281a175c33541f.zip
Remove TODO comments (already done)
Diffstat (limited to 'src')
-rw-r--r--src/raylib.h1
-rw-r--r--src/shapes.c1
2 files changed, 0 insertions, 2 deletions
diff --git a/src/raylib.h b/src/raylib.h
index 8a46ec35..32cd54a6 100644
--- a/src/raylib.h
+++ b/src/raylib.h
@@ -423,7 +423,6 @@ typedef struct Material {
} Material;
// 3d Model type
-// TODO: Replace shader/testure by material
typedef struct Model {
Mesh mesh; // Vertex data buffers (RAM and VRAM)
Matrix transform; // Local transform matrix
diff --git a/src/shapes.c b/src/shapes.c
index 14d11315..5b66e5ef 100644
--- a/src/shapes.c
+++ b/src/shapes.c
@@ -446,7 +446,6 @@ bool CheckCollisionCircleRec(Vector2 center, float radius, Rectangle rec)
}
// Get collision rectangle for two rectangles collision
-// TODO: Depending on rec1 and rec2 order, it fails -> Review!
Rectangle GetCollisionRec(Rectangle rec1, Rectangle rec2)
{
Rectangle retRec = { 0, 0, 0, 0 };