yum-mirror/slang
Making it easier to work with shaders
git clone https://git.yummers.dev/yum-mirror/slang
12a846e8f
master
1// debug-render-pass.h 2#pragma once 3#include "debug-base.h" 4 5namespace gfx 6{ 7using namespace Slang ; 8 9namespace debug 10{ 11 12class DebugRenderPassLayout :public DebugObject < IRenderPassLayout > 13{ 14public : 15SLANG_COM_OBJECT_IUNKNOWN_ALL ; 16 17public : 18IRenderPassLayout * getInterface (const Slang ::Guid & guid ); 19}; 20 21}// namespace debug 22}// namespace gfx