38 lines
1,019 B
C++
38 lines
1,019 B
C++
#include <engine/graphics/framebuffer.hpp>
|
|
#include <engine/platform/graphics/opengl/framebuffers.hpp>
|
|
|
|
#ifdef LIGHT_PLATFORM_WINDOWS
|
|
#include <engine/platform/graphics/directx/framebuffer.hpp>
|
|
#include <engine/platform/graphics/directx/sharedcontext.hpp>
|
|
#endif
|
|
|
|
#include <engine/graphics/graphics_context.hpp>
|
|
|
|
namespace Light {
|
|
|
|
auto Framebuffer::create(
|
|
const FramebufferSpecification &specification,
|
|
Ref<SharedContext> sharedContext
|
|
) -> Ref<Framebuffer>
|
|
{
|
|
switch (GraphicsContext::get_graphics_api())
|
|
{
|
|
case GraphicsAPI::OpenGL: return create_ref<glFramebuffer>(specification);
|
|
|
|
case GraphicsAPI::DirectX:
|
|
lt_win(return create_ref<dxFramebuffer>(
|
|
specification,
|
|
std::static_pointer_cast<dxSharedContext>(sharedContext)
|
|
);)
|
|
|
|
default
|
|
: lt_assert(
|
|
false,
|
|
"Invalid/unsupported 'GraphicsAPI' {}",
|
|
static_cast<uint32_t>(GraphicsContext::get_graphics_api())
|
|
);
|
|
return nullptr;
|
|
}
|
|
}
|
|
|
|
} // namespace Light
|