summaryrefslogtreecommitdiffstats
path: root/tools/gfx/d3d11/d3d11-sampler.h
blob: ae094d2829c3cf5fd5518d1c14a5ef7893326fe1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// d3d11-sampler.h
#pragma once

#include "d3d11-base.h"

namespace gfx
{

using namespace Slang;

namespace d3d11
{

class SamplerStateImpl : public SamplerStateBase
{
public:
    ComPtr<ID3D11SamplerState> m_sampler;
};

} // namespace d3d11
} // namespace gfx