diff options
Diffstat (limited to 'tools/gfx/debug-layer/debug-sampler-state.cpp')
| -rw-r--r-- | tools/gfx/debug-layer/debug-sampler-state.cpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tools/gfx/debug-layer/debug-sampler-state.cpp b/tools/gfx/debug-layer/debug-sampler-state.cpp new file mode 100644 index 000000000..892abc665 --- /dev/null +++ b/tools/gfx/debug-layer/debug-sampler-state.cpp @@ -0,0 +1,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 |
