aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
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 };