skein/src/gfx.hpp

8 lines
190 B
C++
Raw Normal View History

#pragma once
#include <string>
#include "GL/glew.h"
2023-08-06 13:08:49 +02:00
GLuint compileShaderProgram(const std::string& fragShaderPath);
GLuint compileShader(const std::string& shaderPath, GLenum shaderType);