Flutter Impeller
sampler_gles.h
Go to the documentation of this file.
1 // Copyright 2013 The Flutter Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef FLUTTER_IMPELLER_RENDERER_BACKEND_GLES_SAMPLER_GLES_H_
6 #define FLUTTER_IMPELLER_RENDERER_BACKEND_GLES_SAMPLER_GLES_H_
7 
8 #include "flutter/fml/macros.h"
10 #include "impeller/core/sampler.h"
11 
12 namespace impeller {
13 
14 class TextureGLES;
15 class SamplerLibraryGLES;
16 class ProcTableGLES;
17 
18 class SamplerGLES final : public Sampler,
19  public BackendCast<SamplerGLES, Sampler> {
20  public:
21  ~SamplerGLES();
22 
23  bool ConfigureBoundTexture(const TextureGLES& texture,
24  const ProcTableGLES& gl) const;
25 
26  private:
27  friend class SamplerLibraryGLES;
28 
29  explicit SamplerGLES(SamplerDescriptor desc);
30 
31  SamplerGLES(const SamplerGLES&) = delete;
32 
33  SamplerGLES& operator=(const SamplerGLES&) = delete;
34 };
35 
36 } // namespace impeller
37 
38 #endif // FLUTTER_IMPELLER_RENDERER_BACKEND_GLES_SAMPLER_GLES_H_
impeller::SamplerGLES
Definition: sampler_gles.h:18
impeller::SamplerGLES::~SamplerGLES
~SamplerGLES()
sampler.h
impeller::SamplerGLES::ConfigureBoundTexture
bool ConfigureBoundTexture(const TextureGLES &texture, const ProcTableGLES &gl) const
Definition: sampler_gles.cc:69
impeller::SamplerDescriptor
Definition: sampler_descriptor.h:15
impeller::Sampler
Definition: sampler.h:15
impeller::SamplerLibraryGLES
Definition: sampler_library_gles.h:14
backend_cast.h
impeller::ProcTableGLES
Definition: proc_table_gles.h:229
impeller::BackendCast
Definition: backend_cast.h:11
impeller::TextureGLES
Definition: texture_gles.h:15
impeller
Definition: aiks_blur_unittests.cc:20