hyporo-cpp/source/hpr/gpu/opengl/shader.cpp
2022-12-06 23:52:49 +05:00

18 lines
212 B
C++

//
// Created by L-Nafaryus on 10/3/2022.
//
#include "shader.hpp"
namespace hpr::gpu::opengl
{
Shader::Shader() :
gpu::Shader(DeviceAPI::OpenGL),
p_shaderIndex {0}
{}
Shader::~Shader() = default;
}