Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
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()
static const uint8_t buffer[]
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
VkStructureType sType
const VkDescriptorImageInfo * pImageInfo
const VkDescriptorBufferInfo * pBufferInfo
VkDescriptorSet dstSet
VkDescriptorType descriptorType
@ VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER
@ VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET