Revision 1a486813ef0bc7f7a2eb6eaeec2921fd71a2bd05 authored by Sai Praveen Bangaru on 18 January 2023, 01:21:01 UTC, committed by GitHub on 18 January 2023, 01:21:01 UTC
1 parent 2c43749
Raw File
simple-render-pass-layout.cpp
#include "simple-render-pass-layout.h"

#include "renderer-shared.h"

namespace gfx
{

IRenderPassLayout* SimpleRenderPassLayout::getInterface(const Slang::Guid& guid)
{
    if (guid == GfxGUID::IID_ISlangUnknown || guid == GfxGUID::IID_IRenderPassLayout)
        return static_cast<IRenderPassLayout*>(this);
    return nullptr;
}

void SimpleRenderPassLayout::init(const IRenderPassLayout::Desc& desc)
{
    m_renderTargetAccesses.setCount(desc.renderTargetCount);
    for (GfxIndex i = 0; i < desc.renderTargetCount; i++)
        m_renderTargetAccesses[i] = desc.renderTargetAccess[i];
    m_hasDepthStencil = (desc.depthStencilAccess != nullptr);
    if (m_hasDepthStencil)
        m_depthStencilAccess = *desc.depthStencilAccess;
}

} // namespace gfx
back to top