| // 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. |
| |
| #ifndef FLUTTER_IMPELLER_CORE_ALLOCATOR_H_ |
| #define FLUTTER_IMPELLER_CORE_ALLOCATOR_H_ |
| |
| #include "flutter/fml/mapping.h" |
| #include "impeller/core/device_buffer_descriptor.h" |
| #include "impeller/core/texture.h" |
| #include "impeller/core/texture_descriptor.h" |
| #include "impeller/geometry/size.h" |
| |
| namespace impeller { |
| |
| class Context; |
| class DeviceBuffer; |
| |
| //------------------------------------------------------------------------------ |
| /// @brief An object that allocates device memory. |
| /// |
| class Allocator { |
| public: |
| virtual ~Allocator(); |
| |
| bool IsValid() const; |
| |
| std::shared_ptr<DeviceBuffer> CreateBuffer( |
| const DeviceBufferDescriptor& desc); |
| |
| std::shared_ptr<Texture> CreateTexture(const TextureDescriptor& desc); |
| |
| //------------------------------------------------------------------------------ |
| /// @brief Minimum value for `row_bytes` on a Texture. The row |
| /// bytes parameter of that method must be aligned to this value. |
| /// |
| virtual uint16_t MinimumBytesPerRow(PixelFormat format) const; |
| |
| std::shared_ptr<DeviceBuffer> CreateBufferWithCopy(const uint8_t* buffer, |
| size_t length); |
| |
| std::shared_ptr<DeviceBuffer> CreateBufferWithCopy( |
| const fml::Mapping& mapping); |
| |
| virtual ISize GetMaxTextureSizeSupported() const = 0; |
| |
| /// @brief Write debug memory usage information to the dart timeline in debug |
| /// and profile modes. |
| /// |
| /// This is only supported on the Vulkan backend. |
| virtual void DebugTraceMemoryStatistics() const {}; |
| |
| protected: |
| Allocator(); |
| |
| virtual std::shared_ptr<DeviceBuffer> OnCreateBuffer( |
| const DeviceBufferDescriptor& desc) = 0; |
| |
| virtual std::shared_ptr<Texture> OnCreateTexture( |
| const TextureDescriptor& desc) = 0; |
| |
| private: |
| Allocator(const Allocator&) = delete; |
| |
| Allocator& operator=(const Allocator&) = delete; |
| }; |
| |
| } // namespace impeller |
| |
| #endif // FLUTTER_IMPELLER_CORE_ALLOCATOR_H_ |