Files
sunnypilot/selfdrive/common/glutil.h
Vehicle Researcher 7609fa3b51 openpilot v0.2.4 release
old-commit-hash: ecc565aa3f
2017-01-29 16:10:13 -08:00

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