mirror of
https://github.com/MobileGL-Dev/MobileGlues.git
synced 2025-09-23 19:22:35 -04:00
[Fix] (...): Fix some grammer errors.
Signed-off-by: BZLZHH <admin@bzlzhh.top>
This commit is contained in:
parent
42214fb012
commit
6247d2632d
@ -18,17 +18,17 @@
|
||||
#include "glsl/glsl_for_es.h"
|
||||
|
||||
#define FUNC_GL_STATE_SIZEI(name) \
|
||||
static inline void set_gl_state_##name (GLsizei value) { \
|
||||
void set_gl_state_##name (GLsizei value) { \
|
||||
gl_state->name=value; \
|
||||
LOG_D(" -> gl_state: %s is %d",#name,value); \
|
||||
}
|
||||
#define FUNC_GL_STATE_ENUM(name) \
|
||||
static inline void set_gl_state_##name (GLenum value) { \
|
||||
void set_gl_state_##name (GLenum value) { \
|
||||
gl_state->name=value; \
|
||||
LOG_D(" -> gl_state: %s is %d",#name,value); \
|
||||
}
|
||||
#define FUNC_GL_STATE_SIZEI_DECLARATION(name) static inline void set_gl_state_##name (GLsizei value);
|
||||
#define FUNC_GL_STATE_ENUM_DECLARATION(name) static inline void set_gl_state_##name (GLenum value);
|
||||
#define FUNC_GL_STATE_SIZEI_DECLARATION(name) void set_gl_state_##name (GLsizei value);
|
||||
#define FUNC_GL_STATE_ENUM_DECLARATION(name) void set_gl_state_##name (GLenum value);
|
||||
|
||||
FUNC_GL_STATE_SIZEI_DECLARATION(proxy_width)
|
||||
FUNC_GL_STATE_SIZEI_DECLARATION(proxy_height)
|
||||
|
Loading…
x
Reference in New Issue
Block a user