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