blob: 82e53a6c682fb8e54a7992265bbeb175c9814485 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// d3d12-render-pass.h
#pragma once
#include "d3d12-base.h"
#include "d3d12-framebuffer.h"
namespace gfx
{
namespace d3d12
{
using namespace Slang;
class RenderPassLayoutImpl : public SimpleRenderPassLayout
{
public:
RefPtr<FramebufferLayoutImpl> m_framebufferLayout;
void init(const IRenderPassLayout::Desc& desc);
};
} // namespace d3d12
} // namespace gfx
|