blob: dd89d8a21e8b5b263298574a63e7c813a867bffd (
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
|
// debug-transient-heap.h
#pragma once
#include "debug-base.h"
namespace gfx
{
using namespace Slang;
namespace debug
{
class DebugTransientResourceHeap : public DebugObject<ITransientResourceHeap>
{
public:
SLANG_COM_OBJECT_IUNKNOWN_ALL;
public:
ITransientResourceHeap* getInterface(const Slang::Guid& guid);
virtual SLANG_NO_THROW Result SLANG_MCALL synchronizeAndReset() override;
virtual SLANG_NO_THROW Result SLANG_MCALL finish() override;
virtual SLANG_NO_THROW Result SLANG_MCALL
createCommandBuffer(ICommandBuffer** outCommandBuffer) override;
};
} // namespace debug
} // namespace gfx
|