Update rlgl.h

Removed unnecessary comment.
This commit is contained in:
Chris DeBoy 2025-10-15 14:33:09 -07:00 committed by GitHub
parent 797e0ac940
commit de4e37467e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2112,7 +2112,7 @@ void rlClearColor(unsigned char r, unsigned char g, unsigned char b, unsigned ch
// rendered scene without them clipping through world geometry. // rendered scene without them clipping through world geometry.
void rlClearDepthBuffer(void) void rlClearDepthBuffer(void)
{ {
glClear(GL_DEPTH_BUFFER_BIT); // Beats having to #import <GL/gl.h> just to call this one function. glClear(GL_DEPTH_BUFFER_BIT);
} }
// Clear used screen buffers (color and depth) // Clear used screen buffers (color and depth)