summaryrefslogtreecommitdiffhomepage
path: root/src/rlgl.h
diff options
context:
space:
mode:
authorRay <[email protected]>2023-10-08 18:10:05 +0200
committerRay <[email protected]>2023-10-08 18:10:05 +0200
commitbe8eea9edadea82395b0ebec1c8afddbed129641 (patch)
treee5c8cd15246ecbb677f43131be8abb99ee8ec048 /src/rlgl.h
parent97c2744a16ad7e6cf6b546a7a6416ec6b21e3a6c (diff)
downloadraylib-be8eea9edadea82395b0ebec1c8afddbed129641.tar.gz
raylib-be8eea9edadea82395b0ebec1c8afddbed129641.zip
Format tweaks
Diffstat (limited to 'src/rlgl.h')
-rw-r--r--src/rlgl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rlgl.h b/src/rlgl.h
index 7a0d7f86..40e7b478 100644
--- a/src/rlgl.h
+++ b/src/rlgl.h
@@ -4248,7 +4248,7 @@ void rlBindImageTexture(unsigned int id, unsigned int index, int format, bool re
unsigned int glInternalFormat = 0, glFormat = 0, glType = 0;
rlGetGlTextureFormats(format, &glInternalFormat, &glFormat, &glType);
- glBindImageTexture(index, id, 0, 0, 0, readonly ? GL_READ_ONLY : GL_READ_WRITE, glInternalFormat);
+ glBindImageTexture(index, id, 0, 0, 0, readonly? GL_READ_ONLY : GL_READ_WRITE, glInternalFormat);
#endif
}