Lines Matching refs:pSubmit
208 uint32_t getWaitSemaphoreCount(const VkSubmitInfo& pSubmit) { return pSubmit.waitSemaphoreCount; } in GOLDFISH_VK_LIST_TRIVIAL_HANDLE_TYPES()
210 uint32_t getWaitSemaphoreCount(const VkSubmitInfo2& pSubmit) { in getWaitSemaphoreCount() argument
211 return pSubmit.waitSemaphoreInfoCount; in getWaitSemaphoreCount()
214 uint32_t getCommandBufferCount(const VkSubmitInfo& pSubmit) { return pSubmit.commandBufferCount; } in getCommandBufferCount() argument
216 uint32_t getCommandBufferCount(const VkSubmitInfo2& pSubmit) { in getCommandBufferCount() argument
217 return pSubmit.commandBufferInfoCount; in getCommandBufferCount()
220 uint32_t getSignalSemaphoreCount(const VkSubmitInfo& pSubmit) { in getSignalSemaphoreCount() argument
221 return pSubmit.signalSemaphoreCount; in getSignalSemaphoreCount()
224 uint32_t getSignalSemaphoreCount(const VkSubmitInfo2& pSubmit) { in getSignalSemaphoreCount() argument
225 return pSubmit.signalSemaphoreInfoCount; in getSignalSemaphoreCount()
228 VkSemaphore getWaitSemaphore(const VkSubmitInfo& pSubmit, int i) { in getWaitSemaphore() argument
229 return pSubmit.pWaitSemaphores[i]; in getWaitSemaphore()
232 VkSemaphore getWaitSemaphore(const VkSubmitInfo2& pSubmit, int i) { in getWaitSemaphore() argument
233 return pSubmit.pWaitSemaphoreInfos[i].semaphore; in getWaitSemaphore()
236 VkSemaphore getSignalSemaphore(const VkSubmitInfo& pSubmit, int i) { in getSignalSemaphore() argument
237 return pSubmit.pSignalSemaphores[i]; in getSignalSemaphore()
240 VkSemaphore getSignalSemaphore(const VkSubmitInfo2& pSubmit, int i) { in getSignalSemaphore() argument
241 return pSubmit.pSignalSemaphoreInfos[i].semaphore; in getSignalSemaphore()
244 VkCommandBuffer getCommandBuffer(const VkSubmitInfo& pSubmit, int i) { in getCommandBuffer() argument
245 return pSubmit.pCommandBuffers[i]; in getCommandBuffer()
248 VkCommandBuffer getCommandBuffer(const VkSubmitInfo2& pSubmit, int i) { in getCommandBuffer() argument
249 return pSubmit.pCommandBufferInfos[i].commandBuffer; in getCommandBuffer()