light/modules/renderer/private/dx/framebuffers.cpp
light7734 cd886aa8c9
Some checks reported errors
continuous-integration/drone/push Build was killed
refactor: flatten directory structure
2025-07-20 04:46:15 +03:30

113 lines
3.3 KiB
C++

#include <renderer/dx/framebuffers.hpp>
#include <renderer/dx/shared_context.hpp>
namespace lt {
dxFramebuffer::dxFramebuffer(
const FramebufferSpecification &specification,
Ref<dxSharedContext> sharedContext
)
: m_context(sharedContext)
, m_specification(specification)
, m_render_target_view(nullptr)
, m_color_attachment(nullptr)
, m_depth_stencil_attachment(nullptr)
, m_shader_resource_view(nullptr)
, m_depth_stencil_view(nullptr)
{
auto hr = HRESULT {};
auto t2dDesc = D3D11_TEXTURE2D_DESC {};
t2dDesc.Width = specification.width;
t2dDesc.Height = specification.height;
t2dDesc.MipLevels = 1;
t2dDesc.ArraySize = 1;
t2dDesc.Format = DXGI_FORMAT_R8G8B8A8_UNORM;
t2dDesc.SampleDesc.Count = 1u;
t2dDesc.SampleDesc.Quality = 0u;
t2dDesc.Usage = D3D11_USAGE_DEFAULT;
t2dDesc.BindFlags = D3D11_BIND_RENDER_TARGET | D3D11_BIND_SHADER_RESOURCE;
t2dDesc.CPUAccessFlags = NULL;
t2dDesc.MiscFlags = NULL;
dxc(m_context->get_device()->CreateTexture2D(&t2dDesc, nullptr, &m_color_attachment));
auto srvDesc = D3D11_SHADER_RESOURCE_VIEW_DESC {};
srvDesc.Format = t2dDesc.Format;
srvDesc.ViewDimension = D3D11_SRV_DIMENSION_TEXTURE2D;
srvDesc.Texture2D.MipLevels = 1;
srvDesc.Texture2D.MostDetailedMip = 0;
dxc(m_context->get_device()->CreateShaderResourceView(
m_color_attachment.Get(),
&srvDesc,
&m_shader_resource_view
));
auto rtvDesc = D3D11_RENDER_TARGET_VIEW_DESC {};
rtvDesc.Format = t2dDesc.Format;
rtvDesc.ViewDimension = D3D11_RTV_DIMENSION_TEXTURE2D;
rtvDesc.Texture2D.MipSlice = 0u;
dxc(m_context->get_device()
->CreateRenderTargetView(m_color_attachment.Get(), &rtvDesc, &m_render_target_view));
}
void dxFramebuffer::bind_as_target(const glm::vec4 &clearColor)
{
FLOAT color[] = {
clearColor.r,
clearColor.g,
clearColor.b,
clearColor.a,
};
m_context->get_device_context()
->OMSetRenderTargets(1u, m_render_target_view.GetAddressOf(), nullptr);
m_context->get_device_context()->ClearRenderTargetView(m_render_target_view.Get(), color);
auto viewport = D3D11_VIEWPORT {};
viewport.TopLeftX = 0;
viewport.TopLeftY = 0;
viewport.Width = m_specification.width;
viewport.Height = m_specification.height;
viewport.MinDepth = 0.0f;
viewport.MaxDepth = 1.0f;
// set viewport
m_context->get_device_context()->RSSetViewports(1u, &viewport);
}
void dxFramebuffer::bind_as_resource()
{
log_err("NO_IMPLEMENT");
}
void dxFramebuffer::resize(const glm::uvec2 &size)
{
m_specification.width = std::clamp(size.x, 1u, 16384u);
m_specification.height = std::clamp(size.y, 1u, 16384u);
auto textureDesc = D3D11_TEXTURE2D_DESC {};
auto rtvDesc = D3D11_RENDER_TARGET_VIEW_DESC {};
auto srvDesc = D3D11_SHADER_RESOURCE_VIEW_DESC {};
m_color_attachment->GetDesc(&textureDesc);
m_render_target_view->GetDesc(&rtvDesc);
m_shader_resource_view->GetDesc(&srvDesc);
textureDesc.Width = m_specification.width;
textureDesc.Height = m_specification.height;
auto hr = HRESULT {};
dxc(m_context->get_device()->CreateTexture2D(&textureDesc, nullptr, &m_color_attachment));
dxc(m_context->get_device()
->CreateRenderTargetView(m_color_attachment.Get(), &rtvDesc, &m_render_target_view));
dxc(m_context->get_device()->CreateShaderResourceView(
m_color_attachment.Get(),
&srvDesc,
&m_shader_resource_view
));
}
} // namespace lt