summaryrefslogtreecommitdiffstats
path: root/tools/gfx/debug-layer/debug-pipeline-state.cpp
blob: 8dde0403e75fe2c20b11bb52e1fc09d2bffff5ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// debug-pipeline-state.cpp
#include "debug-pipeline-state.h"

#include "debug-helper-functions.h"

namespace gfx
{
using namespace Slang;

namespace debug
{

Result DebugPipelineState::getNativeHandle(InteropHandle* outHandle)
{
    SLANG_GFX_API_FUNC;
    return baseObject->getNativeHandle(outHandle);
}

} // namespace debug
} // namespace gfx