OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2016 Google Inc. | 2 * Copyright 2016 Google Inc. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 #include "VkTestContext.h" | 8 #include "VkTestContext.h" |
9 | 9 |
10 #ifdef SK_VULKAN | 10 #ifdef SK_VULKAN |
11 | 11 |
12 #include "vk/GrVkInterface.h" | 12 #include "vk/GrVkInterface.h" |
13 #include "vk/GrVkUtil.h" | 13 #include "vk/GrVkUtil.h" |
14 #include <vulkan/vulkan.h> | 14 #include <vulkan/vulkan.h> |
15 | 15 |
| 16 namespace sk_gpu_test { |
| 17 |
16 namespace { | 18 namespace { |
17 /** | 19 /** |
18 * Implements SkGpuFenceSync for Vulkan. It creates a single command buffer with | 20 * Implements FenceSync for Vulkan. It creates a single command buffer with |
19 * USAGE_SIMULTANEOUS with no content . On every insertFence request it submits | 21 * USAGE_SIMULTANEOUS with no content . On every insertFence request it submits |
20 * the command buffer with a new fence. | 22 * the command buffer with a new fence. |
21 */ | 23 */ |
22 class VkFenceSync : public SkGpuFenceSync { | 24 class VkFenceSync : public FenceSync { |
23 public: | 25 public: |
24 VkFenceSync(sk_sp<const GrVkInterface> vk, VkDevice device, VkQueue queue, | 26 VkFenceSync(sk_sp<const GrVkInterface> vk, VkDevice device, VkQueue queue, |
25 uint32_t queueFamilyIndex) | 27 uint32_t queueFamilyIndex) |
26 : fVk(std::move(vk)) | 28 : fVk(std::move(vk)) |
27 , fDevice(device) | 29 , fDevice(device) |
28 , fQueue(queue) { | 30 , fQueue(queue) { |
29 SkDEBUGCODE(fUnfinishedSyncs = 0;) | 31 SkDEBUGCODE(fUnfinishedSyncs = 0;) |
30 VkCommandPoolCreateInfo createInfo; | 32 VkCommandPoolCreateInfo createInfo; |
31 createInfo.sType = VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO; | 33 createInfo.sType = VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO; |
32 createInfo.pNext = nullptr; | 34 createInfo.pNext = nullptr; |
(...skipping 18 matching lines...) Expand all Loading... |
51 GR_VK_CALL_ERRCHECK(fVk, EndCommandBuffer(fCommandBuffer)); | 53 GR_VK_CALL_ERRCHECK(fVk, EndCommandBuffer(fCommandBuffer)); |
52 } | 54 } |
53 | 55 |
54 ~VkFenceSync() override { | 56 ~VkFenceSync() override { |
55 SkASSERT(!fUnfinishedSyncs); | 57 SkASSERT(!fUnfinishedSyncs); |
56 // If the above assertion is true then the command buffer should not be
in flight. | 58 // If the above assertion is true then the command buffer should not be
in flight. |
57 GR_VK_CALL(fVk, FreeCommandBuffers(fDevice, fCommandPool, 1, &fCommandBu
ffer)); | 59 GR_VK_CALL(fVk, FreeCommandBuffers(fDevice, fCommandPool, 1, &fCommandBu
ffer)); |
58 GR_VK_CALL(fVk, DestroyCommandPool(fDevice, fCommandPool, nullptr)); | 60 GR_VK_CALL(fVk, DestroyCommandPool(fDevice, fCommandPool, nullptr)); |
59 } | 61 } |
60 | 62 |
61 SkPlatformGpuFence SK_WARN_UNUSED_RESULT insertFence() const override { | 63 PlatformFence SK_WARN_UNUSED_RESULT insertFence() const override { |
62 VkFence fence; | 64 VkFence fence; |
63 VkFenceCreateInfo info; | 65 VkFenceCreateInfo info; |
64 info.sType = VK_STRUCTURE_TYPE_FENCE_CREATE_INFO; | 66 info.sType = VK_STRUCTURE_TYPE_FENCE_CREATE_INFO; |
65 info.pNext = nullptr; | 67 info.pNext = nullptr; |
66 info.flags = 0; | 68 info.flags = 0; |
67 GR_VK_CALL_ERRCHECK(fVk, CreateFence(fDevice, &info, nullptr, &fence)); | 69 GR_VK_CALL_ERRCHECK(fVk, CreateFence(fDevice, &info, nullptr, &fence)); |
68 VkSubmitInfo submitInfo; | 70 VkSubmitInfo submitInfo; |
69 submitInfo.sType = VK_STRUCTURE_TYPE_SUBMIT_INFO; | 71 submitInfo.sType = VK_STRUCTURE_TYPE_SUBMIT_INFO; |
70 submitInfo.pNext = nullptr; | 72 submitInfo.pNext = nullptr; |
71 submitInfo.waitSemaphoreCount = 0; | 73 submitInfo.waitSemaphoreCount = 0; |
72 submitInfo.pWaitSemaphores = nullptr; | 74 submitInfo.pWaitSemaphores = nullptr; |
73 submitInfo.pWaitDstStageMask = nullptr; | 75 submitInfo.pWaitDstStageMask = nullptr; |
74 submitInfo.commandBufferCount = 1; | 76 submitInfo.commandBufferCount = 1; |
75 submitInfo.pCommandBuffers = &fCommandBuffer; | 77 submitInfo.pCommandBuffers = &fCommandBuffer; |
76 submitInfo.signalSemaphoreCount = 0; | 78 submitInfo.signalSemaphoreCount = 0; |
77 submitInfo.pSignalSemaphores = nullptr; | 79 submitInfo.pSignalSemaphores = nullptr; |
78 GR_VK_CALL_ERRCHECK(fVk, QueueSubmit(fQueue, 1, &submitInfo, fence)); | 80 GR_VK_CALL_ERRCHECK(fVk, QueueSubmit(fQueue, 1, &submitInfo, fence)); |
79 SkDEBUGCODE(++fUnfinishedSyncs;) | 81 SkDEBUGCODE(++fUnfinishedSyncs;) |
80 return reinterpret_cast<SkPlatformGpuFence>(fence); | 82 return reinterpret_cast<PlatformFence>(fence); |
81 } | 83 } |
82 | 84 |
83 bool waitFence(SkPlatformGpuFence opaqueFence) const override { | 85 bool waitFence(PlatformFence opaqueFence) const override { |
84 VkFence fence = reinterpret_cast<VkFence>(opaqueFence); | 86 VkFence fence = reinterpret_cast<VkFence>(opaqueFence); |
85 static constexpr uint64_t kForever = ~((uint64_t)0); | 87 static constexpr uint64_t kForever = ~((uint64_t)0); |
86 auto result = GR_VK_CALL(fVk, WaitForFences(fDevice, 1, &fence, true, kF
orever)); | 88 auto result = GR_VK_CALL(fVk, WaitForFences(fDevice, 1, &fence, true, kF
orever)); |
87 return result != VK_TIMEOUT; | 89 return result != VK_TIMEOUT; |
88 } | 90 } |
89 | 91 |
90 void deleteFence(SkPlatformGpuFence opaqueFence) const override { | 92 void deleteFence(PlatformFence opaqueFence) const override { |
91 VkFence fence = reinterpret_cast<VkFence>(opaqueFence); | 93 VkFence fence = reinterpret_cast<VkFence>(opaqueFence); |
92 GR_VK_CALL(fVk, DestroyFence(fDevice, fence, nullptr)); | 94 GR_VK_CALL(fVk, DestroyFence(fDevice, fence, nullptr)); |
93 SkDEBUGCODE(--fUnfinishedSyncs;) | 95 SkDEBUGCODE(--fUnfinishedSyncs;) |
94 } | 96 } |
95 | 97 |
96 private: | 98 private: |
97 sk_sp<const GrVkInterface> fVk; | 99 sk_sp<const GrVkInterface> fVk; |
98 VkDevice fDevice; | 100 VkDevice fDevice; |
99 VkQueue fQueue; | 101 VkQueue fQueue; |
100 VkCommandPool fCommandPool; | 102 VkCommandPool fCommandPool; |
101 VkCommandBuffer fCommandBuffer; | 103 VkCommandBuffer fCommandBuffer; |
102 SkDEBUGCODE(mutable int fUnfinishedSyncs;) | 104 SkDEBUGCODE(mutable int fUnfinishedSyncs;) |
103 typedef SkGpuFenceSync INHERITED; | 105 typedef FenceSync INHERITED; |
104 }; | 106 }; |
105 | 107 |
106 // TODO: Implement swap buffers and finish | 108 // TODO: Implement swap buffers and finish |
107 class VkTestContextImpl : public sk_gpu_test::VkTestContext { | 109 class VkTestContextImpl : public VkTestContext { |
108 public: | 110 public: |
109 static VkTestContext* Create() { | 111 static VkTestContext* Create() { |
110 sk_sp<const GrVkBackendContext> backendContext(GrVkBackendContext::Creat
e()); | 112 sk_sp<const GrVkBackendContext> backendContext(GrVkBackendContext::Creat
e()); |
111 if (!backendContext) { | 113 if (!backendContext) { |
112 return nullptr; | 114 return nullptr; |
113 } | 115 } |
114 return new VkTestContextImpl(std::move(backendContext)); | 116 return new VkTestContextImpl(std::move(backendContext)); |
115 } | 117 } |
116 | 118 |
117 ~VkTestContextImpl() override { this->teardown(); } | 119 ~VkTestContextImpl() override { this->teardown(); } |
(...skipping 14 matching lines...) Expand all Loading... |
132 private: | 134 private: |
133 VkTestContextImpl(sk_sp<const GrVkBackendContext> backendContext) | 135 VkTestContextImpl(sk_sp<const GrVkBackendContext> backendContext) |
134 : VkTestContext(std::move(backendContext)) { | 136 : VkTestContext(std::move(backendContext)) { |
135 fFenceSync = new VkFenceSync(sk_ref_sp(fVk->fInterface.get()), fVk->fDev
ice, fVk->fQueue, | 137 fFenceSync = new VkFenceSync(sk_ref_sp(fVk->fInterface.get()), fVk->fDev
ice, fVk->fQueue, |
136 fVk->fGraphicsQueueIndex); | 138 fVk->fGraphicsQueueIndex); |
137 } | 139 } |
138 | 140 |
139 void onPlatformMakeCurrent() const override {} | 141 void onPlatformMakeCurrent() const override {} |
140 void onPlatformSwapBuffers() const override {} | 142 void onPlatformSwapBuffers() const override {} |
141 | 143 |
142 typedef sk_gpu_test::VkTestContext INHERITED; | 144 typedef VkTestContext INHERITED; |
143 }; | 145 }; |
144 } | 146 } // anonymous namespace |
145 | 147 |
146 namespace sk_gpu_test { | |
147 VkTestContext* CreatePlatformVkTestContext() { return VkTestContextImpl::Create(
); } | 148 VkTestContext* CreatePlatformVkTestContext() { return VkTestContextImpl::Create(
); } |
148 } // namespace sk_gpu_test | 149 } // namespace sk_gpu_test |
149 | 150 |
150 #endif | 151 #endif |
OLD | NEW |