diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-12-13 17:51:41 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-12-13 17:51:41 +0300 |
commit | e17da4740c510e3b28634b02298b661a151987f0 (patch) | |
tree | e83d868000186a249c946d80aa478b0119eda494 /src/render/mglemu.h | |
parent | d8e20baa960b95c1ca1dfd7b7e6fc457c695d106 (diff) | |
download | plus-e17da4740c510e3b28634b02298b661a151987f0.tar.gz plus-e17da4740c510e3b28634b02298b661a151987f0.tar.bz2 plus-e17da4740c510e3b28634b02298b661a151987f0.tar.xz plus-e17da4740c510e3b28634b02298b661a151987f0.zip |
Fix code style.
Diffstat (limited to 'src/render/mglemu.h')
-rw-r--r-- | src/render/mglemu.h | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/src/render/mglemu.h b/src/render/mglemu.h index 536a02011..bbe1a121e 100644 --- a/src/render/mglemu.h +++ b/src/render/mglemu.h @@ -24,14 +24,18 @@ #include "render/mgltypes.h" -void APIENTRY emuglTextureSubImage2D(GLuint texture, GLenum target, +void APIENTRY emuglTextureSubImage2D(GLuint texture, + GLenum target, GLint level, - GLint xoffset, GLint yoffset, - GLsizei width, GLsizei height, - GLenum format, GLenum type, + GLint xoffset, + GLint yoffset, + GLsizei width, + GLsizei height, + GLenum format, + GLenum type, const void *pixels); -void APIENTRY emuglActiveTexture (GLenum texture); +void APIENTRY emuglActiveTexture(GLenum texture); #endif // USE_OPENGL #endif // RENDER_MGLEMU_H |