• Home
  • History
  • Annotate
  • Raw
  • Download

Lines Matching refs:hostMemory

147 	char *hostMemory = reinterpret_cast<char *>(mem);  in RenderPass()  local
167 …passDepthStencilResolves = reinterpret_cast<VkSubpassDescriptionDepthStencilResolve *>(hostMemory); in RenderPass()
168 hostMemory += subpassCount * sizeof(VkSubpassDescriptionDepthStencilResolve); in RenderPass()
179 VkAttachmentReference2 *reference = reinterpret_cast<VkAttachmentReference2 *>(hostMemory); in RenderPass()
180 hostMemory += sizeof(VkAttachmentReference2); in RenderPass()
209 char *hostMemory = reinterpret_cast<char *>(*mem); in init() local
215 subpasses = reinterpret_cast<VkSubpassDescription *>(hostMemory); in init()
217 hostMemory += subpassesSize; in init()
218 uint32_t *masks = reinterpret_cast<uint32_t *>(hostMemory); in init()
219 hostMemory += subpassCount * sizeof(uint32_t); in init()
224 attachments = reinterpret_cast<VkAttachmentDescription *>(hostMemory); in init()
226 hostMemory += attachmentSize; in init()
229 attachmentFirstUse = reinterpret_cast<int *>(hostMemory); in init()
230 hostMemory += firstUseSize; in init()
232 attachmentViewMasks = reinterpret_cast<uint32_t *>(hostMemory); in init()
233 hostMemory += pCreateInfo->attachmentCount * sizeof(uint32_t); in init()
290 subpasses[i].pInputAttachments = reinterpret_cast<VkAttachmentReference *>(hostMemory); in init()
293 hostMemory += inputAttachmentsSize; in init()
305 subpasses[i].pColorAttachments = reinterpret_cast<VkAttachmentReference *>(hostMemory); in init()
308 hostMemory += colorAttachmentsSize; in init()
312 subpasses[i].pResolveAttachments = reinterpret_cast<VkAttachmentReference *>(hostMemory); in init()
315 hostMemory += colorAttachmentsSize; in init()
330 subpasses[i].pDepthStencilAttachment = reinterpret_cast<VkAttachmentReference *>(hostMemory); in init()
333 hostMemory += sizeof(VkAttachmentReference); in init()
342 subpasses[i].pPreserveAttachments = reinterpret_cast<uint32_t *>(hostMemory); in init()
347 hostMemory += preserveAttachmentSize; in init()
359 dependencies = reinterpret_cast<VkSubpassDependency *>(hostMemory); in init()
361 hostMemory += dependencyCount * sizeof(VkSubpassDependency); in init()
363 *mem = hostMemory; in init()