hyporo-cpp/source/hyporo/gpu/shader_program.cpp

21 lines
280 B
C++
Raw Normal View History

2022-09-24 16:07:46 +05:00
#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()
{}
}