light/Engine/src/Platform/GraphicsAPI/OpenGL/glShader.h
2021-05-31 19:09:27 +04:30

21 lines
No EOL
314 B
C++

#pragma once
#include "Base.h"
#include "Graphics/Shader.h"
namespace Light {
class glShader : public Shader
{
private:
unsigned int m_ShaderID;
public:
glShader(const std::string& vetexSource, const std::string& fragmentSource);
~glShader();
void Bind() override;
void UnBind() override;
};
}