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

#include "debug-helper-functions.h"

namespace gfx
{
using namespace Slang;

namespace debug
{

Result DebugSamplerState::getNativeHandle(InteropHandle* outNativeHandle)
{
    SLANG_GFX_API_FUNC;

    return baseObject->getNativeHandle(outNativeHandle);
}

} // namespace debug
} // namespace gfx