blob: 7cc1a581f6cf1ad86054009e7e944896bf347564 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
// vk-render-pass.h
#pragma once
#include "vk-base.h"
#include "vk-device.h"
namespace gfx
{
using namespace Slang;
namespace vk
{
class RenderPassLayoutImpl
: public IRenderPassLayout
, public ComObject
{
public:
SLANG_COM_OBJECT_IUNKNOWN_ALL
IRenderPassLayout* getInterface(const Guid& guid);
public:
VkRenderPass m_renderPass;
RefPtr<DeviceImpl> m_renderer;
~RenderPassLayoutImpl();
Result init(DeviceImpl* renderer, const IRenderPassLayout::Desc& desc);
};
} // namespace vk
} // namespace gfx
|