hyporo-cpp/source/hyporo/gpu/opengl/shader.cpp
2022-10-03 18:51:34 +05:00

19 lines
222 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()
{}
}