summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorRay <[email protected]>2023-12-20 01:03:52 +0100
committerRay <[email protected]>2023-12-20 01:03:52 +0100
commit68b6c79c3f4cea31f9b9baf9940a232b6f3372b5 (patch)
tree43a42c6a70bbadf3350922df8a286948d1962f46 /src
parent2fe68a8a121ec9bd864467b69c79a30a9b9eaf45 (diff)
downloadraylib-68b6c79c3f4cea31f9b9baf9940a232b6f3372b5.tar.gz
raylib-68b6c79c3f4cea31f9b9baf9940a232b6f3372b5.zip
Update rlgl.h
Diffstat (limited to 'src')
-rw-r--r--src/rlgl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rlgl.h b/src/rlgl.h
index f3bbcd33..eb7320a6 100644
--- a/src/rlgl.h
+++ b/src/rlgl.h
@@ -1742,7 +1742,7 @@ void rlBlitFramebuffer(int srcX, int srcY, int srcWidth, int srcHeight, int dstX
}
// Bind framebuffer object (fbo)
-void rlBindFramebuffer(unsigned int target, unsigned int framebuffer);
+void rlBindFramebuffer(unsigned int target, unsigned int framebuffer)
{
#if (defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)) && defined(RLGL_RENDER_TEXTURES_HINT)
glBindFramebuffer(target, framebuffer);