23 lines
251 B
C++
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()
|
||
|
{}
|
||
|
|
||
|
}
|