• Home
  • Raw
  • Download

Lines Matching refs:device_dispatch_table

61     VkLayerDispatchTable *device_dispatch_table;  member
69 …: report_data(nullptr), device_dispatch_table(nullptr), instance_dispatch_table(nullptr), physical… in layer_data()
190 my_device_data->device_dispatch_table = new VkLayerDispatchTable; in CreateDevice()
191 …layer_init_device_dispatch_table(*pDevice, my_device_data->device_dispatch_table, fpGetDeviceProcA… in CreateDevice()
205 my_data->device_dispatch_table->DestroyDevice(device, pAllocator); in DestroyDevice()
206 delete my_data->device_dispatch_table; in DestroyDevice()
385 … result = device_data->device_dispatch_table->CreateImage(device, pCreateInfo, pAllocator, pImage); in CreateImage()
399 device_data->device_dispatch_table->DestroyImage(device, image, pAllocator); in DestroyImage()
462 …VkResult result = my_data->device_dispatch_table->CreateRenderPass(device, pCreateInfo, pAllocator… in CreateRenderPass()
610 …VkResult result = device_data->device_dispatch_table->CreateImageView(device, pCreateInfo, pAlloca… in CreateImageView()
658 …device_data->device_dispatch_table->CmdClearColorImage(commandBuffer, image, imageLayout, pColor, … in CmdClearColorImage()
688 …device_data->device_dispatch_table->CmdClearDepthStencilImage(commandBuffer, image, imageLayout, p… in CmdClearDepthStencilImage()
951 …device_data->device_dispatch_table->CmdCopyImage(commandBuffer, srcImage, srcImageLayout, dstImage… in CmdCopyImage()
987 …device_data->device_dispatch_table->CmdClearAttachments(commandBuffer, attachmentCount, pAttachmen… in CmdClearAttachments()
1069 …device_data->device_dispatch_table->CmdCopyImageToBuffer(commandBuffer, srcImage, srcImageLayout, … in CmdCopyImageToBuffer()
1104 …device_data->device_dispatch_table->CmdCopyBufferToImage(commandBuffer, srcBuffer, dstImage, dstIm… in CmdCopyBufferToImage()
1250 …device_data->device_dispatch_table->CmdBlitImage(commandBuffer, srcImage, srcImageLayout, dstImage… in CmdBlitImage()
1279 …device_data->device_dispatch_table->CmdPipelineBarrier(commandBuffer, srcStageMask, dstStageMask, … in CmdPipelineBarrier()
1350 …device_data->device_dispatch_table->CmdResolveImage(commandBuffer, srcImage, srcImageLayout, dstIm… in CmdResolveImage()
1387 …device_data->device_dispatch_table->GetImageSubresourceLayout(device, image, pSubresource, pLayout… in GetImageSubresourceLayout()
1444 VkLayerDispatchTable *pTable = my_data->device_dispatch_table; in GetDeviceProcAddr()