yum-mirror/slang

Making it easier to work with shaders

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

Ellie Hermaszewskaformatf65d756bf

master
446 B24 linesraw
1// debug-sampler-state.h
2#pragma once
3#include "debug-base.h"
4
5namespace gfx
6{
7using namespace Slang;
8
9namespace debug
10{
11
12class DebugSamplerState : public DebugObject<ISamplerState>
13{
14public:
15    SLANG_COM_OBJECT_IUNKNOWN_ALL;
16
17public:
18    ISamplerState* getInterface(const Slang::Guid& guid);
19    virtual SLANG_NO_THROW Result SLANG_MCALL
20    getNativeHandle(InteropHandle* outNativeHandle) override;
21};
22
23} // namespace debug
24} // namespace gfx