Flutter Engine
The Flutter Engine
VkTestMemoryAllocator.h
Go to the documentation of this file.
1/*
2 * Copyright 2024 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 VkTestMemoryAllocator_DEFINED
9#define VkTestMemoryAllocator_DEFINED
10
11#include <vk_mem_alloc.h>
13
14namespace skgpu {
15class VulkanExtensions;
16struct VulkanInterface;
17} // namespace skgpu
18
19namespace sk_gpu_test {
20
21// A test-only Vulkan memory allocator. Based on
22// https://skia.googlesource.com/skia/+/c3fbd20fbc7d3662dd31a0e4139226d2951d1ae4/src/gpu/vk/VulkanAMDMemoryAllocator.h.
24public:
26 VkPhysicalDevice physicalDevice,
27 VkDevice device,
28 uint32_t physicalDeviceVersion,
30 const skgpu::VulkanInterface* interface);
31
32 ~VkTestMemoryAllocator() override;
33
35 uint32_t allocationPropertyFlags,
37
40 uint32_t allocationPropertyFlags,
42
43 void freeMemory(const skgpu::VulkanBackendMemory&) override;
44
46
47 VkResult mapMemory(const skgpu::VulkanBackendMemory&, void** data) override;
48 void unmapMemory(const skgpu::VulkanBackendMemory&) override;
49
52 VkDeviceSize size) override;
55 VkDeviceSize size) override;
56
57 std::pair<uint64_t, uint64_t> totalAllocatedAndUsedMemory() const override;
58
59private:
60 VkTestMemoryAllocator(VmaAllocator allocator);
61
62 VmaAllocator fAllocator;
63};
64
65} // namespace sk_gpu_test
66
67#endif // VkTestMemoryAllocator_DEFINED
void unmapMemory(const skgpu::VulkanBackendMemory &) override
VkResult invalidateMemory(const skgpu::VulkanBackendMemory &, VkDeviceSize offset, VkDeviceSize size) override
VkResult flushMemory(const skgpu::VulkanBackendMemory &, VkDeviceSize offset, VkDeviceSize size) override
static sk_sp< VulkanMemoryAllocator > Make(VkInstance instance, VkPhysicalDevice physicalDevice, VkDevice device, uint32_t physicalDeviceVersion, const skgpu::VulkanExtensions *extensions, const skgpu::VulkanInterface *interface)
VkResult allocateBufferMemory(VkBuffer buffer, BufferUsage usage, uint32_t allocationPropertyFlags, skgpu::VulkanBackendMemory *) override
std::pair< uint64_t, uint64_t > totalAllocatedAndUsedMemory() const override
void getAllocInfo(const skgpu::VulkanBackendMemory &, skgpu::VulkanAlloc *) const override
VkResult mapMemory(const skgpu::VulkanBackendMemory &, void **data) override
VkResult allocateImageMemory(VkImage image, uint32_t allocationPropertyFlags, skgpu::VulkanBackendMemory *) override
void freeMemory(const skgpu::VulkanBackendMemory &) override
VkDevice device
Definition: main.cc:53
VkInstance instance
Definition: main.cc:48
sk_sp< const SkImage > image
Definition: SkRecords.h:269
DEF_SWITCHES_START aot vmservice shared library Name of the *so containing AOT compiled Dart assets for launching the service isolate vm snapshot The VM snapshot data that will be memory mapped as read only SnapshotAssetPath must be present isolate snapshot The isolate snapshot data that will be memory mapped as read only SnapshotAssetPath must be present cache dir Path to the cache directory This is different from the persistent_cache_path in embedder which is used for Skia shader cache icu native lib Path to the library file that exports the ICU data vm service The hostname IP address on which the Dart VM Service should be served If not defaults to or::depending on whether ipv6 is specified vm service A custom Dart VM Service port The default is to pick a randomly available open port disable vm Disable the Dart VM Service The Dart VM Service is never available in release mode disable vm service Disable mDNS Dart VM Service publication Bind to the IPv6 localhost address for the Dart VM Service Ignored if vm service host is set endless trace buffer
Definition: switches.h:126
it will be possible to load the file into Perfetto s trace viewer disable asset Prevents usage of any non test fonts unless they were explicitly Loaded via prefetched default font Indicates whether the embedding started a prefetch of the default font manager before creating the engine run In non interactive keep the shell running after the Dart script has completed enable serial On low power devices with low core running concurrent GC tasks on threads can cause them to contend with the UI thread which could potentially lead to jank This option turns off all concurrent GC activities domain network JSON encoded network policy per domain This overrides the DisallowInsecureConnections switch Embedder can specify whether to allow or disallow insecure connections at a domain level old gen heap size
Definition: switches.h:259
Definition: GpuTools.h:21
intptr_t VulkanBackendMemory
Definition: VulkanTypes.h:32
static void usage(char *argv0)
SeparatedVector2 offset
std::shared_ptr< const fml::Mapping > data
Definition: texture_gles.cc:63
uint64_t VkDeviceSize
Definition: vulkan_core.h:96
VkResult
Definition: vulkan_core.h:140