hyporo-cpp/source/hyporo/gpu/opengl/render_target.cpp
2022-11-18 21:50:49 +05:00

15 lines
195 B
C++

#pragma once
#include "render_target.hpp"
namespace hpr::gpu::opengl
{
RenderTarget::RenderTarget() :
gpu::RenderTarget {DeviceAPI::OpenGL}
{}
RenderTarget::~RenderTarget() = default;
}