Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Sampler.h
Go to the documentation of this file.
1/*
2 * Copyright 2022 Google LLC
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef skgpu_graphite_Sampler_DEFINED
9#define skgpu_graphite_Sampler_DEFINED
10
12
13namespace skgpu::graphite {
14
15class Sampler : public Resource {
16public:
17 ~Sampler() override;
18
19 const char* getResourceType() const override { return "Sampler"; }
20
21protected:
22 Sampler(const SharedContext*);
23
24private:
25};
26
27} // namepsace skgpu::graphite
28
29#endif // skgpu_graphite_Sampler_DEFINED
const char * getResourceType() const override
Definition Sampler.h:19