yum-mirror/slang

Making it easier to work with shaders

git clone https://git.yummers.dev/yum-mirror/slang

lucy96chenSplit debug-layer into smaller files (#2344)12a846e8f

master
358 B21 linesraw
1// debug-sampler-state.cpp
2#include "debug-sampler-state.h"
3
4#include "debug-helper-functions.h"
5
6namespace gfx
7{
8using namespace Slang;
9
10namespace debug
11{
12
13Result DebugSamplerState::getNativeHandle(InteropHandle* outNativeHandle)
14{
15    SLANG_GFX_API_FUNC;
16
17    return baseObject->getNativeHandle(outNativeHandle);
18}
19
20} // namespace debug
21} // namespace gfx