summaryrefslogtreecommitdiff
path: root/src/gl.c
diff options
context:
space:
mode:
authorjussi2023-11-28 22:39:10 +0200
committerjussi2023-11-28 22:39:10 +0200
commit21eb3f90c427b3b84801754e92bebb418a8d9391 (patch)
tree5bb8662bcdaf4709b1b486323bd610e863e5816f /src/gl.c
parent2b330bbadbeb35807b4831ab6275f6e2867029b5 (diff)
downloadreilua-enhanced-21eb3f90c427b3b84801754e92bebb418a8d9391.tar.gz
reilua-enhanced-21eb3f90c427b3b84801754e92bebb418a8d9391.tar.bz2
reilua-enhanced-21eb3f90c427b3b84801754e92bebb418a8d9391.zip
Platform specific API documentation generation.
Diffstat (limited to 'src/gl.c')
-rw-r--r--src/gl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gl.c b/src/gl.c
index e5b5967..8f915ca 100644
--- a/src/gl.c
+++ b/src/gl.c
@@ -12,7 +12,7 @@
> RL.glBlitFramebuffer( RenderTexture srcTex, RenderTexture dstTex, Rectangle srcRect, Rectangle dstRect, int mask, int filter )
Copy a block of pixels from one framebuffer object to another.
-Use -1 RenderTexture for window framebuffer.
+Use -1 RenderTexture for window framebuffer
*/
int lglBlitFramebuffer( lua_State *L ) {
if ( !( lua_isuserdata( L, 1 ) || lua_isnil( L, 1 ) ) || !( lua_isuserdata( L, 2 ) || lua_isnil( L, 2 ) ) ) {