| 45 | } |
| 46 | |
| 47 | struct SamplerKey |
| 48 | { |
| 49 | SamplerKey() = default; |
| 50 | SamplerKey(TextureFilter filter, TextureWrapping wrapSMode, TextureWrapping wrapTMode); |
| 51 | void Set(TextureFilter filter, TextureWrapping wrapSMode, TextureWrapping wrapTMode); |
| 52 | TextureFilter GetTextureFilter() const; |
| 53 | TextureWrapping GetWrapSMode() const; |
| 54 | TextureWrapping GetWrapTMode() const; |
| 55 | bool operator<(SamplerKey const & rhs) const; |
| 56 | |
| 57 | uint32_t m_sampler = 0; |
| 58 | }; |
| 59 | |
| 60 | class DebugName |
| 61 | { |