hyporo-cpp/source/hyporo/gpu/shader.cpp
2022-09-24 16:07:46 +05:00

23 lines
251 B
C++

#include "shader.hpp"
namespace hpr::gpu
{
Shader::Shader() :
Context {DeviceAPI::Unknown},
p_filename {},
p_label {}
{}
Shader::Shader(DeviceAPI api) :
Context {api},
p_filename {},
p_label {}
{}
Shader::~Shader()
{}
}