summaryrefslogtreecommitdiffhomepage
path: root/src/rlgl.h
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2018-05-20 01:55:46 +0200
committerraysan5 <[email protected]>2018-05-20 01:55:46 +0200
commitca690688149e90b8fc92713d31b17330f9ea8b43 (patch)
treec74af11a0b79bfa83d825e321db6cdd425e208b0 /src/rlgl.h
parent3b70b66a089ed48b99305ce058a4bbde4a0bc3b4 (diff)
downloadraylib-ca690688149e90b8fc92713d31b17330f9ea8b43.tar.gz
raylib-ca690688149e90b8fc92713d31b17330f9ea8b43.zip
Added function: rlCheckBufferLimit()
Diffstat (limited to 'src/rlgl.h')
-rw-r--r--src/rlgl.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rlgl.h b/src/rlgl.h
index c071acac..18eff380 100644
--- a/src/rlgl.h
+++ b/src/rlgl.h
@@ -424,6 +424,7 @@ void rlglClose(void); // De-inititialize rlgl (buffers
void rlglDraw(void); // Update and Draw default buffers (lines, triangles, quads)
int rlGetVersion(void); // Returns current OpenGL version
+bool rlCheckBufferLimit(int type, int vCount); // Check internal buffer overflow for a given number of vertex
void rlSetDebugMarker(const char *text); // Set debug marker for analysis
void rlLoadExtensions(void *loader); // Load OpenGL extensions
Vector3 rlUnproject(Vector3 source, Matrix proj, Matrix view); // Get world coordinates from screen coordinates