Flutter Engine
The Flutter Engine
Macros | Functions
GrVkBuffer.cpp File Reference
#include "src/gpu/ganesh/vk/GrVkBuffer.h"
#include "include/gpu/GrDirectContext.h"
#include "include/private/base/SkDebug.h"
#include "src/gpu/ganesh/GrDirectContextPriv.h"
#include "src/gpu/ganesh/GrResourceProvider.h"
#include "src/gpu/ganesh/vk/GrVkDescriptorSet.h"
#include "src/gpu/ganesh/vk/GrVkGpu.h"
#include "src/gpu/ganesh/vk/GrVkUtil.h"
#include "src/gpu/vk/VulkanMemory.h"

Go to the source code of this file.

Macros

#define VK_CALL(GPU, X)   GR_VK_CALL(GPU->vkInterface(), X)
 

Functions

static const GrVkDescriptorSetmake_uniform_desc_set (GrVkGpu *gpu, VkBuffer buffer, size_t size)
 

Macro Definition Documentation

◆ VK_CALL

#define VK_CALL (   GPU,
  X 
)    GR_VK_CALL(GPU->vkInterface(), X)

Definition at line 19 of file GrVkBuffer.cpp.

Function Documentation

◆ make_uniform_desc_set()

static const GrVkDescriptorSet * make_uniform_desc_set ( GrVkGpu gpu,
VkBuffer  buffer,
size_t  size 
)
static

Definition at line 39 of file GrVkBuffer.cpp.

39 {
40 const GrVkDescriptorSet* descriptorSet = gpu->resourceProvider().getUniformDescriptorSet();
41 if (!descriptorSet) {
42 return nullptr;
43 }
44
45 VkDescriptorBufferInfo bufferInfo;
46 memset(&bufferInfo, 0, sizeof(VkDescriptorBufferInfo));
47 bufferInfo.buffer = buffer;
48 bufferInfo.offset = 0;
49 bufferInfo.range = size;
50
51 VkWriteDescriptorSet descriptorWrite;
52 memset(&descriptorWrite, 0, sizeof(VkWriteDescriptorSet));
54 descriptorWrite.pNext = nullptr;
55 descriptorWrite.dstSet = *descriptorSet->descriptorSet();
57 descriptorWrite.dstArrayElement = 0;
58 descriptorWrite.descriptorCount = 1;
60 descriptorWrite.pImageInfo = nullptr;
61 descriptorWrite.pBufferInfo = &bufferInfo;
62 descriptorWrite.pTexelBufferView = nullptr;
63
65 UpdateDescriptorSets(gpu->device(), 1, &descriptorWrite, 0, nullptr));
66 return descriptorSet;
67}
#define GR_VK_CALL(IFACE, X)
Definition: GrVkUtil.h:24
const VkDescriptorSet * descriptorSet() const
const skgpu::VulkanInterface * vkInterface() const
Definition: GrVkGpu.h:60
VkDevice device() const
Definition: GrVkGpu.h:71
GrVkResourceProvider & resourceProvider()
Definition: GrVkGpu.h:83
const GrVkDescriptorSet * getUniformDescriptorSet()
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
const VkBufferView * pTexelBufferView
Definition: vulkan_core.h:3797
VkStructureType sType
Definition: vulkan_core.h:3788
const VkDescriptorImageInfo * pImageInfo
Definition: vulkan_core.h:3795
const VkDescriptorBufferInfo * pBufferInfo
Definition: vulkan_core.h:3796
VkDescriptorSet dstSet
Definition: vulkan_core.h:3790
const void * pNext
Definition: vulkan_core.h:3789
VkDescriptorType descriptorType
Definition: vulkan_core.h:3794
@ VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER
Definition: vulkan_core.h:2131
@ VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET
Definition: vulkan_core.h:237