mirror of
https://github.com/infiniteCable2/openpilot.git
synced 2026-08-04 15:56:05 +08:00
7609fa3b51
old-commit-hash: ecc565aa3fdc4c7e719aadc000e1fdc4d80d4fe0
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
|