blob: adc7d5cf1c42caf459ec4fde23375bd851d4176e [file] [log] [blame]
Jesse Hallb1352bc2015-09-04 16:12:33 -07001/*
2 * Copyright 2015 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Jesse Halld7b994a2015-09-07 14:17:37 -070017#include <algorithm>
Jesse Halld7b994a2015-09-07 14:17:37 -070018
19#include <gui/BufferQueue.h>
Jesse Hallb1352bc2015-09-04 16:12:33 -070020#include <log/log.h>
Jesse Halld7b994a2015-09-07 14:17:37 -070021#include <sync/sync.h>
Chia-I Wue8e689f2016-04-18 08:21:31 +080022#include <utils/StrongPointer.h>
Jesse Halld7b994a2015-09-07 14:17:37 -070023
Chia-I Wu4a6a9162016-03-26 07:17:34 +080024#include "driver.h"
Jesse Halld7b994a2015-09-07 14:17:37 -070025
Jesse Hall5ae3abb2015-10-08 14:00:22 -070026// TODO(jessehall): Currently we don't have a good error code for when a native
27// window operation fails. Just returning INITIALIZATION_FAILED for now. Later
28// versions (post SDK 0.9) of the API/extension have a better error code.
29// When updating to that version, audit all error returns.
Chia-I Wu62262232016-03-26 07:06:44 +080030namespace vulkan {
31namespace driver {
Jesse Hall5ae3abb2015-10-08 14:00:22 -070032
Jesse Halld7b994a2015-09-07 14:17:37 -070033namespace {
34
Jesse Hall55bc0972016-02-23 16:43:29 -080035const VkSurfaceTransformFlagsKHR kSupportedTransforms =
36 VK_SURFACE_TRANSFORM_IDENTITY_BIT_KHR |
37 VK_SURFACE_TRANSFORM_ROTATE_90_BIT_KHR |
38 VK_SURFACE_TRANSFORM_ROTATE_180_BIT_KHR |
39 VK_SURFACE_TRANSFORM_ROTATE_270_BIT_KHR |
40 // TODO(jessehall): See TODO in TranslateNativeToVulkanTransform.
41 // VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_BIT_KHR |
42 // VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_90_BIT_KHR |
43 // VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_180_BIT_KHR |
44 // VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_270_BIT_KHR |
45 VK_SURFACE_TRANSFORM_INHERIT_BIT_KHR;
46
47VkSurfaceTransformFlagBitsKHR TranslateNativeToVulkanTransform(int native) {
48 // Native and Vulkan transforms are isomorphic, but are represented
49 // differently. Vulkan transforms are built up of an optional horizontal
50 // mirror, followed by a clockwise 0/90/180/270-degree rotation. Native
51 // transforms are built up from a horizontal flip, vertical flip, and
52 // 90-degree rotation, all optional but always in that order.
53
54 // TODO(jessehall): For now, only support pure rotations, not
55 // flip or flip-and-rotate, until I have more time to test them and build
56 // sample code. As far as I know we never actually use anything besides
57 // pure rotations anyway.
58
59 switch (native) {
60 case 0: // 0x0
61 return VK_SURFACE_TRANSFORM_IDENTITY_BIT_KHR;
62 // case NATIVE_WINDOW_TRANSFORM_FLIP_H: // 0x1
63 // return VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_BIT_KHR;
64 // case NATIVE_WINDOW_TRANSFORM_FLIP_V: // 0x2
65 // return VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_180_BIT_KHR;
66 case NATIVE_WINDOW_TRANSFORM_ROT_180: // FLIP_H | FLIP_V
67 return VK_SURFACE_TRANSFORM_ROTATE_180_BIT_KHR;
68 case NATIVE_WINDOW_TRANSFORM_ROT_90: // 0x4
69 return VK_SURFACE_TRANSFORM_ROTATE_90_BIT_KHR;
70 // case NATIVE_WINDOW_TRANSFORM_FLIP_H | NATIVE_WINDOW_TRANSFORM_ROT_90:
71 // return VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_90_BIT_KHR;
72 // case NATIVE_WINDOW_TRANSFORM_FLIP_V | NATIVE_WINDOW_TRANSFORM_ROT_90:
73 // return VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_270_BIT_KHR;
74 case NATIVE_WINDOW_TRANSFORM_ROT_270: // FLIP_H | FLIP_V | ROT_90
75 return VK_SURFACE_TRANSFORM_ROTATE_270_BIT_KHR;
76 case NATIVE_WINDOW_TRANSFORM_INVERSE_DISPLAY:
77 default:
78 return VK_SURFACE_TRANSFORM_IDENTITY_BIT_KHR;
79 }
80}
81
Jesse Hall178b6962016-02-24 15:39:50 -080082int InvertTransformToNative(VkSurfaceTransformFlagBitsKHR transform) {
83 switch (transform) {
84 case VK_SURFACE_TRANSFORM_ROTATE_90_BIT_KHR:
85 return NATIVE_WINDOW_TRANSFORM_ROT_270;
86 case VK_SURFACE_TRANSFORM_ROTATE_180_BIT_KHR:
87 return NATIVE_WINDOW_TRANSFORM_ROT_180;
88 case VK_SURFACE_TRANSFORM_ROTATE_270_BIT_KHR:
89 return NATIVE_WINDOW_TRANSFORM_ROT_90;
90 // TODO(jessehall): See TODO in TranslateNativeToVulkanTransform.
91 // case VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_BIT_KHR:
92 // return NATIVE_WINDOW_TRANSFORM_FLIP_H;
93 // case VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_90_BIT_KHR:
94 // return NATIVE_WINDOW_TRANSFORM_FLIP_H |
95 // NATIVE_WINDOW_TRANSFORM_ROT_90;
96 // case VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_180_BIT_KHR:
97 // return NATIVE_WINDOW_TRANSFORM_FLIP_V;
98 // case VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_270_BIT_KHR:
99 // return NATIVE_WINDOW_TRANSFORM_FLIP_V |
100 // NATIVE_WINDOW_TRANSFORM_ROT_90;
101 case VK_SURFACE_TRANSFORM_IDENTITY_BIT_KHR:
102 case VK_SURFACE_TRANSFORM_INHERIT_BIT_KHR:
103 default:
104 return 0;
105 }
106}
107
Jesse Halld7b994a2015-09-07 14:17:37 -0700108// ----------------------------------------------------------------------------
109
Jesse Hall1356b0d2015-11-23 17:24:58 -0800110struct Surface {
Chia-I Wue8e689f2016-04-18 08:21:31 +0800111 android::sp<ANativeWindow> window;
Jesse Halldc225072016-05-30 22:40:14 -0700112 VkSwapchainKHR swapchain_handle;
Jesse Hall1356b0d2015-11-23 17:24:58 -0800113};
114
115VkSurfaceKHR HandleFromSurface(Surface* surface) {
116 return VkSurfaceKHR(reinterpret_cast<uint64_t>(surface));
117}
118
119Surface* SurfaceFromHandle(VkSurfaceKHR handle) {
Jesse Halla3a7a1d2015-11-24 11:37:23 -0800120 return reinterpret_cast<Surface*>(handle);
Jesse Hall1356b0d2015-11-23 17:24:58 -0800121}
122
123struct Swapchain {
124 Swapchain(Surface& surface_, uint32_t num_images_)
125 : surface(surface_), num_images(num_images_) {}
126
127 Surface& surface;
Jesse Halld7b994a2015-09-07 14:17:37 -0700128 uint32_t num_images;
129
130 struct Image {
131 Image() : image(VK_NULL_HANDLE), dequeue_fence(-1), dequeued(false) {}
132 VkImage image;
Chia-I Wue8e689f2016-04-18 08:21:31 +0800133 android::sp<ANativeWindowBuffer> buffer;
Jesse Halld7b994a2015-09-07 14:17:37 -0700134 // The fence is only valid when the buffer is dequeued, and should be
135 // -1 any other time. When valid, we own the fd, and must ensure it is
136 // closed: either by closing it explicitly when queueing the buffer,
137 // or by passing ownership e.g. to ANativeWindow::cancelBuffer().
138 int dequeue_fence;
139 bool dequeued;
140 } images[android::BufferQueue::NUM_BUFFER_SLOTS];
141};
142
143VkSwapchainKHR HandleFromSwapchain(Swapchain* swapchain) {
144 return VkSwapchainKHR(reinterpret_cast<uint64_t>(swapchain));
145}
146
147Swapchain* SwapchainFromHandle(VkSwapchainKHR handle) {
Jesse Halla3a7a1d2015-11-24 11:37:23 -0800148 return reinterpret_cast<Swapchain*>(handle);
Jesse Halld7b994a2015-09-07 14:17:37 -0700149}
150
Jesse Halldc225072016-05-30 22:40:14 -0700151void ReleaseSwapchainImage(VkDevice device,
152 ANativeWindow* window,
153 int release_fence,
154 Swapchain::Image& image) {
155 ALOG_ASSERT(release_fence == -1 || image.dequeued,
156 "ReleaseSwapchainImage: can't provide a release fence for "
157 "non-dequeued images");
158
159 if (image.dequeued) {
160 if (release_fence >= 0) {
161 // We get here from vkQueuePresentKHR. The application is
162 // responsible for creating an execution dependency chain from
163 // vkAcquireNextImage (dequeue_fence) to vkQueuePresentKHR
164 // (release_fence), so we can drop the dequeue_fence here.
165 if (image.dequeue_fence >= 0)
166 close(image.dequeue_fence);
167 } else {
168 // We get here during swapchain destruction, or various serious
169 // error cases e.g. when we can't create the release_fence during
170 // vkQueuePresentKHR. In non-error cases, the dequeue_fence should
171 // have already signalled, since the swapchain images are supposed
172 // to be idle before the swapchain is destroyed. In error cases,
173 // there may be rendering in flight to the image, but since we
174 // weren't able to create a release_fence, waiting for the
175 // dequeue_fence is about the best we can do.
176 release_fence = image.dequeue_fence;
177 }
178 image.dequeue_fence = -1;
179
180 if (window) {
181 window->cancelBuffer(window, image.buffer.get(), release_fence);
182 } else {
183 if (release_fence >= 0) {
184 sync_wait(release_fence, -1 /* forever */);
185 close(release_fence);
186 }
187 }
188
189 image.dequeued = false;
190 }
191
192 if (image.image) {
193 GetData(device).driver.DestroyImage(device, image.image, nullptr);
194 image.image = VK_NULL_HANDLE;
195 }
196
197 image.buffer.clear();
198}
199
200void OrphanSwapchain(VkDevice device, Swapchain* swapchain) {
201 if (swapchain->surface.swapchain_handle != HandleFromSwapchain(swapchain))
202 return;
Jesse Halldc225072016-05-30 22:40:14 -0700203 for (uint32_t i = 0; i < swapchain->num_images; i++) {
204 if (!swapchain->images[i].dequeued)
205 ReleaseSwapchainImage(device, nullptr, -1, swapchain->images[i]);
206 }
207 swapchain->surface.swapchain_handle = VK_NULL_HANDLE;
208}
209
Jesse Halld7b994a2015-09-07 14:17:37 -0700210} // anonymous namespace
Jesse Hallb1352bc2015-09-04 16:12:33 -0700211
Jesse Halle1b12782015-11-30 11:27:32 -0800212VKAPI_ATTR
Chia-I Wu62262232016-03-26 07:06:44 +0800213VkResult CreateAndroidSurfaceKHR(
Jesse Hallf9fa9a52016-01-08 16:08:51 -0800214 VkInstance instance,
215 const VkAndroidSurfaceCreateInfoKHR* pCreateInfo,
216 const VkAllocationCallbacks* allocator,
217 VkSurfaceKHR* out_surface) {
Jesse Hall1f91d392015-12-11 16:28:44 -0800218 if (!allocator)
Chia-I Wu4a6a9162016-03-26 07:17:34 +0800219 allocator = &GetData(instance).allocator;
Jesse Hall1f91d392015-12-11 16:28:44 -0800220 void* mem = allocator->pfnAllocation(allocator->pUserData, sizeof(Surface),
221 alignof(Surface),
222 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
Jesse Hall1356b0d2015-11-23 17:24:58 -0800223 if (!mem)
224 return VK_ERROR_OUT_OF_HOST_MEMORY;
225 Surface* surface = new (mem) Surface;
Jesse Hallb1352bc2015-09-04 16:12:33 -0700226
Chia-I Wue8e689f2016-04-18 08:21:31 +0800227 surface->window = pCreateInfo->window;
Jesse Halldc225072016-05-30 22:40:14 -0700228 surface->swapchain_handle = VK_NULL_HANDLE;
Jesse Hallb1352bc2015-09-04 16:12:33 -0700229
Jesse Hall1356b0d2015-11-23 17:24:58 -0800230 // TODO(jessehall): Create and use NATIVE_WINDOW_API_VULKAN.
231 int err =
232 native_window_api_connect(surface->window.get(), NATIVE_WINDOW_API_EGL);
233 if (err != 0) {
234 // TODO(jessehall): Improve error reporting. Can we enumerate possible
235 // errors and translate them to valid Vulkan result codes?
236 ALOGE("native_window_api_connect() failed: %s (%d)", strerror(-err),
237 err);
238 surface->~Surface();
Jesse Hall1f91d392015-12-11 16:28:44 -0800239 allocator->pfnFree(allocator->pUserData, surface);
Jesse Hall1356b0d2015-11-23 17:24:58 -0800240 return VK_ERROR_INITIALIZATION_FAILED;
241 }
Jesse Hallb1352bc2015-09-04 16:12:33 -0700242
Jesse Hall1356b0d2015-11-23 17:24:58 -0800243 *out_surface = HandleFromSurface(surface);
Jesse Hallb1352bc2015-09-04 16:12:33 -0700244 return VK_SUCCESS;
245}
246
Jesse Halle1b12782015-11-30 11:27:32 -0800247VKAPI_ATTR
Chia-I Wu62262232016-03-26 07:06:44 +0800248void DestroySurfaceKHR(VkInstance instance,
249 VkSurfaceKHR surface_handle,
250 const VkAllocationCallbacks* allocator) {
Jesse Hall1356b0d2015-11-23 17:24:58 -0800251 Surface* surface = SurfaceFromHandle(surface_handle);
252 if (!surface)
253 return;
254 native_window_api_disconnect(surface->window.get(), NATIVE_WINDOW_API_EGL);
Jesse Hall42a9eec2016-06-03 12:39:49 -0700255 ALOGV_IF(surface->swapchain_handle != VK_NULL_HANDLE,
Jesse Halldc225072016-05-30 22:40:14 -0700256 "destroyed VkSurfaceKHR 0x%" PRIx64
257 " has active VkSwapchainKHR 0x%" PRIx64,
258 reinterpret_cast<uint64_t>(surface_handle),
259 reinterpret_cast<uint64_t>(surface->swapchain_handle));
Jesse Hall1356b0d2015-11-23 17:24:58 -0800260 surface->~Surface();
Jesse Hall1f91d392015-12-11 16:28:44 -0800261 if (!allocator)
Chia-I Wu4a6a9162016-03-26 07:17:34 +0800262 allocator = &GetData(instance).allocator;
Jesse Hall1f91d392015-12-11 16:28:44 -0800263 allocator->pfnFree(allocator->pUserData, surface);
Jesse Hall1356b0d2015-11-23 17:24:58 -0800264}
265
Jesse Halle1b12782015-11-30 11:27:32 -0800266VKAPI_ATTR
Chia-I Wu62262232016-03-26 07:06:44 +0800267VkResult GetPhysicalDeviceSurfaceSupportKHR(VkPhysicalDevice /*pdev*/,
268 uint32_t /*queue_family*/,
269 VkSurfaceKHR /*surface*/,
270 VkBool32* supported) {
Jesse Hall0e74f002015-11-30 11:37:59 -0800271 *supported = VK_TRUE;
Jesse Halla6429252015-11-29 18:59:42 -0800272 return VK_SUCCESS;
Jesse Hall1356b0d2015-11-23 17:24:58 -0800273}
274
Jesse Halle1b12782015-11-30 11:27:32 -0800275VKAPI_ATTR
Chia-I Wu62262232016-03-26 07:06:44 +0800276VkResult GetPhysicalDeviceSurfaceCapabilitiesKHR(
Jesse Hallb00daad2015-11-29 19:46:20 -0800277 VkPhysicalDevice /*pdev*/,
278 VkSurfaceKHR surface,
279 VkSurfaceCapabilitiesKHR* capabilities) {
Jesse Halld7b994a2015-09-07 14:17:37 -0700280 int err;
Jesse Hall1356b0d2015-11-23 17:24:58 -0800281 ANativeWindow* window = SurfaceFromHandle(surface)->window.get();
Jesse Halld7b994a2015-09-07 14:17:37 -0700282
283 int width, height;
284 err = window->query(window, NATIVE_WINDOW_DEFAULT_WIDTH, &width);
285 if (err != 0) {
286 ALOGE("NATIVE_WINDOW_DEFAULT_WIDTH query failed: %s (%d)",
287 strerror(-err), err);
Jesse Hall5ae3abb2015-10-08 14:00:22 -0700288 return VK_ERROR_INITIALIZATION_FAILED;
Jesse Halld7b994a2015-09-07 14:17:37 -0700289 }
290 err = window->query(window, NATIVE_WINDOW_DEFAULT_HEIGHT, &height);
291 if (err != 0) {
292 ALOGE("NATIVE_WINDOW_DEFAULT_WIDTH query failed: %s (%d)",
293 strerror(-err), err);
Jesse Hall5ae3abb2015-10-08 14:00:22 -0700294 return VK_ERROR_INITIALIZATION_FAILED;
Jesse Halld7b994a2015-09-07 14:17:37 -0700295 }
296
Jesse Hall55bc0972016-02-23 16:43:29 -0800297 int transform_hint;
298 err = window->query(window, NATIVE_WINDOW_TRANSFORM_HINT, &transform_hint);
299 if (err != 0) {
300 ALOGE("NATIVE_WINDOW_TRANSFORM_HINT query failed: %s (%d)",
301 strerror(-err), err);
302 return VK_ERROR_INITIALIZATION_FAILED;
303 }
304
Jesse Halld7b994a2015-09-07 14:17:37 -0700305 // TODO(jessehall): Figure out what the min/max values should be.
Jesse Hallb00daad2015-11-29 19:46:20 -0800306 capabilities->minImageCount = 2;
307 capabilities->maxImageCount = 3;
Jesse Halld7b994a2015-09-07 14:17:37 -0700308
Jesse Hallfe2662d2016-02-09 13:26:59 -0800309 capabilities->currentExtent =
310 VkExtent2D{static_cast<uint32_t>(width), static_cast<uint32_t>(height)};
311
Jesse Halld7b994a2015-09-07 14:17:37 -0700312 // TODO(jessehall): Figure out what the max extent should be. Maximum
313 // texture dimension maybe?
Jesse Hallb00daad2015-11-29 19:46:20 -0800314 capabilities->minImageExtent = VkExtent2D{1, 1};
315 capabilities->maxImageExtent = VkExtent2D{4096, 4096};
Jesse Halld7b994a2015-09-07 14:17:37 -0700316
Jesse Hallfe2662d2016-02-09 13:26:59 -0800317 capabilities->maxImageArrayLayers = 1;
318
Jesse Hall55bc0972016-02-23 16:43:29 -0800319 capabilities->supportedTransforms = kSupportedTransforms;
320 capabilities->currentTransform =
321 TranslateNativeToVulkanTransform(transform_hint);
Jesse Halld7b994a2015-09-07 14:17:37 -0700322
Jesse Hallfe2662d2016-02-09 13:26:59 -0800323 // On Android, window composition is a WindowManager property, not something
324 // associated with the bufferqueue. It can't be changed from here.
325 capabilities->supportedCompositeAlpha = VK_COMPOSITE_ALPHA_INHERIT_BIT_KHR;
Jesse Halld7b994a2015-09-07 14:17:37 -0700326
327 // TODO(jessehall): I think these are right, but haven't thought hard about
328 // it. Do we need to query the driver for support of any of these?
329 // Currently not included:
330 // - VK_IMAGE_USAGE_GENERAL: maybe? does this imply cpu mappable?
331 // - VK_IMAGE_USAGE_DEPTH_STENCIL_BIT: definitely not
332 // - VK_IMAGE_USAGE_TRANSIENT_ATTACHMENT_BIT: definitely not
Jesse Hallb00daad2015-11-29 19:46:20 -0800333 capabilities->supportedUsageFlags =
Jesse Hall3fbc8562015-11-29 22:10:52 -0800334 VK_IMAGE_USAGE_TRANSFER_SRC_BIT | VK_IMAGE_USAGE_TRANSFER_DST_BIT |
335 VK_IMAGE_USAGE_SAMPLED_BIT | VK_IMAGE_USAGE_STORAGE_BIT |
336 VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT |
Jesse Halld7b994a2015-09-07 14:17:37 -0700337 VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT;
338
Jesse Hallb1352bc2015-09-04 16:12:33 -0700339 return VK_SUCCESS;
340}
341
Jesse Halle1b12782015-11-30 11:27:32 -0800342VKAPI_ATTR
Chia-I Wu62262232016-03-26 07:06:44 +0800343VkResult GetPhysicalDeviceSurfaceFormatsKHR(VkPhysicalDevice /*pdev*/,
344 VkSurfaceKHR /*surface*/,
345 uint32_t* count,
346 VkSurfaceFormatKHR* formats) {
Jesse Hall1356b0d2015-11-23 17:24:58 -0800347 // TODO(jessehall): Fill out the set of supported formats. Longer term, add
348 // a new gralloc method to query whether a (format, usage) pair is
349 // supported, and check that for each gralloc format that corresponds to a
350 // Vulkan format. Shorter term, just add a few more formats to the ones
351 // hardcoded below.
Jesse Halld7b994a2015-09-07 14:17:37 -0700352
353 const VkSurfaceFormatKHR kFormats[] = {
Jesse Hall26763382016-05-20 07:13:52 -0700354 {VK_FORMAT_R8G8B8A8_UNORM, VK_COLOR_SPACE_SRGB_NONLINEAR_KHR},
355 {VK_FORMAT_R8G8B8A8_SRGB, VK_COLOR_SPACE_SRGB_NONLINEAR_KHR},
356 {VK_FORMAT_R5G6B5_UNORM_PACK16, VK_COLOR_SPACE_SRGB_NONLINEAR_KHR},
Jesse Halld7b994a2015-09-07 14:17:37 -0700357 };
358 const uint32_t kNumFormats = sizeof(kFormats) / sizeof(kFormats[0]);
359
360 VkResult result = VK_SUCCESS;
361 if (formats) {
362 if (*count < kNumFormats)
363 result = VK_INCOMPLETE;
364 std::copy(kFormats, kFormats + std::min(*count, kNumFormats), formats);
365 }
366 *count = kNumFormats;
367 return result;
Jesse Hallb1352bc2015-09-04 16:12:33 -0700368}
369
Jesse Halle1b12782015-11-30 11:27:32 -0800370VKAPI_ATTR
Chia-I Wu62262232016-03-26 07:06:44 +0800371VkResult GetPhysicalDeviceSurfacePresentModesKHR(VkPhysicalDevice /*pdev*/,
372 VkSurfaceKHR /*surface*/,
373 uint32_t* count,
374 VkPresentModeKHR* modes) {
Jesse Halld7b994a2015-09-07 14:17:37 -0700375 const VkPresentModeKHR kModes[] = {
376 VK_PRESENT_MODE_MAILBOX_KHR, VK_PRESENT_MODE_FIFO_KHR,
377 };
378 const uint32_t kNumModes = sizeof(kModes) / sizeof(kModes[0]);
379
380 VkResult result = VK_SUCCESS;
381 if (modes) {
382 if (*count < kNumModes)
383 result = VK_INCOMPLETE;
384 std::copy(kModes, kModes + std::min(*count, kNumModes), modes);
385 }
386 *count = kNumModes;
387 return result;
Jesse Hallb1352bc2015-09-04 16:12:33 -0700388}
389
Jesse Halle1b12782015-11-30 11:27:32 -0800390VKAPI_ATTR
Chia-I Wu62262232016-03-26 07:06:44 +0800391VkResult CreateSwapchainKHR(VkDevice device,
392 const VkSwapchainCreateInfoKHR* create_info,
393 const VkAllocationCallbacks* allocator,
394 VkSwapchainKHR* swapchain_handle) {
Jesse Halld7b994a2015-09-07 14:17:37 -0700395 int err;
396 VkResult result = VK_SUCCESS;
397
Jesse Hall3d1c82a2016-04-22 15:28:29 -0700398 ALOGV("vkCreateSwapchainKHR: surface=0x%" PRIx64
399 " minImageCount=%u imageFormat=%u imageColorSpace=%u"
400 " imageExtent=%ux%u imageUsage=%#x preTransform=%u presentMode=%u"
401 " oldSwapchain=0x%" PRIx64,
402 reinterpret_cast<uint64_t>(create_info->surface),
403 create_info->minImageCount, create_info->imageFormat,
404 create_info->imageColorSpace, create_info->imageExtent.width,
405 create_info->imageExtent.height, create_info->imageUsage,
406 create_info->preTransform, create_info->presentMode,
407 reinterpret_cast<uint64_t>(create_info->oldSwapchain));
408
Jesse Hall1f91d392015-12-11 16:28:44 -0800409 if (!allocator)
Chia-I Wu4a6a9162016-03-26 07:17:34 +0800410 allocator = &GetData(device).allocator;
Jesse Hall1f91d392015-12-11 16:28:44 -0800411
Jesse Hall42a9eec2016-06-03 12:39:49 -0700412 ALOGV_IF(create_info->imageArrayLayers != 1,
Jesse Halldc225072016-05-30 22:40:14 -0700413 "swapchain imageArrayLayers=%u not supported",
Jesse Hall715b86a2016-01-16 16:34:29 -0800414 create_info->imageArrayLayers);
Jesse Hall42a9eec2016-06-03 12:39:49 -0700415 ALOGV_IF(create_info->imageColorSpace != VK_COLOR_SPACE_SRGB_NONLINEAR_KHR,
Jesse Halldc225072016-05-30 22:40:14 -0700416 "swapchain imageColorSpace=%u not supported",
417 create_info->imageColorSpace);
Jesse Hall42a9eec2016-06-03 12:39:49 -0700418 ALOGV_IF((create_info->preTransform & ~kSupportedTransforms) != 0,
Jesse Halldc225072016-05-30 22:40:14 -0700419 "swapchain preTransform=%#x not supported",
Jesse Hall55bc0972016-02-23 16:43:29 -0800420 create_info->preTransform);
Jesse Hall42a9eec2016-06-03 12:39:49 -0700421 ALOGV_IF(!(create_info->presentMode == VK_PRESENT_MODE_FIFO_KHR ||
Jesse Hall0ae0dce2016-02-09 22:13:34 -0800422 create_info->presentMode == VK_PRESENT_MODE_MAILBOX_KHR),
Jesse Halldc225072016-05-30 22:40:14 -0700423 "swapchain presentMode=%u not supported",
Jesse Hall0ae0dce2016-02-09 22:13:34 -0800424 create_info->presentMode);
Jesse Halld7b994a2015-09-07 14:17:37 -0700425
Jesse Hall3d1c82a2016-04-22 15:28:29 -0700426 Surface& surface = *SurfaceFromHandle(create_info->surface);
427
Jesse Halldc225072016-05-30 22:40:14 -0700428 if (surface.swapchain_handle != create_info->oldSwapchain) {
Jesse Hall42a9eec2016-06-03 12:39:49 -0700429 ALOGV("Can't create a swapchain for VkSurfaceKHR 0x%" PRIx64
Jesse Halldc225072016-05-30 22:40:14 -0700430 " because it already has active swapchain 0x%" PRIx64
431 " but VkSwapchainCreateInfo::oldSwapchain=0x%" PRIx64,
432 reinterpret_cast<uint64_t>(create_info->surface),
433 reinterpret_cast<uint64_t>(surface.swapchain_handle),
434 reinterpret_cast<uint64_t>(create_info->oldSwapchain));
435 return VK_ERROR_NATIVE_WINDOW_IN_USE_KHR;
436 }
437 if (create_info->oldSwapchain != VK_NULL_HANDLE)
438 OrphanSwapchain(device, SwapchainFromHandle(create_info->oldSwapchain));
439
Jesse Hall3d1c82a2016-04-22 15:28:29 -0700440 // -- Reset the native window --
441 // The native window might have been used previously, and had its properties
442 // changed from defaults. That will affect the answer we get for queries
443 // like MIN_UNDEQUED_BUFFERS. Reset to a known/default state before we
444 // attempt such queries.
445
Jesse Halldc225072016-05-30 22:40:14 -0700446 // The native window only allows dequeueing all buffers before any have
447 // been queued, since after that point at least one is assumed to be in
448 // non-FREE state at any given time. Disconnecting and re-connecting
449 // orphans the previous buffers, getting us back to the state where we can
450 // dequeue all buffers.
451 err = native_window_api_disconnect(surface.window.get(),
452 NATIVE_WINDOW_API_EGL);
453 ALOGW_IF(err != 0, "native_window_api_disconnect failed: %s (%d)",
454 strerror(-err), err);
455 err =
456 native_window_api_connect(surface.window.get(), NATIVE_WINDOW_API_EGL);
457 ALOGW_IF(err != 0, "native_window_api_connect failed: %s (%d)",
458 strerror(-err), err);
459
Jesse Hall3d1c82a2016-04-22 15:28:29 -0700460 err = native_window_set_buffer_count(surface.window.get(), 0);
461 if (err != 0) {
462 ALOGE("native_window_set_buffer_count(0) failed: %s (%d)",
463 strerror(-err), err);
464 return VK_ERROR_INITIALIZATION_FAILED;
465 }
466
467 err = surface.window->setSwapInterval(surface.window.get(), 1);
468 if (err != 0) {
469 // TODO(jessehall): Improve error reporting. Can we enumerate possible
470 // errors and translate them to valid Vulkan result codes?
471 ALOGE("native_window->setSwapInterval(1) failed: %s (%d)",
472 strerror(-err), err);
473 return VK_ERROR_INITIALIZATION_FAILED;
474 }
475
Jesse Halld7b994a2015-09-07 14:17:37 -0700476 // -- Configure the native window --
Jesse Halld7b994a2015-09-07 14:17:37 -0700477
Chia-I Wu4a6a9162016-03-26 07:17:34 +0800478 const auto& dispatch = GetData(device).driver;
Jesse Hall70f93352015-11-04 09:41:31 -0800479
Jesse Hall517274a2016-02-10 00:07:18 -0800480 int native_format = HAL_PIXEL_FORMAT_RGBA_8888;
481 switch (create_info->imageFormat) {
482 case VK_FORMAT_R8G8B8A8_UNORM:
483 case VK_FORMAT_R8G8B8A8_SRGB:
484 native_format = HAL_PIXEL_FORMAT_RGBA_8888;
485 break;
486 case VK_FORMAT_R5G6B5_UNORM_PACK16:
487 native_format = HAL_PIXEL_FORMAT_RGB_565;
488 break;
489 default:
Jesse Hall42a9eec2016-06-03 12:39:49 -0700490 ALOGV("unsupported swapchain format %d", create_info->imageFormat);
Jesse Hall517274a2016-02-10 00:07:18 -0800491 break;
492 }
493 err = native_window_set_buffers_format(surface.window.get(), native_format);
494 if (err != 0) {
495 // TODO(jessehall): Improve error reporting. Can we enumerate possible
496 // errors and translate them to valid Vulkan result codes?
497 ALOGE("native_window_set_buffers_format(%d) failed: %s (%d)",
498 native_format, strerror(-err), err);
499 return VK_ERROR_INITIALIZATION_FAILED;
500 }
501 err = native_window_set_buffers_data_space(surface.window.get(),
502 HAL_DATASPACE_SRGB_LINEAR);
503 if (err != 0) {
504 // TODO(jessehall): Improve error reporting. Can we enumerate possible
505 // errors and translate them to valid Vulkan result codes?
506 ALOGE("native_window_set_buffers_data_space(%d) failed: %s (%d)",
507 HAL_DATASPACE_SRGB_LINEAR, strerror(-err), err);
508 return VK_ERROR_INITIALIZATION_FAILED;
509 }
510
Jesse Hall3dd678a2016-01-08 21:52:01 -0800511 err = native_window_set_buffers_dimensions(
512 surface.window.get(), static_cast<int>(create_info->imageExtent.width),
513 static_cast<int>(create_info->imageExtent.height));
Jesse Halld7b994a2015-09-07 14:17:37 -0700514 if (err != 0) {
515 // TODO(jessehall): Improve error reporting. Can we enumerate possible
516 // errors and translate them to valid Vulkan result codes?
517 ALOGE("native_window_set_buffers_dimensions(%d,%d) failed: %s (%d)",
518 create_info->imageExtent.width, create_info->imageExtent.height,
519 strerror(-err), err);
Jesse Hall5ae3abb2015-10-08 14:00:22 -0700520 return VK_ERROR_INITIALIZATION_FAILED;
Jesse Halld7b994a2015-09-07 14:17:37 -0700521 }
522
Jesse Hall178b6962016-02-24 15:39:50 -0800523 // VkSwapchainCreateInfo::preTransform indicates the transformation the app
524 // applied during rendering. native_window_set_transform() expects the
525 // inverse: the transform the app is requesting that the compositor perform
526 // during composition. With native windows, pre-transform works by rendering
527 // with the same transform the compositor is applying (as in Vulkan), but
528 // then requesting the inverse transform, so that when the compositor does
529 // it's job the two transforms cancel each other out and the compositor ends
530 // up applying an identity transform to the app's buffer.
531 err = native_window_set_buffers_transform(
532 surface.window.get(),
533 InvertTransformToNative(create_info->preTransform));
534 if (err != 0) {
535 // TODO(jessehall): Improve error reporting. Can we enumerate possible
536 // errors and translate them to valid Vulkan result codes?
537 ALOGE("native_window_set_buffers_transform(%d) failed: %s (%d)",
538 InvertTransformToNative(create_info->preTransform),
539 strerror(-err), err);
540 return VK_ERROR_INITIALIZATION_FAILED;
541 }
542
Jesse Hallf64ca122015-11-03 16:11:10 -0800543 err = native_window_set_scaling_mode(
Jesse Hall1356b0d2015-11-23 17:24:58 -0800544 surface.window.get(), NATIVE_WINDOW_SCALING_MODE_SCALE_TO_WINDOW);
Jesse Hallf64ca122015-11-03 16:11:10 -0800545 if (err != 0) {
546 // TODO(jessehall): Improve error reporting. Can we enumerate possible
547 // errors and translate them to valid Vulkan result codes?
548 ALOGE("native_window_set_scaling_mode(SCALE_TO_WINDOW) failed: %s (%d)",
549 strerror(-err), err);
Jesse Hallf64ca122015-11-03 16:11:10 -0800550 return VK_ERROR_INITIALIZATION_FAILED;
551 }
552
Jesse Halle6080bf2016-02-28 20:58:50 -0800553 int query_value;
554 err = surface.window->query(surface.window.get(),
555 NATIVE_WINDOW_MIN_UNDEQUEUED_BUFFERS,
556 &query_value);
557 if (err != 0 || query_value < 0) {
Jesse Halld7b994a2015-09-07 14:17:37 -0700558 // TODO(jessehall): Improve error reporting. Can we enumerate possible
559 // errors and translate them to valid Vulkan result codes?
Jesse Halle6080bf2016-02-28 20:58:50 -0800560 ALOGE("window->query failed: %s (%d) value=%d", strerror(-err), err,
561 query_value);
Jesse Hall5ae3abb2015-10-08 14:00:22 -0700562 return VK_ERROR_INITIALIZATION_FAILED;
Jesse Halld7b994a2015-09-07 14:17:37 -0700563 }
Jesse Halle6080bf2016-02-28 20:58:50 -0800564 uint32_t min_undequeued_buffers = static_cast<uint32_t>(query_value);
Jesse Hall0ae0dce2016-02-09 22:13:34 -0800565 // The MIN_UNDEQUEUED_BUFFERS query doesn't know whether we'll be using
566 // async mode or not, and assumes not. But in async mode, the BufferQueue
567 // requires an extra undequeued buffer.
568 // See BufferQueueCore::getMinUndequeuedBufferCountLocked().
569 if (create_info->presentMode == VK_PRESENT_MODE_MAILBOX_KHR)
570 min_undequeued_buffers += 1;
571
Jesse Halld7b994a2015-09-07 14:17:37 -0700572 uint32_t num_images =
573 (create_info->minImageCount - 1) + min_undequeued_buffers;
Jesse Hall1356b0d2015-11-23 17:24:58 -0800574 err = native_window_set_buffer_count(surface.window.get(), num_images);
Jesse Halld7b994a2015-09-07 14:17:37 -0700575 if (err != 0) {
576 // TODO(jessehall): Improve error reporting. Can we enumerate possible
577 // errors and translate them to valid Vulkan result codes?
Jesse Hall3d1c82a2016-04-22 15:28:29 -0700578 ALOGE("native_window_set_buffer_count(%d) failed: %s (%d)", num_images,
579 strerror(-err), err);
Jesse Hall5ae3abb2015-10-08 14:00:22 -0700580 return VK_ERROR_INITIALIZATION_FAILED;
Jesse Halld7b994a2015-09-07 14:17:37 -0700581 }
582
Jesse Hall70f93352015-11-04 09:41:31 -0800583 int gralloc_usage = 0;
584 // TODO(jessehall): Remove conditional once all drivers have been updated
Jesse Hall1f91d392015-12-11 16:28:44 -0800585 if (dispatch.GetSwapchainGrallocUsageANDROID) {
586 result = dispatch.GetSwapchainGrallocUsageANDROID(
Jesse Hallf4ab2b12015-11-30 16:04:55 -0800587 device, create_info->imageFormat, create_info->imageUsage,
Jesse Hall70f93352015-11-04 09:41:31 -0800588 &gralloc_usage);
589 if (result != VK_SUCCESS) {
590 ALOGE("vkGetSwapchainGrallocUsageANDROID failed: %d", result);
Jesse Hall70f93352015-11-04 09:41:31 -0800591 return VK_ERROR_INITIALIZATION_FAILED;
592 }
593 } else {
594 gralloc_usage = GRALLOC_USAGE_HW_RENDER | GRALLOC_USAGE_HW_TEXTURE;
595 }
Jesse Hall1356b0d2015-11-23 17:24:58 -0800596 err = native_window_set_usage(surface.window.get(), gralloc_usage);
Jesse Hall70f93352015-11-04 09:41:31 -0800597 if (err != 0) {
598 // TODO(jessehall): Improve error reporting. Can we enumerate possible
599 // errors and translate them to valid Vulkan result codes?
600 ALOGE("native_window_set_usage failed: %s (%d)", strerror(-err), err);
Jesse Hall70f93352015-11-04 09:41:31 -0800601 return VK_ERROR_INITIALIZATION_FAILED;
602 }
Jesse Halld7b994a2015-09-07 14:17:37 -0700603
Jesse Hall3d1c82a2016-04-22 15:28:29 -0700604 int swap_interval =
605 create_info->presentMode == VK_PRESENT_MODE_MAILBOX_KHR ? 0 : 1;
606 err = surface.window->setSwapInterval(surface.window.get(), swap_interval);
Jesse Hall0ae0dce2016-02-09 22:13:34 -0800607 if (err != 0) {
608 // TODO(jessehall): Improve error reporting. Can we enumerate possible
609 // errors and translate them to valid Vulkan result codes?
Jesse Hall3d1c82a2016-04-22 15:28:29 -0700610 ALOGE("native_window->setSwapInterval(%d) failed: %s (%d)",
611 swap_interval, strerror(-err), err);
Jesse Hall0ae0dce2016-02-09 22:13:34 -0800612 return VK_ERROR_INITIALIZATION_FAILED;
613 }
614
Jesse Halld7b994a2015-09-07 14:17:37 -0700615 // -- Allocate our Swapchain object --
616 // After this point, we must deallocate the swapchain on error.
617
Jesse Hall1f91d392015-12-11 16:28:44 -0800618 void* mem = allocator->pfnAllocation(allocator->pUserData,
619 sizeof(Swapchain), alignof(Swapchain),
620 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
Jesse Hall1356b0d2015-11-23 17:24:58 -0800621 if (!mem)
Jesse Halld7b994a2015-09-07 14:17:37 -0700622 return VK_ERROR_OUT_OF_HOST_MEMORY;
Jesse Hall1356b0d2015-11-23 17:24:58 -0800623 Swapchain* swapchain = new (mem) Swapchain(surface, num_images);
Jesse Halld7b994a2015-09-07 14:17:37 -0700624
625 // -- Dequeue all buffers and create a VkImage for each --
626 // Any failures during or after this must cancel the dequeued buffers.
627
628 VkNativeBufferANDROID image_native_buffer = {
Jesse Halld7b994a2015-09-07 14:17:37 -0700629#pragma clang diagnostic push
630#pragma clang diagnostic ignored "-Wold-style-cast"
631 .sType = VK_STRUCTURE_TYPE_NATIVE_BUFFER_ANDROID,
632#pragma clang diagnostic pop
633 .pNext = nullptr,
634 };
635 VkImageCreateInfo image_create = {
636 .sType = VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO,
637 .pNext = &image_native_buffer,
638 .imageType = VK_IMAGE_TYPE_2D,
Jesse Hall517274a2016-02-10 00:07:18 -0800639 .format = create_info->imageFormat,
Jesse Halld7b994a2015-09-07 14:17:37 -0700640 .extent = {0, 0, 1},
641 .mipLevels = 1,
Jesse Halla15a4bf2015-11-19 22:48:02 -0800642 .arrayLayers = 1,
Jesse Hall091ed9e2015-11-30 00:55:29 -0800643 .samples = VK_SAMPLE_COUNT_1_BIT,
Jesse Halld7b994a2015-09-07 14:17:37 -0700644 .tiling = VK_IMAGE_TILING_OPTIMAL,
Jesse Hallf4ab2b12015-11-30 16:04:55 -0800645 .usage = create_info->imageUsage,
Jesse Halld7b994a2015-09-07 14:17:37 -0700646 .flags = 0,
Jesse Hallf4ab2b12015-11-30 16:04:55 -0800647 .sharingMode = create_info->imageSharingMode,
Jesse Hall03b6fe12015-11-24 12:44:21 -0800648 .queueFamilyIndexCount = create_info->queueFamilyIndexCount,
Jesse Halld7b994a2015-09-07 14:17:37 -0700649 .pQueueFamilyIndices = create_info->pQueueFamilyIndices,
650 };
651
Jesse Halld7b994a2015-09-07 14:17:37 -0700652 for (uint32_t i = 0; i < num_images; i++) {
653 Swapchain::Image& img = swapchain->images[i];
654
655 ANativeWindowBuffer* buffer;
Jesse Hall1356b0d2015-11-23 17:24:58 -0800656 err = surface.window->dequeueBuffer(surface.window.get(), &buffer,
657 &img.dequeue_fence);
Jesse Halld7b994a2015-09-07 14:17:37 -0700658 if (err != 0) {
659 // TODO(jessehall): Improve error reporting. Can we enumerate
660 // possible errors and translate them to valid Vulkan result codes?
661 ALOGE("dequeueBuffer[%u] failed: %s (%d)", i, strerror(-err), err);
Jesse Hall5ae3abb2015-10-08 14:00:22 -0700662 result = VK_ERROR_INITIALIZATION_FAILED;
Jesse Halld7b994a2015-09-07 14:17:37 -0700663 break;
664 }
Chia-I Wue8e689f2016-04-18 08:21:31 +0800665 img.buffer = buffer;
Jesse Halld7b994a2015-09-07 14:17:37 -0700666 img.dequeued = true;
667
668 image_create.extent =
Jesse Hall3dd678a2016-01-08 21:52:01 -0800669 VkExtent3D{static_cast<uint32_t>(img.buffer->width),
670 static_cast<uint32_t>(img.buffer->height),
671 1};
Jesse Halld7b994a2015-09-07 14:17:37 -0700672 image_native_buffer.handle = img.buffer->handle;
673 image_native_buffer.stride = img.buffer->stride;
674 image_native_buffer.format = img.buffer->format;
675 image_native_buffer.usage = img.buffer->usage;
676
Jesse Hall03b6fe12015-11-24 12:44:21 -0800677 result =
Jesse Hall1f91d392015-12-11 16:28:44 -0800678 dispatch.CreateImage(device, &image_create, nullptr, &img.image);
Jesse Halld7b994a2015-09-07 14:17:37 -0700679 if (result != VK_SUCCESS) {
680 ALOGD("vkCreateImage w/ native buffer failed: %u", result);
681 break;
682 }
683 }
684
685 // -- Cancel all buffers, returning them to the queue --
686 // If an error occurred before, also destroy the VkImage and release the
687 // buffer reference. Otherwise, we retain a strong reference to the buffer.
688 //
689 // TODO(jessehall): The error path here is the same as DestroySwapchain,
690 // but not the non-error path. Should refactor/unify.
691 for (uint32_t i = 0; i < num_images; i++) {
692 Swapchain::Image& img = swapchain->images[i];
693 if (img.dequeued) {
Jesse Hall1356b0d2015-11-23 17:24:58 -0800694 surface.window->cancelBuffer(surface.window.get(), img.buffer.get(),
695 img.dequeue_fence);
Jesse Halld7b994a2015-09-07 14:17:37 -0700696 img.dequeue_fence = -1;
697 img.dequeued = false;
698 }
699 if (result != VK_SUCCESS) {
700 if (img.image)
Jesse Hall1f91d392015-12-11 16:28:44 -0800701 dispatch.DestroyImage(device, img.image, nullptr);
Jesse Halld7b994a2015-09-07 14:17:37 -0700702 }
703 }
704
705 if (result != VK_SUCCESS) {
Jesse Halld7b994a2015-09-07 14:17:37 -0700706 swapchain->~Swapchain();
Jesse Hall1f91d392015-12-11 16:28:44 -0800707 allocator->pfnFree(allocator->pUserData, swapchain);
Jesse Halld7b994a2015-09-07 14:17:37 -0700708 return result;
709 }
710
Jesse Halldc225072016-05-30 22:40:14 -0700711 surface.swapchain_handle = HandleFromSwapchain(swapchain);
712 *swapchain_handle = surface.swapchain_handle;
Jesse Hallb1352bc2015-09-04 16:12:33 -0700713 return VK_SUCCESS;
714}
715
Jesse Halle1b12782015-11-30 11:27:32 -0800716VKAPI_ATTR
Chia-I Wu62262232016-03-26 07:06:44 +0800717void DestroySwapchainKHR(VkDevice device,
718 VkSwapchainKHR swapchain_handle,
719 const VkAllocationCallbacks* allocator) {
Chia-I Wu4a6a9162016-03-26 07:17:34 +0800720 const auto& dispatch = GetData(device).driver;
Jesse Halld7b994a2015-09-07 14:17:37 -0700721 Swapchain* swapchain = SwapchainFromHandle(swapchain_handle);
Jesse Hall42a9eec2016-06-03 12:39:49 -0700722 bool active = swapchain->surface.swapchain_handle == swapchain_handle;
723 ANativeWindow* window = active ? swapchain->surface.window.get() : nullptr;
Jesse Halld7b994a2015-09-07 14:17:37 -0700724
Jesse Halldc225072016-05-30 22:40:14 -0700725 for (uint32_t i = 0; i < swapchain->num_images; i++)
726 ReleaseSwapchainImage(device, window, -1, swapchain->images[i]);
Jesse Hall42a9eec2016-06-03 12:39:49 -0700727 if (active)
Jesse Halldc225072016-05-30 22:40:14 -0700728 swapchain->surface.swapchain_handle = VK_NULL_HANDLE;
Jesse Hall1f91d392015-12-11 16:28:44 -0800729 if (!allocator)
Chia-I Wu4a6a9162016-03-26 07:17:34 +0800730 allocator = &GetData(device).allocator;
Jesse Halld7b994a2015-09-07 14:17:37 -0700731 swapchain->~Swapchain();
Jesse Hall1f91d392015-12-11 16:28:44 -0800732 allocator->pfnFree(allocator->pUserData, swapchain);
Jesse Hallb1352bc2015-09-04 16:12:33 -0700733}
734
Jesse Halle1b12782015-11-30 11:27:32 -0800735VKAPI_ATTR
Chia-I Wu62262232016-03-26 07:06:44 +0800736VkResult GetSwapchainImagesKHR(VkDevice,
737 VkSwapchainKHR swapchain_handle,
738 uint32_t* count,
739 VkImage* images) {
Jesse Halld7b994a2015-09-07 14:17:37 -0700740 Swapchain& swapchain = *SwapchainFromHandle(swapchain_handle);
Jesse Halldc225072016-05-30 22:40:14 -0700741 ALOGW_IF(swapchain.surface.swapchain_handle != swapchain_handle,
742 "getting images for non-active swapchain 0x%" PRIx64
743 "; only dequeued image handles are valid",
744 reinterpret_cast<uint64_t>(swapchain_handle));
Jesse Halld7b994a2015-09-07 14:17:37 -0700745 VkResult result = VK_SUCCESS;
746 if (images) {
747 uint32_t n = swapchain.num_images;
748 if (*count < swapchain.num_images) {
749 n = *count;
750 result = VK_INCOMPLETE;
751 }
752 for (uint32_t i = 0; i < n; i++)
753 images[i] = swapchain.images[i].image;
754 }
755 *count = swapchain.num_images;
756 return result;
Jesse Hallb1352bc2015-09-04 16:12:33 -0700757}
758
Jesse Halle1b12782015-11-30 11:27:32 -0800759VKAPI_ATTR
Chia-I Wu62262232016-03-26 07:06:44 +0800760VkResult AcquireNextImageKHR(VkDevice device,
761 VkSwapchainKHR swapchain_handle,
762 uint64_t timeout,
763 VkSemaphore semaphore,
764 VkFence vk_fence,
765 uint32_t* image_index) {
Jesse Halld7b994a2015-09-07 14:17:37 -0700766 Swapchain& swapchain = *SwapchainFromHandle(swapchain_handle);
Jesse Hall1356b0d2015-11-23 17:24:58 -0800767 ANativeWindow* window = swapchain.surface.window.get();
Jesse Halld7b994a2015-09-07 14:17:37 -0700768 VkResult result;
769 int err;
770
Jesse Halldc225072016-05-30 22:40:14 -0700771 if (swapchain.surface.swapchain_handle != swapchain_handle)
772 return VK_ERROR_OUT_OF_DATE_KHR;
773
Jesse Halld7b994a2015-09-07 14:17:37 -0700774 ALOGW_IF(
775 timeout != UINT64_MAX,
776 "vkAcquireNextImageKHR: non-infinite timeouts not yet implemented");
777
778 ANativeWindowBuffer* buffer;
Jesse Hall06193802015-12-03 16:12:51 -0800779 int fence_fd;
780 err = window->dequeueBuffer(window, &buffer, &fence_fd);
Jesse Halld7b994a2015-09-07 14:17:37 -0700781 if (err != 0) {
782 // TODO(jessehall): Improve error reporting. Can we enumerate possible
783 // errors and translate them to valid Vulkan result codes?
784 ALOGE("dequeueBuffer failed: %s (%d)", strerror(-err), err);
Jesse Hall5ae3abb2015-10-08 14:00:22 -0700785 return VK_ERROR_INITIALIZATION_FAILED;
Jesse Halld7b994a2015-09-07 14:17:37 -0700786 }
787
788 uint32_t idx;
789 for (idx = 0; idx < swapchain.num_images; idx++) {
790 if (swapchain.images[idx].buffer.get() == buffer) {
791 swapchain.images[idx].dequeued = true;
Jesse Hall06193802015-12-03 16:12:51 -0800792 swapchain.images[idx].dequeue_fence = fence_fd;
Jesse Halld7b994a2015-09-07 14:17:37 -0700793 break;
794 }
795 }
796 if (idx == swapchain.num_images) {
797 ALOGE("dequeueBuffer returned unrecognized buffer");
Jesse Hall06193802015-12-03 16:12:51 -0800798 window->cancelBuffer(window, buffer, fence_fd);
Jesse Halld7b994a2015-09-07 14:17:37 -0700799 return VK_ERROR_OUT_OF_DATE_KHR;
Jesse Halld7b994a2015-09-07 14:17:37 -0700800 }
801
802 int fence_clone = -1;
Jesse Hall06193802015-12-03 16:12:51 -0800803 if (fence_fd != -1) {
804 fence_clone = dup(fence_fd);
Jesse Halld7b994a2015-09-07 14:17:37 -0700805 if (fence_clone == -1) {
806 ALOGE("dup(fence) failed, stalling until signalled: %s (%d)",
807 strerror(errno), errno);
Jesse Hall06193802015-12-03 16:12:51 -0800808 sync_wait(fence_fd, -1 /* forever */);
Jesse Halld7b994a2015-09-07 14:17:37 -0700809 }
810 }
811
Chia-I Wu4a6a9162016-03-26 07:17:34 +0800812 result = GetData(device).driver.AcquireImageANDROID(
Jesse Hall1f91d392015-12-11 16:28:44 -0800813 device, swapchain.images[idx].image, fence_clone, semaphore, vk_fence);
Jesse Halld7b994a2015-09-07 14:17:37 -0700814 if (result != VK_SUCCESS) {
Jesse Hallab9aeef2015-11-04 10:56:20 -0800815 // NOTE: we're relying on AcquireImageANDROID to close fence_clone,
816 // even if the call fails. We could close it ourselves on failure, but
817 // that would create a race condition if the driver closes it on a
818 // failure path: some other thread might create an fd with the same
819 // number between the time the driver closes it and the time we close
820 // it. We must assume one of: the driver *always* closes it even on
821 // failure, or *never* closes it on failure.
Jesse Hall06193802015-12-03 16:12:51 -0800822 window->cancelBuffer(window, buffer, fence_fd);
Jesse Halld7b994a2015-09-07 14:17:37 -0700823 swapchain.images[idx].dequeued = false;
824 swapchain.images[idx].dequeue_fence = -1;
825 return result;
826 }
827
828 *image_index = idx;
Jesse Hallb1352bc2015-09-04 16:12:33 -0700829 return VK_SUCCESS;
830}
831
Jesse Halldc225072016-05-30 22:40:14 -0700832static VkResult WorstPresentResult(VkResult a, VkResult b) {
833 // See the error ranking for vkQueuePresentKHR at the end of section 29.6
834 // (in spec version 1.0.14).
835 static const VkResult kWorstToBest[] = {
836 VK_ERROR_DEVICE_LOST,
837 VK_ERROR_SURFACE_LOST_KHR,
838 VK_ERROR_OUT_OF_DATE_KHR,
839 VK_ERROR_OUT_OF_DEVICE_MEMORY,
840 VK_ERROR_OUT_OF_HOST_MEMORY,
841 VK_SUBOPTIMAL_KHR,
842 };
843 for (auto result : kWorstToBest) {
844 if (a == result || b == result)
845 return result;
846 }
847 ALOG_ASSERT(a == VK_SUCCESS, "invalid vkQueuePresentKHR result %d", a);
848 ALOG_ASSERT(b == VK_SUCCESS, "invalid vkQueuePresentKHR result %d", b);
849 return a != VK_SUCCESS ? a : b;
850}
851
Jesse Halle1b12782015-11-30 11:27:32 -0800852VKAPI_ATTR
Chia-I Wu62262232016-03-26 07:06:44 +0800853VkResult QueuePresentKHR(VkQueue queue, const VkPresentInfoKHR* present_info) {
Jesse Halld7b994a2015-09-07 14:17:37 -0700854 ALOGV_IF(present_info->sType != VK_STRUCTURE_TYPE_PRESENT_INFO_KHR,
855 "vkQueuePresentKHR: invalid VkPresentInfoKHR structure type %d",
856 present_info->sType);
Jesse Halld7b994a2015-09-07 14:17:37 -0700857 ALOGV_IF(present_info->pNext, "VkPresentInfo::pNext != NULL");
858
Jesse Halldc225072016-05-30 22:40:14 -0700859 VkDevice device = GetData(queue).driver_device;
Chia-I Wu4a6a9162016-03-26 07:17:34 +0800860 const auto& dispatch = GetData(queue).driver;
Jesse Halld7b994a2015-09-07 14:17:37 -0700861 VkResult final_result = VK_SUCCESS;
Jesse Halldc225072016-05-30 22:40:14 -0700862
Jesse Halld7b994a2015-09-07 14:17:37 -0700863 for (uint32_t sc = 0; sc < present_info->swapchainCount; sc++) {
864 Swapchain& swapchain =
Jesse Hall03b6fe12015-11-24 12:44:21 -0800865 *SwapchainFromHandle(present_info->pSwapchains[sc]);
Jesse Hallf4ab2b12015-11-30 16:04:55 -0800866 uint32_t image_idx = present_info->pImageIndices[sc];
Jesse Hall5ae3abb2015-10-08 14:00:22 -0700867 Swapchain::Image& img = swapchain.images[image_idx];
Jesse Halldc225072016-05-30 22:40:14 -0700868 VkResult swapchain_result = VK_SUCCESS;
Jesse Halld7b994a2015-09-07 14:17:37 -0700869 VkResult result;
870 int err;
871
Jesse Halld7b994a2015-09-07 14:17:37 -0700872 int fence = -1;
Jesse Hall275d76c2016-01-08 22:39:16 -0800873 result = dispatch.QueueSignalReleaseImageANDROID(
874 queue, present_info->waitSemaphoreCount,
875 present_info->pWaitSemaphores, img.image, &fence);
Jesse Halld7b994a2015-09-07 14:17:37 -0700876 if (result != VK_SUCCESS) {
Jesse Hallab9aeef2015-11-04 10:56:20 -0800877 ALOGE("QueueSignalReleaseImageANDROID failed: %d", result);
Jesse Halldc225072016-05-30 22:40:14 -0700878 swapchain_result = result;
Jesse Halld7b994a2015-09-07 14:17:37 -0700879 }
880
Jesse Halldc225072016-05-30 22:40:14 -0700881 if (swapchain.surface.swapchain_handle ==
882 present_info->pSwapchains[sc]) {
883 ANativeWindow* window = swapchain.surface.window.get();
884 if (swapchain_result == VK_SUCCESS) {
885 err = window->queueBuffer(window, img.buffer.get(), fence);
886 // queueBuffer always closes fence, even on error
887 if (err != 0) {
888 // TODO(jessehall): What now? We should probably cancel the
889 // buffer, I guess?
890 ALOGE("queueBuffer failed: %s (%d)", strerror(-err), err);
891 swapchain_result = WorstPresentResult(
892 swapchain_result, VK_ERROR_OUT_OF_DATE_KHR);
893 }
894 if (img.dequeue_fence >= 0) {
895 close(img.dequeue_fence);
896 img.dequeue_fence = -1;
897 }
898 img.dequeued = false;
899 }
900 if (swapchain_result != VK_SUCCESS) {
901 ReleaseSwapchainImage(device, window, fence, img);
902 OrphanSwapchain(device, &swapchain);
903 }
904 } else {
905 ReleaseSwapchainImage(device, nullptr, fence, img);
906 swapchain_result = VK_ERROR_OUT_OF_DATE_KHR;
Jesse Halld7b994a2015-09-07 14:17:37 -0700907 }
908
Jesse Halla9e57032015-11-30 01:03:10 -0800909 if (present_info->pResults)
Jesse Halldc225072016-05-30 22:40:14 -0700910 present_info->pResults[sc] = swapchain_result;
911
912 if (swapchain_result != final_result)
913 final_result = WorstPresentResult(final_result, swapchain_result);
Jesse Halld7b994a2015-09-07 14:17:37 -0700914 }
915
916 return final_result;
917}
Jesse Hallb1352bc2015-09-04 16:12:33 -0700918
Chia-I Wu62262232016-03-26 07:06:44 +0800919} // namespace driver
Jesse Hallb1352bc2015-09-04 16:12:33 -0700920} // namespace vulkan