Home
last modified time | relevance | path

Searched refs:GR_VK_CALL_ERRCHECK (Results 1 – 17 of 17) sorted by relevance

/external/skqp/tools/sk_app/
DVulkanWindowContext.cpp358 GR_VK_CALL_ERRCHECK(fInterface, in createBuffers()
387 GR_VK_CALL_ERRCHECK(fInterface, in createBuffers()
390 GR_VK_CALL_ERRCHECK(fInterface, in createBuffers()
393 GR_VK_CALL_ERRCHECK(fInterface, in createBuffers()
396 GR_VK_CALL_ERRCHECK(fInterface, in createBuffers()
399 GR_VK_CALL_ERRCHECK(fInterface, in createBuffers()
410 GR_VK_CALL_ERRCHECK(fInterface, in destroyBuffers()
503 GR_VK_CALL_ERRCHECK(fInterface, in getAvailableBackbuffer()
514 GR_VK_CALL_ERRCHECK(fInterface, in getBackbufferSurface()
533 GR_VK_CALL_ERRCHECK(fInterface, in getBackbufferSurface()
[all …]
/external/skqp/tools/gpu/mtl/
DMtlTestContext.mm37 GR_VK_CALL_ERRCHECK(fVk, CreateCommandPool(fDevice, &createInfo, nullptr, &fCommandPool));
45 GR_VK_CALL_ERRCHECK(fVk, AllocateCommandBuffers(fDevice, &allocateInfo, &fCommandBuffer));
52 GR_VK_CALL_ERRCHECK(fVk, BeginCommandBuffer(fCommandBuffer, &beginInfo));
53 GR_VK_CALL_ERRCHECK(fVk, EndCommandBuffer(fCommandBuffer));
69 GR_VK_CALL_ERRCHECK(fVk, CreateFence(fDevice, &info, nullptr, &fence));
80 GR_VK_CALL_ERRCHECK(fVk, QueueSubmit(fQueue, 1, &submitInfo, fence));
/external/skqp/src/gpu/vk/
DGrVkUtil.h24 #define GR_VK_CALL_ERRCHECK(IFACE, X) \ macro
28 #define GR_VK_CALL_ERRCHECK(IFACE, X) (void) GR_VK_CALL(IFACE, X) macro
DGrVkDescriptorPool.cpp33 GR_VK_CALL_ERRCHECK(gpu->vkInterface(), CreateDescriptorPool(gpu->device(), in GrVkDescriptorPool()
44 GR_VK_CALL_ERRCHECK(gpu->vkInterface(), ResetDescriptorPool(gpu->device(), fDescPool, 0)); in reset()
DGrVkCommandPool.cpp23 GR_VK_CALL_ERRCHECK(gpu->vkInterface(), CreateCommandPool(gpu->device(), &cmdPoolInfo, in Create()
55 GR_VK_CALL_ERRCHECK(gpu->vkInterface(), ResetCommandPool(gpu->device(), fCommandPool, 0)); in reset()
DGrVkDescriptorSetManager.cpp230 GR_VK_CALL_ERRCHECK(gpu->vkInterface(), in DescriptorPoolManager()
261 GR_VK_CALL_ERRCHECK(gpu->vkInterface(), CreateDescriptorSetLayout(gpu->device(), in DescriptorPoolManager()
308 GR_VK_CALL_ERRCHECK(gpu->vkInterface(), AllocateDescriptorSets(gpu->device(), in getNewDescriptorSet()
DGrVkCommandBuffer.cpp401 GR_VK_CALL_ERRCHECK(gpu->vkInterface(), BeginCommandBuffer(fCmdBuffer, in begin()
409 GR_VK_CALL_ERRCHECK(gpu->vkInterface(), EndCommandBuffer(fCmdBuffer)); in end()
498 GR_VK_CALL_ERRCHECK(interface, QueueSubmit(queue, 1, &submitInfo, fence)); in submit_to_queue()
890 GR_VK_CALL_ERRCHECK(gpu->vkInterface(), BeginCommandBuffer(fCmdBuffer, in begin()
899 GR_VK_CALL_ERRCHECK(gpu->vkInterface(), EndCommandBuffer(fCmdBuffer)); in end()
DGrVkSemaphore.cpp26 GR_VK_CALL_ERRCHECK(gpu->vkInterface(), in Make()
DGrVkSampler.cpp107 GR_VK_CALL_ERRCHECK(gpu->vkInterface(), CreateSampler(gpu->device(), in Create()
DGrVkImage.cpp188 GR_VK_CALL_ERRCHECK(gpu->vkInterface(), CreateImage(gpu->device(), &imageCreateInfo, nullptr, in InitImageInfo()
DGrVkRenderPass.cpp136 GR_VK_CALL_ERRCHECK(gpu->vkInterface(), CreateRenderPass(gpu->device(), in init()
DGrVkPipelineStateBuilder.cpp261 GR_VK_CALL_ERRCHECK(fGpu->vkInterface(), CreatePipelineLayout(fGpu->device(), in finalize()
DGrVkGpu.cpp57 #define VK_CALL_ERRCHECK(X) GR_VK_CALL_ERRCHECK(this->vkInterface(), X)
1405 GR_VK_CALL_ERRCHECK(this->vkInterface(), in createTestingOnlyVkImage()
/external/skqp/tests/
DSurfaceSemaphoreTest.cpp140 GR_VK_CALL_ERRCHECK(interface, CreateSemaphore(device, &createInfo, nullptr, &vkSem)); in surface_semaphore_test()
273 GR_VK_CALL_ERRCHECK(interface, BeginCommandBuffer(cmdBuffer, &cmdBufferBeginInfo)); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
274 GR_VK_CALL_ERRCHECK(interface, EndCommandBuffer(cmdBuffer)); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
297 GR_VK_CALL_ERRCHECK(interface, QueueSubmit(queue, 1, &submitInfo, fence)); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
/external/skia/tests/
DSurfaceSemaphoreTest.cpp148 GR_VK_CALL_ERRCHECK(gpu, CreateSemaphore(device, &createInfo, nullptr, &vkSem)); in surface_semaphore_test()
297 GR_VK_CALL_ERRCHECK(gpu, BeginCommandBuffer(cmdBuffer, &cmdBufferBeginInfo)); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
298 GR_VK_CALL_ERRCHECK(gpu, EndCommandBuffer(cmdBuffer)); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
321 GR_VK_CALL_ERRCHECK(gpu, QueueSubmit(queue, 1, &submitInfo, fence)); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
/external/skia/src/gpu/vk/
DGrVkCommandBuffer.cpp435 GR_VK_CALL_ERRCHECK(gpu, BeginCommandBuffer(fCmdBuffer, &cmdBufferBeginInfo)); in begin()
452 GR_VK_CALL_ERRCHECK(gpu, EndCommandBuffer(fCmdBuffer)); in end()
649 GR_VK_CALL_ERRCHECK(gpu, WaitForFences(gpu->device(), 1, &fSubmitFence, true, UINT64_MAX)); in forceSync()
966 GR_VK_CALL_ERRCHECK(gpu, BeginCommandBuffer(fCmdBuffer, &cmdBufferBeginInfo)); in begin()
974 GR_VK_CALL_ERRCHECK(gpu, EndCommandBuffer(fCmdBuffer)); in end()
DGrVkUtil.h41 #define GR_VK_CALL_ERRCHECK(GPU, X) \ macro