yum-mirror/slang
Making it easier to work with shaders
git clone https://git.yummers.dev/yum-mirror/slang
12a846e8f
master
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{ 15SLANG_GFX_API_FUNC ; 16 17return baseObject -> getNativeHandle (outNativeHandle ); 18} 19 20}// namespace debug 21}// namespace gfx