8 lines
157 B
C++
8 lines
157 B
C++
|
#pragma once
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
#include "GL/glew.h"
|
||
|
|
||
|
GLuint compileShaderProgram();
|
||
|
GLuint compileShader(const std::string& shaderPath, GLenum shaderType);
|