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

20 lines
288 B
C++

#include "shader_program.hpp"
namespace hpr::gpu
{
ShaderProgram::ShaderProgram() :
Context {DeviceAPI::Unknown},
p_isLinked {false}
{}
ShaderProgram::ShaderProgram(DeviceAPI api) :
Context {api},
p_isLinked {false}
{}
ShaderProgram::~ShaderProgram() = default;
}