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

21 lines
283 B
C++

#include "device.hpp"
#include "buffer.hpp
#include "shader.hpp"
#include "shader_program.hpp"
#include "texture.hpp"
namespace hpr::gpu::opengl
{
Device::Device() :
gpu::Device {DeviceAPI::OpenGL},
p_isInitialized {false}
{}
Device::~Device()
{}
}