mirror of
https://github.com/infiniteCable2/openpilot.git
synced 2026-09-11 18:53:41 +08:00
189c815e8f
old-commit-hash: 368a956b965f64d8c2d833b4d75a973807cd5f1b
9 lines
201 B
C
9 lines
201 B
C
#ifndef COMMON_GLUTIL_H
|
|
#define COMMON_GLUTIL_H
|
|
|
|
#include <GLES3/gl3.h>
|
|
GLuint load_shader(GLenum shaderType, const char *src);
|
|
GLuint load_program(const char *vert_src, const char *frag_src);
|
|
|
|
#endif
|