Files
openpilot-evo/selfdrive/common/glutil.h
T
George Hotz 189c815e8f selfdrive/common
old-commit-hash: 368a956b965f64d8c2d833b4d75a973807cd5f1b
2020-01-17 11:01:02 -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