• Home
  • Raw
  • Download

Lines Matching refs:VkResult

39 VKAPI_ATTR VkResult VKAPI_CALL vkCreateInstance(const VkInstanceCreateInfo* pCreateInfo, const VkAl…  in vkCreateInstance()
49 VkResult result = fpCreateInstance(pCreateInfo, pAllocator, pInstance); in vkCreateInstance()
87 VKAPI_ATTR VkResult VKAPI_CALL vkEnumeratePhysicalDevices(VkInstance instance, uint32_t* pPhysicalD… in vkEnumeratePhysicalDevices()
91VkResult result = inst->layer_disp.EnumeratePhysicalDevices(vk_inst, pPhysicalDeviceCount, pPhysic… in vkEnumeratePhysicalDevices()
135 VKAPI_ATTR VkResult VKAPI_CALL vkGetPhysicalDeviceImageFormatProperties(VkPhysicalDevice physicalDe… in vkGetPhysicalDeviceImageFormatProperties()
139VkResult result = phys_dev->inst->layer_disp.GetPhysicalDeviceImageFormatProperties(vk_phys_dev, f… in vkGetPhysicalDeviceImageFormatProperties()
164 VKAPI_ATTR VkResult VKAPI_CALL vkCreateDevice(VkPhysicalDevice physicalDevice, const VkDeviceCreate… in vkCreateDevice()
177 VkResult result = fpCreateDevice(vk_phys_dev, pCreateInfo, pAllocator, pDevice); in vkCreateDevice()
204 VKAPI_ATTR VkResult VKAPI_CALL vkEnumerateDeviceExtensionProperties(VkPhysicalDevice physicalDevice… in vkEnumerateDeviceExtensionProperties()
220 VKAPI_ATTR VkResult VKAPI_CALL vkQueueSubmit(VkQueue queue, uint32_t submitCount, const VkSubmitInf… in vkQueueSubmit()
222VkResult result = device_dispatch_table(queue)->QueueSubmit(queue, submitCount, pSubmits, fence); in vkQueueSubmit()
227 VKAPI_ATTR VkResult VKAPI_CALL vkQueueWaitIdle(VkQueue queue) in vkQueueWaitIdle()
229 VkResult result = device_dispatch_table(queue)->QueueWaitIdle(queue); in vkQueueWaitIdle()
234 VKAPI_ATTR VkResult VKAPI_CALL vkDeviceWaitIdle(VkDevice device) in vkDeviceWaitIdle()
236 VkResult result = device_dispatch_table(device)->DeviceWaitIdle(device); in vkDeviceWaitIdle()
241 VKAPI_ATTR VkResult VKAPI_CALL vkAllocateMemory(VkDevice device, const VkMemoryAllocateInfo* pAlloc… in vkAllocateMemory()
243VkResult result = device_dispatch_table(device)->AllocateMemory(device, pAllocateInfo, pAllocator,… in vkAllocateMemory()
254 VKAPI_ATTR VkResult VKAPI_CALL vkMapMemory(VkDevice device, VkDeviceMemory memory, VkDeviceSize off… in vkMapMemory()
256VkResult result = device_dispatch_table(device)->MapMemory(device, memory, offset, size, flags, pp… in vkMapMemory()
266 VKAPI_ATTR VkResult VKAPI_CALL vkFlushMappedMemoryRanges(VkDevice device, uint32_t memoryRangeCount… in vkFlushMappedMemoryRanges()
268VkResult result = device_dispatch_table(device)->FlushMappedMemoryRanges(device, memoryRangeCount,… in vkFlushMappedMemoryRanges()
274 VKAPI_ATTR VkResult VKAPI_CALL vkInvalidateMappedMemoryRanges(VkDevice device, uint32_t memoryRange… in vkInvalidateMappedMemoryRanges()
276VkResult result = device_dispatch_table(device)->InvalidateMappedMemoryRanges(device, memoryRangeC… in vkInvalidateMappedMemoryRanges()
287 VKAPI_ATTR VkResult VKAPI_CALL vkBindBufferMemory(VkDevice device, VkBuffer buffer, VkDeviceMemory … in vkBindBufferMemory()
289VkResult result = device_dispatch_table(device)->BindBufferMemory(device, buffer, memory, memoryOf… in vkBindBufferMemory()
294 VKAPI_ATTR VkResult VKAPI_CALL vkBindImageMemory(VkDevice device, VkImage image, VkDeviceMemory mem… in vkBindImageMemory()
296VkResult result = device_dispatch_table(device)->BindImageMemory(device, image, memory, memoryOffs… in vkBindImageMemory()
326 VKAPI_ATTR VkResult VKAPI_CALL vkQueueBindSparse(VkQueue queue, uint32_t bindInfoCount, const VkBin… in vkQueueBindSparse()
328VkResult result = device_dispatch_table(queue)->QueueBindSparse(queue, bindInfoCount, pBindInfo, f… in vkQueueBindSparse()
333 VKAPI_ATTR VkResult VKAPI_CALL vkCreateFence(VkDevice device, const VkFenceCreateInfo* pCreateInfo,… in vkCreateFence()
335VkResult result = device_dispatch_table(device)->CreateFence(device, pCreateInfo, pAllocator, pFen… in vkCreateFence()
346 VKAPI_ATTR VkResult VKAPI_CALL vkResetFences(VkDevice device, uint32_t fenceCount, const VkFence* p… in vkResetFences()
348 VkResult result = device_dispatch_table(device)->ResetFences(device, fenceCount, pFences); in vkResetFences()
352 VKAPI_ATTR VkResult VKAPI_CALL vkGetFenceStatus(VkDevice device, VkFence fence) in vkGetFenceStatus()
354 VkResult result = device_dispatch_table(device)->GetFenceStatus(device, fence); in vkGetFenceStatus()
359 VKAPI_ATTR VkResult VKAPI_CALL vkWaitForFences(VkDevice device, uint32_t fenceCount, const VkFence*… in vkWaitForFences()
361VkResult result = device_dispatch_table(device)->WaitForFences(device, fenceCount, pFences, waitAl… in vkWaitForFences()
366 VKAPI_ATTR VkResult VKAPI_CALL vkCreateSemaphore(VkDevice device, const VkSemaphoreCreateInfo* pCre… in vkCreateSemaphore()
368VkResult result = device_dispatch_table(device)->CreateSemaphore(device, pCreateInfo, pAllocator, … in vkCreateSemaphore()
379 VKAPI_ATTR VkResult VKAPI_CALL vkCreateEvent(VkDevice device, const VkEventCreateInfo* pCreateInfo,… in vkCreateEvent()
381VkResult result = device_dispatch_table(device)->CreateEvent(device, pCreateInfo, pAllocator, pEve… in vkCreateEvent()
392 VKAPI_ATTR VkResult VKAPI_CALL vkGetEventStatus(VkDevice device, VkEvent event) in vkGetEventStatus()
394 VkResult result = device_dispatch_table(device)->GetEventStatus(device, event); in vkGetEventStatus()
399 VKAPI_ATTR VkResult VKAPI_CALL vkSetEvent(VkDevice device, VkEvent event) in vkSetEvent()
401 VkResult result = device_dispatch_table(device)->SetEvent(device, event); in vkSetEvent()
406 VKAPI_ATTR VkResult VKAPI_CALL vkResetEvent(VkDevice device, VkEvent event) in vkResetEvent()
408 VkResult result = device_dispatch_table(device)->ResetEvent(device, event); in vkResetEvent()
413 VKAPI_ATTR VkResult VKAPI_CALL vkCreateQueryPool(VkDevice device, const VkQueryPoolCreateInfo* pCre… in vkCreateQueryPool()
415VkResult result = device_dispatch_table(device)->CreateQueryPool(device, pCreateInfo, pAllocator, … in vkCreateQueryPool()
425 VKAPI_ATTR VkResult VKAPI_CALL vkGetQueryPoolResults(VkDevice device, VkQueryPool queryPool, uint32… in vkGetQueryPoolResults()
427VkResult result = device_dispatch_table(device)->GetQueryPoolResults(device, queryPool, firstQuery… in vkGetQueryPoolResults()
432 VKAPI_ATTR VkResult VKAPI_CALL vkCreateBuffer(VkDevice device, const VkBufferCreateInfo* pCreateInf… in vkCreateBuffer()
434VkResult result = device_dispatch_table(device)->CreateBuffer(device, pCreateInfo, pAllocator, pBu… in vkCreateBuffer()
445 VKAPI_ATTR VkResult VKAPI_CALL vkCreateBufferView(VkDevice device, const VkBufferViewCreateInfo* pC… in vkCreateBufferView()
447VkResult result = device_dispatch_table(device)->CreateBufferView(device, pCreateInfo, pAllocator,… in vkCreateBufferView()
457 VKAPI_ATTR VkResult VKAPI_CALL vkCreateImage(VkDevice device, const VkImageCreateInfo* pCreateInfo,… in vkCreateImage()
459VkResult result = device_dispatch_table(device)->CreateImage(device, pCreateInfo, pAllocator, pIma… in vkCreateImage()
475 VKAPI_ATTR VkResult VKAPI_CALL vkCreateImageView(VkDevice device, const VkImageViewCreateInfo* pCre… in vkCreateImageView()
477VkResult result = device_dispatch_table(device)->CreateImageView(device, pCreateInfo, pAllocator, … in vkCreateImageView()
486 VKAPI_ATTR VkResult VKAPI_CALL vkCreateShaderModule(VkDevice device, const VkShaderModuleCreateInfo… in vkCreateShaderModule()
488VkResult result = device_dispatch_table(device)->CreateShaderModule(device, pCreateInfo, pAllocato… in vkCreateShaderModule()
499 VKAPI_ATTR VkResult VKAPI_CALL vkCreatePipelineCache(VkDevice device, const VkPipelineCacheCreateIn… in vkCreatePipelineCache()
501VkResult result = device_dispatch_table(device)->CreatePipelineCache(device, pCreateInfo, pAllocat… in vkCreatePipelineCache()
511 VKAPI_ATTR VkResult VKAPI_CALL vkGetPipelineCacheData(VkDevice device, VkPipelineCache pipelineCach… in vkGetPipelineCacheData()
513VkResult result = device_dispatch_table(device)->GetPipelineCacheData(device, pipelineCache, pData… in vkGetPipelineCacheData()
518 VKAPI_ATTR VkResult VKAPI_CALL vkMergePipelineCaches(VkDevice device, VkPipelineCache dstCache, uin… in vkMergePipelineCaches()
520VkResult result = device_dispatch_table(device)->MergePipelineCaches(device, dstCache, srcCacheCou… in vkMergePipelineCaches()
525 VKAPI_ATTR VkResult VKAPI_CALL vkCreateGraphicsPipelines(VkDevice device, VkPipelineCache pipelineC… in vkCreateGraphicsPipelines()
527VkResult result = device_dispatch_table(device)->CreateGraphicsPipelines(device, pipelineCache, cr… in vkCreateGraphicsPipelines()
532 VKAPI_ATTR VkResult VKAPI_CALL vkCreateComputePipelines(VkDevice device, VkPipelineCache pipelineCa… in vkCreateComputePipelines()
534VkResult result = device_dispatch_table(device)->CreateComputePipelines(device, pipelineCache, cre… in vkCreateComputePipelines()
545 VKAPI_ATTR VkResult VKAPI_CALL vkCreatePipelineLayout(VkDevice device, const VkPipelineLayoutCreate… in vkCreatePipelineLayout()
547VkResult result = device_dispatch_table(device)->CreatePipelineLayout(device, pCreateInfo, pAlloca… in vkCreatePipelineLayout()
558 VKAPI_ATTR VkResult VKAPI_CALL vkCreateSampler(VkDevice device, const VkSamplerCreateInfo* pCreateI… in vkCreateSampler()
560VkResult result = device_dispatch_table(device)->CreateSampler(device, pCreateInfo, pAllocator, pS… in vkCreateSampler()
571 VKAPI_ATTR VkResult VKAPI_CALL vkCreateDescriptorSetLayout(VkDevice device, const VkDescriptorSetLa… in vkCreateDescriptorSetLayout()
573VkResult result = device_dispatch_table(device)->CreateDescriptorSetLayout(device, pCreateInfo, pA… in vkCreateDescriptorSetLayout()
584 VKAPI_ATTR VkResult VKAPI_CALL vkCreateDescriptorPool(VkDevice device, const VkDescriptorPoolCreate… in vkCreateDescriptorPool()
586VkResult result = device_dispatch_table(device)->CreateDescriptorPool(device, pCreateInfo, pAlloca… in vkCreateDescriptorPool()
596 VKAPI_ATTR VkResult VKAPI_CALL vkResetDescriptorPool(VkDevice device, VkDescriptorPool descriptorPo… in vkResetDescriptorPool()
598VkResult result = device_dispatch_table(device)->ResetDescriptorPool(device, descriptorPool, flags… in vkResetDescriptorPool()
603 VKAPI_ATTR VkResult VKAPI_CALL vkAllocateDescriptorSets(VkDevice device, const VkDescriptorSetAlloc… in vkAllocateDescriptorSets()
605VkResult result = device_dispatch_table(device)->AllocateDescriptorSets(device, pAllocateInfo, pDe… in vkAllocateDescriptorSets()
610 VKAPI_ATTR VkResult VKAPI_CALL vkFreeDescriptorSets(VkDevice device, VkDescriptorPool descriptorPoo… in vkFreeDescriptorSets()
612VkResult result = device_dispatch_table(device)->FreeDescriptorSets(device, descriptorPool, descri… in vkFreeDescriptorSets()
622 VKAPI_ATTR VkResult VKAPI_CALL vkCreateFramebuffer(VkDevice device, const VkFramebufferCreateInfo* … in vkCreateFramebuffer()
624VkResult result = device_dispatch_table(device)->CreateFramebuffer(device, pCreateInfo, pAllocator… in vkCreateFramebuffer()
635 VKAPI_ATTR VkResult VKAPI_CALL vkCreateRenderPass(VkDevice device, const VkRenderPassCreateInfo* pC… in vkCreateRenderPass()
637VkResult result = device_dispatch_table(device)->CreateRenderPass(device, pCreateInfo, pAllocator,… in vkCreateRenderPass()
653 VKAPI_ATTR VkResult VKAPI_CALL vkCreateCommandPool(VkDevice device, const VkCommandPoolCreateInfo* … in vkCreateCommandPool()
655VkResult result = device_dispatch_table(device)->CreateCommandPool(device, pCreateInfo, pAllocator… in vkCreateCommandPool()
665 VKAPI_ATTR VkResult VKAPI_CALL vkResetCommandPool(VkDevice device, VkCommandPool commandPool, VkCom… in vkResetCommandPool()
667 VkResult result = device_dispatch_table(device)->ResetCommandPool(device, commandPool, flags); in vkResetCommandPool()
671 VKAPI_ATTR VkResult VKAPI_CALL vkAllocateCommandBuffers(VkDevice device, const VkCommandBufferAlloc… in vkAllocateCommandBuffers()
673VkResult result = device_dispatch_table(device)->AllocateCommandBuffers(device, pAllocateInfo, pCo… in vkAllocateCommandBuffers()
683 VKAPI_ATTR VkResult VKAPI_CALL vkBeginCommandBuffer(VkCommandBuffer commandBuffer, const VkCommandB… in vkBeginCommandBuffer()
685VkResult result = device_dispatch_table(commandBuffer)->BeginCommandBuffer(commandBuffer, pBeginIn… in vkBeginCommandBuffer()
690 VKAPI_ATTR VkResult VKAPI_CALL vkEndCommandBuffer(VkCommandBuffer commandBuffer) in vkEndCommandBuffer()
692 VkResult result = device_dispatch_table(commandBuffer)->EndCommandBuffer(commandBuffer); in vkEndCommandBuffer()
697 VKAPI_ATTR VkResult VKAPI_CALL vkResetCommandBuffer(VkCommandBuffer commandBuffer, VkCommandBufferR… in vkResetCommandBuffer()
699VkResult result = device_dispatch_table(commandBuffer)->ResetCommandBuffer(commandBuffer, flags); in vkResetCommandBuffer()
959 VKAPI_ATTR VkResult VKAPI_CALL vkGetPhysicalDeviceSurfaceSupportKHR(VkPhysicalDevice physicalDevice… in vkGetPhysicalDeviceSurfaceSupportKHR()
963VkResult result = phys_dev->inst->layer_disp.GetPhysicalDeviceSurfaceSupportKHR(vk_phys_dev, queue… in vkGetPhysicalDeviceSurfaceSupportKHR()
968 VKAPI_ATTR VkResult VKAPI_CALL vkGetPhysicalDeviceSurfaceCapabilitiesKHR(VkPhysicalDevice physicalD… in vkGetPhysicalDeviceSurfaceCapabilitiesKHR()
972VkResult result = phys_dev->inst->layer_disp.GetPhysicalDeviceSurfaceCapabilitiesKHR(vk_phys_dev, … in vkGetPhysicalDeviceSurfaceCapabilitiesKHR()
976 VKAPI_ATTR VkResult VKAPI_CALL vkGetPhysicalDeviceSurfaceFormatsKHR(VkPhysicalDevice physicalDevice… in vkGetPhysicalDeviceSurfaceFormatsKHR()
980VkResult result = phys_dev->inst->layer_disp.GetPhysicalDeviceSurfaceFormatsKHR(vk_phys_dev, surfa… in vkGetPhysicalDeviceSurfaceFormatsKHR()
985 VKAPI_ATTR VkResult VKAPI_CALL vkGetPhysicalDeviceSurfacePresentModesKHR(VkPhysicalDevice physicalD… in vkGetPhysicalDeviceSurfacePresentModesKHR()
989VkResult result = phys_dev->inst->layer_disp.GetPhysicalDeviceSurfacePresentModesKHR(vk_phys_dev, … in vkGetPhysicalDeviceSurfacePresentModesKHR()
993 VKAPI_ATTR VkResult VKAPI_CALL vkCreateSwapchainKHR(VkDevice device, const VkSwapchainCreateInfoKHR… in vkCreateSwapchainKHR()
995VkResult result = device_dispatch_table(device)->CreateSwapchainKHR(device, pCreateInfo, pAllocato… in vkCreateSwapchainKHR()
1004 VKAPI_ATTR VkResult VKAPI_CALL vkGetSwapchainImagesKHR(VkDevice device, VkSwapchainKHR swapchain, u… in vkGetSwapchainImagesKHR()
1006VkResult result = device_dispatch_table(device)->GetSwapchainImagesKHR(device, swapchain, pSwapcha… in vkGetSwapchainImagesKHR()
1010 VKAPI_ATTR VkResult VKAPI_CALL vkAcquireNextImageKHR(VkDevice device, VkSwapchainKHR swapchain, uin… in vkAcquireNextImageKHR()
1012VkResult result = device_dispatch_table(device)->AcquireNextImageKHR(device, swapchain, timeout, s… in vkAcquireNextImageKHR()
1016 VKAPI_ATTR VkResult VKAPI_CALL vkQueuePresentKHR(VkQueue queue, const VkPresentInfoKHR* pPresentInf… in vkQueuePresentKHR()
1018 VkResult result = device_dispatch_table(queue)->QueuePresentKHR(queue, pPresentInfo); in vkQueuePresentKHR()
1024 VKAPI_ATTR VkResult VKAPI_CALL
1027 VkResult result; in vkCreateWin32SurfaceKHR()
1046 VKAPI_ATTR VkResult VKAPI_CALL vkCreateXcbSurfaceKHR(VkInstance instance, const VkXcbSurfaceCreateI… in vkCreateXcbSurfaceKHR()
1050VkResult result = inst->layer_disp.CreateXcbSurfaceKHR(vk_inst, pCreateInfo, pAllocator, pSurface); in vkCreateXcbSurfaceKHR()
1066 VKAPI_ATTR VkResult VKAPI_CALL vkCreateXlibSurfaceKHR(VkInstance instance, const VkXlibSurfaceCreat… in vkCreateXlibSurfaceKHR()
1070VkResult result = inst->layer_disp.CreateXlibSurfaceKHR(vk_inst, pCreateInfo, pAllocator, pSurface… in vkCreateXlibSurfaceKHR()
1085 VKAPI_ATTR VkResult VKAPI_CALL vkCreateWaylandSurfaceKHR(VkInstance instance, const VkWaylandSurfac… in vkCreateWaylandSurfaceKHR()
1089VkResult result = inst->layer_disp.CreateWaylandSurfaceKHR(vk_inst, pCreateInfo, pAllocator, pSurf… in vkCreateWaylandSurfaceKHR()
1106 VKAPI_ATTR VkResult VKAPI_CALL vkCreateMirSurfaceKHR(VkInstance instance, const VkMirSurfaceCreateI… in vkCreateMirSurfaceKHR()
1110VkResult result = inst->layer_disp.CreateMirSurfaceKHR(vk_inst, pCreateInfo, pAllocator, pSurface); in vkCreateMirSurfaceKHR()
1123 VKAPI_ATTR VkResult VKAPI_CALL
1129VkResult res = inst->layer_disp.CreateDebugReportCallbackEXT(vk_inst, pCreateInfo, pAllocator, pMs… in vkCreateDebugReportCallbackEXT()
1578 VK_LAYER_EXPORT VKAPI_ATTR VkResult VKAPI_CALL
1584 VK_LAYER_EXPORT VKAPI_ATTR VkResult VKAPI_CALL
1590 VK_LAYER_EXPORT VKAPI_ATTR VkResult VKAPI_CALL
1598 VK_LAYER_EXPORT VKAPI_ATTR VkResult VKAPI_CALL vkEnumerateDeviceExtensionProperties(VkPhysicalDevic… in vkEnumerateDeviceExtensionProperties()