fix(glsl_for_es): remove unnecessary exports

This commit is contained in:
Swung0x48 2025-02-09 23:05:12 +08:00
parent 38c2816748
commit 0c08d7afdb

View File

@ -13,9 +13,9 @@ extern "C" {
#endif
#include "../mg.h"
__attribute__((visibility("default"))) extern char *GLSLtoGLSLES_1(char *glsl_code, GLenum glsl_type, unsigned int esversion);
__attribute__((visibility("default"))) extern char *GLSLtoGLSLES_2(char *glsl_code, GLenum glsl_type, uint essl_version);
__attribute__((visibility("default"))) extern int getGLSLVersion(const char* glsl_code);
char *GLSLtoGLSLES_1(char *glsl_code, GLenum glsl_type, unsigned int esversion);
char *GLSLtoGLSLES_2(char *glsl_code, GLenum glsl_type, uint essl_version);
int getGLSLVersion(const char* glsl_code);
#ifdef __cplusplus
}
#endif