aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRay <raysan5@gmail.com>2016-05-02 14:11:42 +0200
committerRay <raysan5@gmail.com>2016-05-02 14:11:42 +0200
commit2646ed039338ce02737756b6b7e82ae0c82f9b03 (patch)
treef7182f9d323a8c0cb4c8ec530087beeda351fcd4 /src
parent17732fa9c493bffb8e05cb5db45d998d2b151cb9 (diff)
downloadraylib-2646ed039338ce02737756b6b7e82ae0c82f9b03.tar.gz
raylib-2646ed039338ce02737756b6b7e82ae0c82f9b03.zip
Removed debug functions
Diffstat (limited to 'src')
-rw-r--r--src/rlgl.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/rlgl.c b/src/rlgl.c
index b1b020ec..e021e726 100644
--- a/src/rlgl.c
+++ b/src/rlgl.c
@@ -2377,18 +2377,6 @@ void SetBlendMode(int mode)
}
}
-#if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
-void PrintProjectionMatrix(void)
-{
- PrintMatrix(projection);
-}
-
-void PrintModelviewMatrix(void)
-{
- PrintMatrix(modelview);
-}
-#endif
-
//----------------------------------------------------------------------------------
// Module specific Functions Definition
//----------------------------------------------------------------------------------