mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 12:22:35 +00:00
40 lines
No EOL
921 B
C++
40 lines
No EOL
921 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include "RenderDevice.h"
|
|
|
|
enum class DeclarationUsage : int32_t { Position, Color, TextureCoordinate, Normal };
|
|
|
|
class Shader
|
|
{
|
|
public:
|
|
Shader() = default;
|
|
void ReleaseResources();
|
|
|
|
void Setup(const std::string& identifier, const std::string& vertexShader, const std::string& fragmentShader, bool alphatest);
|
|
bool CheckCompile();
|
|
void Bind();
|
|
|
|
std::string GetIdentifier();
|
|
std::string GetCompileError();
|
|
|
|
GLuint UniformLocations[(int)UniformName::NumUniforms] = { 0 };
|
|
|
|
private:
|
|
void CreateProgram();
|
|
GLuint CompileShader(const std::string& code, GLenum type);
|
|
|
|
std::string mIdentifier;
|
|
std::string mVertexText;
|
|
std::string mFragmentText;
|
|
bool mAlphatest = false;
|
|
bool mProgramBuilt = false;
|
|
|
|
GLuint mProgram = 0;
|
|
GLuint mVertexShader = 0;
|
|
GLuint mFragmentShader = 0;
|
|
std::string mErrors;
|
|
|
|
Shader(const Shader&) = delete;
|
|
Shader& operator=(const Shader&) = delete;
|
|
}; |