2026-01-09 06:12:57 +09:00
|
|
|
#ifndef __GEARBOX_GL_H__
|
|
|
|
|
#define __GEARBOX_GL_H__
|
|
|
|
|
|
|
|
|
|
#include <GearBox/MachDep.h>
|
|
|
|
|
#include <GearBox/TypeDefs.h>
|
|
|
|
|
|
|
|
|
|
#include <GearBox/GL/GL.h>
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* gl_shader.c */
|
2026-01-10 01:40:21 +09:00
|
|
|
GBDECL int GBGLShaderPrepare(GBEngine engine, GLuint* shader, const char* vs, const char* fs);
|
2026-01-09 06:12:57 +09:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif
|