| // Copyright 2013 The Flutter Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #pragma once |
| |
| #include <string_view> |
| |
| #include "flutter/fml/macros.h" |
| #include "flutter/fml/mapping.h" |
| #include "impeller/geometry/size.h" |
| #include "impeller/renderer/formats.h" |
| #include "impeller/renderer/texture_descriptor.h" |
| |
| namespace impeller { |
| |
| class Texture { |
| public: |
| virtual ~Texture(); |
| |
| virtual void SetLabel(std::string_view label) = 0; |
| |
| [[nodiscard]] bool SetContents(const uint8_t* contents, |
| size_t length, |
| size_t slice = 0); |
| |
| [[nodiscard]] bool SetContents(std::shared_ptr<const fml::Mapping> mapping, |
| size_t slice = 0); |
| |
| virtual bool IsValid() const = 0; |
| |
| virtual ISize GetSize() const = 0; |
| |
| size_t GetMipCount() const; |
| |
| const TextureDescriptor& GetTextureDescriptor() const; |
| |
| void SetIntent(TextureIntent intent); |
| |
| TextureIntent GetIntent() const; |
| |
| virtual Scalar GetYCoordScale() const; |
| |
| protected: |
| explicit Texture(TextureDescriptor desc); |
| |
| [[nodiscard]] virtual bool OnSetContents(const uint8_t* contents, |
| size_t length, |
| size_t slice) = 0; |
| |
| [[nodiscard]] virtual bool OnSetContents( |
| std::shared_ptr<const fml::Mapping> mapping, |
| size_t slice) = 0; |
| |
| private: |
| TextureIntent intent_ = TextureIntent::kRenderToTexture; |
| const TextureDescriptor desc_; |
| |
| bool IsSliceValid(size_t slice) const; |
| |
| FML_DISALLOW_COPY_AND_ASSIGN(Texture); |
| }; |
| |
| } // namespace impeller |