blob: e03ee0a27abc257272ede3b312b555bcd519c185 [file] [log] [blame]
Jesse Halld02edcb2015-09-08 07:44:48 -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 Hall04f4f472015-08-16 19:51:04 -070017#include <hardware/hwvulkan.h>
18
Jesse Hall715b86a2016-01-16 16:34:29 -080019#include <inttypes.h>
Jesse Halld3b14502016-04-20 16:58:11 -070020#include <stdlib.h>
Jesse Hall715b86a2016-01-16 16:34:29 -080021#include <string.h>
Jesse Hall04f4f472015-08-16 19:51:04 -070022
Mark Salyzyna5e161b2016-09-29 08:08:05 -070023#include <algorithm>
24#include <array>
25
Mark Salyzyn7823e122016-09-29 08:08:05 -070026#include <log/log.h>
Jesse Hall04f4f472015-08-16 19:51:04 -070027#include <utils/Errors.h>
28
Jesse Hall1f91d392015-12-11 16:28:44 -080029#include "null_driver_gen.h"
Jesse Hall04f4f472015-08-16 19:51:04 -070030
31using namespace null_driver;
32
33struct VkPhysicalDevice_T {
34 hwvulkan_dispatch_t dispatch;
35};
36
37struct VkInstance_T {
38 hwvulkan_dispatch_t dispatch;
Jesse Hall3fbc8562015-11-29 22:10:52 -080039 VkAllocationCallbacks allocator;
Jesse Hall04f4f472015-08-16 19:51:04 -070040 VkPhysicalDevice_T physical_device;
Jesse Hall715b86a2016-01-16 16:34:29 -080041 uint64_t next_callback_handle;
Jesse Hall04f4f472015-08-16 19:51:04 -070042};
43
44struct VkQueue_T {
45 hwvulkan_dispatch_t dispatch;
46};
47
Jesse Hall3fbc8562015-11-29 22:10:52 -080048struct VkCommandBuffer_T {
Jesse Hall04f4f472015-08-16 19:51:04 -070049 hwvulkan_dispatch_t dispatch;
50};
51
Jesse Hallf8faf0c2015-08-31 11:34:32 -070052namespace {
53// Handles for non-dispatchable objects are either pointers, or arbitrary
54// 64-bit non-zero values. We only use pointers when we need to keep state for
55// the object even in a null driver. For the rest, we form a handle as:
56// [63:63] = 1 to distinguish from pointer handles*
57// [62:56] = non-zero handle type enum value
58// [55: 0] = per-handle-type incrementing counter
59// * This works because virtual addresses with the high bit set are reserved
60// for kernel data in all ABIs we run on.
61//
62// We never reclaim handles on vkDestroy*. It's not even necessary for us to
63// have distinct handles for live objects, and practically speaking we won't
64// ever create 2^56 objects of the same type from a single VkDevice in a null
65// driver.
66//
67// Using a namespace here instead of 'enum class' since we want scoped
68// constants but also want implicit conversions to integral types.
69namespace HandleType {
Jesse Hallc7a6eb52015-08-31 12:52:03 -070070enum Enum {
Jesse Hallc7a6eb52015-08-31 12:52:03 -070071 kBufferView,
Jesse Hall715b86a2016-01-16 16:34:29 -080072 kDebugReportCallbackEXT,
Jesse Hallc7a6eb52015-08-31 12:52:03 -070073 kDescriptorPool,
74 kDescriptorSet,
75 kDescriptorSetLayout,
Jesse Hallc7a6eb52015-08-31 12:52:03 -070076 kEvent,
77 kFence,
78 kFramebuffer,
79 kImageView,
80 kPipeline,
81 kPipelineCache,
82 kPipelineLayout,
83 kQueryPool,
84 kRenderPass,
85 kSampler,
86 kSemaphore,
Jesse Hallc7a6eb52015-08-31 12:52:03 -070087 kShaderModule,
Jesse Hallf8faf0c2015-08-31 11:34:32 -070088
Jesse Hallc7a6eb52015-08-31 12:52:03 -070089 kNumTypes
90};
91} // namespace HandleType
Jesse Hallbde8ee32015-09-01 16:24:29 -070092
Jesse Hall00f10fe2016-02-08 21:20:20 -080093const VkDeviceSize kMaxDeviceMemory = 0x10000000; // 256 MiB, arbitrary
Jesse Hallbde8ee32015-09-01 16:24:29 -070094
Jesse Hallc7a6eb52015-08-31 12:52:03 -070095} // anonymous namespace
Jesse Hallf8faf0c2015-08-31 11:34:32 -070096
Jesse Hall04f4f472015-08-16 19:51:04 -070097struct VkDevice_T {
98 hwvulkan_dispatch_t dispatch;
Jesse Hall3fbc8562015-11-29 22:10:52 -080099 VkAllocationCallbacks allocator;
Jesse Hall04f4f472015-08-16 19:51:04 -0700100 VkInstance_T* instance;
101 VkQueue_T queue;
Jesse Hallf8faf0c2015-08-31 11:34:32 -0700102 std::array<uint64_t, HandleType::kNumTypes> next_handle;
Jesse Hall04f4f472015-08-16 19:51:04 -0700103};
104
105// -----------------------------------------------------------------------------
106// Declare HAL_MODULE_INFO_SYM early so it can be referenced by nulldrv_device
107// later.
108
109namespace {
110int OpenDevice(const hw_module_t* module, const char* id, hw_device_t** device);
111hw_module_methods_t nulldrv_module_methods = {.open = OpenDevice};
112} // namespace
113
114#pragma clang diagnostic push
115#pragma clang diagnostic ignored "-Wmissing-variable-declarations"
116__attribute__((visibility("default"))) hwvulkan_module_t HAL_MODULE_INFO_SYM = {
117 .common =
118 {
Michael Lentine03c64b02015-08-26 18:27:26 -0500119 .tag = HARDWARE_MODULE_TAG,
120 .module_api_version = HWVULKAN_MODULE_API_VERSION_0_1,
121 .hal_api_version = HARDWARE_HAL_API_VERSION,
122 .id = HWVULKAN_HARDWARE_MODULE_ID,
123 .name = "Null Vulkan Driver",
124 .author = "The Android Open Source Project",
125 .methods = &nulldrv_module_methods,
Jesse Hall04f4f472015-08-16 19:51:04 -0700126 },
127};
128#pragma clang diagnostic pop
129
130// -----------------------------------------------------------------------------
131
132namespace {
133
Jesse Hall04f4f472015-08-16 19:51:04 -0700134int CloseDevice(struct hw_device_t* /*device*/) {
135 // nothing to do - opening a device doesn't allocate any resources
136 return 0;
137}
138
139hwvulkan_device_t nulldrv_device = {
140 .common =
141 {
Michael Lentine03c64b02015-08-26 18:27:26 -0500142 .tag = HARDWARE_DEVICE_TAG,
143 .version = HWVULKAN_DEVICE_API_VERSION_0_1,
144 .module = &HAL_MODULE_INFO_SYM.common,
145 .close = CloseDevice,
Jesse Hall04f4f472015-08-16 19:51:04 -0700146 },
Jesse Hall5ae3abb2015-10-08 14:00:22 -0700147 .EnumerateInstanceExtensionProperties =
148 EnumerateInstanceExtensionProperties,
Jesse Hall04f4f472015-08-16 19:51:04 -0700149 .CreateInstance = CreateInstance,
150 .GetInstanceProcAddr = GetInstanceProcAddr};
151
152int OpenDevice(const hw_module_t* /*module*/,
153 const char* id,
154 hw_device_t** device) {
155 if (strcmp(id, HWVULKAN_DEVICE_0) == 0) {
156 *device = &nulldrv_device.common;
157 return 0;
158 }
159 return -ENOENT;
160}
161
162VkInstance_T* GetInstanceFromPhysicalDevice(
163 VkPhysicalDevice_T* physical_device) {
164 return reinterpret_cast<VkInstance_T*>(
165 reinterpret_cast<uintptr_t>(physical_device) -
166 offsetof(VkInstance_T, physical_device));
167}
168
Jesse Hall715b86a2016-01-16 16:34:29 -0800169uint64_t AllocHandle(uint64_t type, uint64_t* next_handle) {
170 const uint64_t kHandleMask = (UINT64_C(1) << 56) - 1;
171 ALOGE_IF(*next_handle == kHandleMask,
172 "non-dispatchable handles of type=%" PRIu64
173 " are about to overflow",
174 type);
175 return (UINT64_C(1) << 63) | ((type & 0x7) << 56) |
176 ((*next_handle)++ & kHandleMask);
177}
178
179template <class Handle>
180Handle AllocHandle(VkInstance instance, HandleType::Enum type) {
181 return reinterpret_cast<Handle>(
182 AllocHandle(type, &instance->next_callback_handle));
183}
184
Michael Lentine3fec89e2015-12-04 16:25:11 -0800185template <class Handle>
186Handle AllocHandle(VkDevice device, HandleType::Enum type) {
Michael Lentine3fec89e2015-12-04 16:25:11 -0800187 return reinterpret_cast<Handle>(
Jesse Hall715b86a2016-01-16 16:34:29 -0800188 AllocHandle(type, &device->next_handle[type]));
Jesse Hallf8faf0c2015-08-31 11:34:32 -0700189}
190
Jesse Halld3b14502016-04-20 16:58:11 -0700191VKAPI_ATTR void* DefaultAllocate(void*,
192 size_t size,
193 size_t alignment,
194 VkSystemAllocationScope) {
195 void* ptr = nullptr;
196 // Vulkan requires 'alignment' to be a power of two, but posix_memalign
197 // additionally requires that it be at least sizeof(void*).
198 int ret = posix_memalign(&ptr, std::max(alignment, sizeof(void*)), size);
199 return ret == 0 ? ptr : nullptr;
200}
201
202VKAPI_ATTR void* DefaultReallocate(void*,
203 void* ptr,
204 size_t size,
205 size_t alignment,
206 VkSystemAllocationScope) {
207 if (size == 0) {
208 free(ptr);
209 return nullptr;
210 }
211
212 // TODO(jessehall): Right now we never shrink allocations; if the new
213 // request is smaller than the existing chunk, we just continue using it.
214 // The null driver never reallocs, so this doesn't matter. If that changes,
215 // or if this code is copied into some other project, this should probably
216 // have a heuristic to allocate-copy-free when doing so will save "enough"
217 // space.
218 size_t old_size = ptr ? malloc_usable_size(ptr) : 0;
219 if (size <= old_size)
220 return ptr;
221
222 void* new_ptr = nullptr;
223 if (posix_memalign(&new_ptr, std::max(alignment, sizeof(void*)), size) != 0)
224 return nullptr;
225 if (ptr) {
226 memcpy(new_ptr, ptr, std::min(old_size, size));
227 free(ptr);
228 }
229 return new_ptr;
230}
231
232VKAPI_ATTR void DefaultFree(void*, void* ptr) {
233 free(ptr);
234}
235
236const VkAllocationCallbacks kDefaultAllocCallbacks = {
237 .pUserData = nullptr,
238 .pfnAllocation = DefaultAllocate,
239 .pfnReallocation = DefaultReallocate,
240 .pfnFree = DefaultFree,
241};
242
Jesse Hall04f4f472015-08-16 19:51:04 -0700243} // namespace
244
245namespace null_driver {
246
Jesse Halla3a7a1d2015-11-24 11:37:23 -0800247#define DEFINE_OBJECT_HANDLE_CONVERSION(T) \
248 T* Get##T##FromHandle(Vk##T h); \
249 T* Get##T##FromHandle(Vk##T h) { \
250 return reinterpret_cast<T*>(uintptr_t(h)); \
251 } \
252 Vk##T GetHandleTo##T(const T* obj); \
253 Vk##T GetHandleTo##T(const T* obj) { \
254 return Vk##T(reinterpret_cast<uintptr_t>(obj)); \
255 }
Jesse Hallf6578742015-08-29 17:06:12 +0100256
Jesse Hall73ab0ac2015-08-25 15:09:15 +0100257// -----------------------------------------------------------------------------
258// Global
259
Jesse Halle1b12782015-11-30 11:27:32 -0800260VKAPI_ATTR
Jesse Hall715b86a2016-01-16 16:34:29 -0800261VkResult EnumerateInstanceExtensionProperties(
262 const char* layer_name,
263 uint32_t* count,
264 VkExtensionProperties* properties) {
265 if (layer_name) {
266 ALOGW(
267 "Driver vkEnumerateInstanceExtensionProperties shouldn't be called "
268 "with a layer name ('%s')",
269 layer_name);
Jesse Hall715b86a2016-01-16 16:34:29 -0800270 }
271
272 const VkExtensionProperties kExtensions[] = {
Chris Forbes86bdfbe2017-01-26 12:45:49 +1300273 {VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME, VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_SPEC_VERSION}};
Jesse Hall715b86a2016-01-16 16:34:29 -0800274 const uint32_t kExtensionsCount =
275 sizeof(kExtensions) / sizeof(kExtensions[0]);
276
277 if (!properties || *count > kExtensionsCount)
278 *count = kExtensionsCount;
279 if (properties)
280 std::copy(kExtensions, kExtensions + *count, properties);
281 return *count < kExtensionsCount ? VK_INCOMPLETE : VK_SUCCESS;
Jesse Hall73ab0ac2015-08-25 15:09:15 +0100282}
283
Jesse Halle1b12782015-11-30 11:27:32 -0800284VKAPI_ATTR
Jesse Hall715b86a2016-01-16 16:34:29 -0800285VkResult CreateInstance(const VkInstanceCreateInfo* create_info,
Jesse Hall1f91d392015-12-11 16:28:44 -0800286 const VkAllocationCallbacks* allocator,
287 VkInstance* out_instance) {
Jesse Halld3b14502016-04-20 16:58:11 -0700288 if (!allocator)
289 allocator = &kDefaultAllocCallbacks;
Jesse Hall1f91d392015-12-11 16:28:44 -0800290
291 VkInstance_T* instance =
292 static_cast<VkInstance_T*>(allocator->pfnAllocation(
293 allocator->pUserData, sizeof(VkInstance_T), alignof(VkInstance_T),
294 VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE));
295 if (!instance)
296 return VK_ERROR_OUT_OF_HOST_MEMORY;
297
298 instance->dispatch.magic = HWVULKAN_DISPATCH_MAGIC;
299 instance->allocator = *allocator;
300 instance->physical_device.dispatch.magic = HWVULKAN_DISPATCH_MAGIC;
Jesse Hall715b86a2016-01-16 16:34:29 -0800301 instance->next_callback_handle = 0;
Jesse Hall715b86a2016-01-16 16:34:29 -0800302
303 for (uint32_t i = 0; i < create_info->enabledExtensionCount; i++) {
304 if (strcmp(create_info->ppEnabledExtensionNames[i],
Chris Forbes86bdfbe2017-01-26 12:45:49 +1300305 VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME) == 0) {
306 ALOGV("instance extension '%s' requested",
307 create_info->ppEnabledExtensionNames[i]);
308 } else if (strcmp(create_info->ppEnabledExtensionNames[i],
Jesse Hall715b86a2016-01-16 16:34:29 -0800309 VK_EXT_DEBUG_REPORT_EXTENSION_NAME) == 0) {
Jesse Hallb1471272016-01-17 21:36:58 -0800310 ALOGV("instance extension '%s' requested",
311 create_info->ppEnabledExtensionNames[i]);
312 } else {
313 ALOGW("unsupported extension '%s' requested",
314 create_info->ppEnabledExtensionNames[i]);
Jesse Hall715b86a2016-01-16 16:34:29 -0800315 }
316 }
Jesse Hall1f91d392015-12-11 16:28:44 -0800317
318 *out_instance = instance;
319 return VK_SUCCESS;
320}
321
322VKAPI_ATTR
323PFN_vkVoidFunction GetInstanceProcAddr(VkInstance instance, const char* name) {
324 return instance ? GetInstanceProcAddr(name) : GetGlobalProcAddr(name);
Jesse Hall04f4f472015-08-16 19:51:04 -0700325}
326
Jesse Halle1b12782015-11-30 11:27:32 -0800327VKAPI_ATTR
Jesse Hall04f4f472015-08-16 19:51:04 -0700328PFN_vkVoidFunction GetDeviceProcAddr(VkDevice, const char* name) {
Jesse Hall1f91d392015-12-11 16:28:44 -0800329 return GetInstanceProcAddr(name);
Jesse Hall04f4f472015-08-16 19:51:04 -0700330}
331
Jesse Hall73ab0ac2015-08-25 15:09:15 +0100332// -----------------------------------------------------------------------------
333// Instance
334
Jesse Hall03b6fe12015-11-24 12:44:21 -0800335void DestroyInstance(VkInstance instance,
Jesse Hall3fbc8562015-11-29 22:10:52 -0800336 const VkAllocationCallbacks* /*allocator*/) {
Jesse Hall03b6fe12015-11-24 12:44:21 -0800337 instance->allocator.pfnFree(instance->allocator.pUserData, instance);
Jesse Hall04f4f472015-08-16 19:51:04 -0700338}
339
Jesse Hall73ab0ac2015-08-25 15:09:15 +0100340// -----------------------------------------------------------------------------
341// PhysicalDevice
342
Jesse Hall04f4f472015-08-16 19:51:04 -0700343VkResult EnumeratePhysicalDevices(VkInstance instance,
344 uint32_t* physical_device_count,
345 VkPhysicalDevice* physical_devices) {
346 if (physical_devices && *physical_device_count >= 1)
347 physical_devices[0] = &instance->physical_device;
348 *physical_device_count = 1;
349 return VK_SUCCESS;
350}
351
Jesse Hall57f7f8c2016-01-17 17:21:36 -0800352VkResult EnumerateDeviceLayerProperties(VkPhysicalDevice /*gpu*/,
353 uint32_t* count,
354 VkLayerProperties* /*properties*/) {
355 ALOGW("Driver vkEnumerateDeviceLayerProperties shouldn't be called");
356 *count = 0;
357 return VK_SUCCESS;
358}
359
360VkResult EnumerateDeviceExtensionProperties(VkPhysicalDevice /*gpu*/,
361 const char* layer_name,
362 uint32_t* count,
363 VkExtensionProperties* properties) {
364 if (layer_name) {
365 ALOGW(
366 "Driver vkEnumerateDeviceExtensionProperties shouldn't be called "
367 "with a layer name ('%s')",
368 layer_name);
369 *count = 0;
370 return VK_SUCCESS;
371 }
372
373 const VkExtensionProperties kExtensions[] = {
374 {VK_ANDROID_NATIVE_BUFFER_EXTENSION_NAME,
375 VK_ANDROID_NATIVE_BUFFER_SPEC_VERSION}};
376 const uint32_t kExtensionsCount =
377 sizeof(kExtensions) / sizeof(kExtensions[0]);
378
379 if (!properties || *count > kExtensionsCount)
380 *count = kExtensionsCount;
381 if (properties)
382 std::copy(kExtensions, kExtensions + *count, properties);
383 return *count < kExtensionsCount ? VK_INCOMPLETE : VK_SUCCESS;
384}
385
Jesse Hall606a54e2015-11-19 22:17:28 -0800386void GetPhysicalDeviceProperties(VkPhysicalDevice,
387 VkPhysicalDeviceProperties* properties) {
Jesse Hall26763382016-05-20 07:13:52 -0700388 properties->apiVersion = VK_MAKE_VERSION(1, 0, VK_HEADER_VERSION);
Jesse Hall04f4f472015-08-16 19:51:04 -0700389 properties->driverVersion = VK_MAKE_VERSION(0, 0, 1);
Jesse Hall65ab5522015-11-30 00:07:16 -0800390 properties->vendorID = 0;
391 properties->deviceID = 0;
Jesse Hall04f4f472015-08-16 19:51:04 -0700392 properties->deviceType = VK_PHYSICAL_DEVICE_TYPE_OTHER;
393 strcpy(properties->deviceName, "Android Vulkan Null Driver");
394 memset(properties->pipelineCacheUUID, 0,
395 sizeof(properties->pipelineCacheUUID));
Jesse Hallc34849e2016-02-09 22:35:04 -0800396 properties->limits = VkPhysicalDeviceLimits{
397 4096, // maxImageDimension1D
398 4096, // maxImageDimension2D
399 256, // maxImageDimension3D
400 4096, // maxImageDimensionCube
401 256, // maxImageArrayLayers
402 65536, // maxTexelBufferElements
403 16384, // maxUniformBufferRange
404 1 << 27, // maxStorageBufferRange
405 128, // maxPushConstantsSize
406 4096, // maxMemoryAllocationCount
407 4000, // maxSamplerAllocationCount
408 1, // bufferImageGranularity
409 0, // sparseAddressSpaceSize
410 4, // maxBoundDescriptorSets
411 16, // maxPerStageDescriptorSamplers
412 12, // maxPerStageDescriptorUniformBuffers
413 4, // maxPerStageDescriptorStorageBuffers
414 16, // maxPerStageDescriptorSampledImages
415 4, // maxPerStageDescriptorStorageImages
416 4, // maxPerStageDescriptorInputAttachments
417 128, // maxPerStageResources
418 96, // maxDescriptorSetSamplers
419 72, // maxDescriptorSetUniformBuffers
420 8, // maxDescriptorSetUniformBuffersDynamic
421 24, // maxDescriptorSetStorageBuffers
422 4, // maxDescriptorSetStorageBuffersDynamic
423 96, // maxDescriptorSetSampledImages
424 24, // maxDescriptorSetStorageImages
425 4, // maxDescriptorSetInputAttachments
426 16, // maxVertexInputAttributes
427 16, // maxVertexInputBindings
428 2047, // maxVertexInputAttributeOffset
429 2048, // maxVertexInputBindingStride
430 64, // maxVertexOutputComponents
431 0, // maxTessellationGenerationLevel
432 0, // maxTessellationPatchSize
433 0, // maxTessellationControlPerVertexInputComponents
434 0, // maxTessellationControlPerVertexOutputComponents
435 0, // maxTessellationControlPerPatchOutputComponents
436 0, // maxTessellationControlTotalOutputComponents
437 0, // maxTessellationEvaluationInputComponents
438 0, // maxTessellationEvaluationOutputComponents
439 0, // maxGeometryShaderInvocations
440 0, // maxGeometryInputComponents
441 0, // maxGeometryOutputComponents
442 0, // maxGeometryOutputVertices
443 0, // maxGeometryTotalOutputComponents
444 64, // maxFragmentInputComponents
445 4, // maxFragmentOutputAttachments
446 0, // maxFragmentDualSrcAttachments
447 4, // maxFragmentCombinedOutputResources
448 16384, // maxComputeSharedMemorySize
449 {65536, 65536, 65536}, // maxComputeWorkGroupCount[3]
450 128, // maxComputeWorkGroupInvocations
451 {128, 128, 64}, // maxComputeWorkGroupSize[3]
452 4, // subPixelPrecisionBits
453 4, // subTexelPrecisionBits
454 4, // mipmapPrecisionBits
455 UINT32_MAX, // maxDrawIndexedIndexValue
456 1, // maxDrawIndirectCount
457 2, // maxSamplerLodBias
458 1, // maxSamplerAnisotropy
459 1, // maxViewports
460 {4096, 4096}, // maxViewportDimensions[2]
461 {-8192.0f, 8191.0f}, // viewportBoundsRange[2]
462 0, // viewportSubPixelBits
463 64, // minMemoryMapAlignment
464 256, // minTexelBufferOffsetAlignment
465 256, // minUniformBufferOffsetAlignment
466 256, // minStorageBufferOffsetAlignment
467 -8, // minTexelOffset
468 7, // maxTexelOffset
469 0, // minTexelGatherOffset
470 0, // maxTexelGatherOffset
471 0.0f, // minInterpolationOffset
472 0.0f, // maxInterpolationOffset
473 0, // subPixelInterpolationOffsetBits
474 4096, // maxFramebufferWidth
475 4096, // maxFramebufferHeight
476 256, // maxFramebufferLayers
477 VK_SAMPLE_COUNT_1_BIT |
478 VK_SAMPLE_COUNT_4_BIT, // framebufferColorSampleCounts
479 VK_SAMPLE_COUNT_1_BIT |
480 VK_SAMPLE_COUNT_4_BIT, // framebufferDepthSampleCounts
481 VK_SAMPLE_COUNT_1_BIT |
482 VK_SAMPLE_COUNT_4_BIT, // framebufferStencilSampleCounts
483 VK_SAMPLE_COUNT_1_BIT |
484 VK_SAMPLE_COUNT_4_BIT, // framebufferNoAttachmentsSampleCounts
485 4, // maxColorAttachments
486 VK_SAMPLE_COUNT_1_BIT |
487 VK_SAMPLE_COUNT_4_BIT, // sampledImageColorSampleCounts
488 VK_SAMPLE_COUNT_1_BIT, // sampledImageIntegerSampleCounts
489 VK_SAMPLE_COUNT_1_BIT |
490 VK_SAMPLE_COUNT_4_BIT, // sampledImageDepthSampleCounts
491 VK_SAMPLE_COUNT_1_BIT |
492 VK_SAMPLE_COUNT_4_BIT, // sampledImageStencilSampleCounts
493 VK_SAMPLE_COUNT_1_BIT, // storageImageSampleCounts
494 1, // maxSampleMaskWords
495 VK_TRUE, // timestampComputeAndGraphics
496 1, // timestampPeriod
497 0, // maxClipDistances
498 0, // maxCullDistances
499 0, // maxCombinedClipAndCullDistances
500 2, // discreteQueuePriorities
501 {1.0f, 1.0f}, // pointSizeRange[2]
502 {1.0f, 1.0f}, // lineWidthRange[2]
503 0.0f, // pointSizeGranularity
504 0.0f, // lineWidthGranularity
505 VK_TRUE, // strictLines
506 VK_TRUE, // standardSampleLocations
507 1, // optimalBufferCopyOffsetAlignment
508 1, // optimalBufferCopyRowPitchAlignment
509 64, // nonCoherentAtomSize
510 };
Jesse Hall04f4f472015-08-16 19:51:04 -0700511}
512
Chris Forbes86bdfbe2017-01-26 12:45:49 +1300513void GetPhysicalDeviceProperties2KHR(VkPhysicalDevice physical_device,
514 VkPhysicalDeviceProperties2KHR* properties) {
515 GetPhysicalDeviceProperties(physical_device, &properties->properties);
516}
517
Jesse Hall606a54e2015-11-19 22:17:28 -0800518void GetPhysicalDeviceQueueFamilyProperties(
Jesse Hall5ae3abb2015-10-08 14:00:22 -0700519 VkPhysicalDevice,
520 uint32_t* count,
521 VkQueueFamilyProperties* properties) {
Jesse Hall715b86a2016-01-16 16:34:29 -0800522 if (!properties || *count > 1)
523 *count = 1;
524 if (properties && *count == 1) {
Jesse Hall65ab5522015-11-30 00:07:16 -0800525 properties->queueFlags = VK_QUEUE_GRAPHICS_BIT | VK_QUEUE_COMPUTE_BIT |
526 VK_QUEUE_TRANSFER_BIT;
Jesse Hall5ae3abb2015-10-08 14:00:22 -0700527 properties->queueCount = 1;
Jesse Hallacfa5342015-11-19 21:51:33 -0800528 properties->timestampValidBits = 64;
Jesse Hall715b86a2016-01-16 16:34:29 -0800529 properties->minImageTransferGranularity = VkExtent3D{1, 1, 1};
Jesse Hall5ae3abb2015-10-08 14:00:22 -0700530 }
Jesse Hall5ae3abb2015-10-08 14:00:22 -0700531}
532
Chris Forbes86bdfbe2017-01-26 12:45:49 +1300533void GetPhysicalDeviceQueueFamilyProperties2KHR(VkPhysicalDevice physical_device, uint32_t* count, VkQueueFamilyProperties2KHR* properties) {
534 // note: even though multiple structures, this is safe to forward in this
535 // case since we only expose one queue family.
536 GetPhysicalDeviceQueueFamilyProperties(physical_device, count, properties ? &properties->queueFamilyProperties : nullptr);
537}
538
Jesse Hall606a54e2015-11-19 22:17:28 -0800539void GetPhysicalDeviceMemoryProperties(
Jesse Hall73ab0ac2015-08-25 15:09:15 +0100540 VkPhysicalDevice,
541 VkPhysicalDeviceMemoryProperties* properties) {
542 properties->memoryTypeCount = 1;
543 properties->memoryTypes[0].propertyFlags =
Jesse Halld1af8122015-11-29 23:50:38 -0800544 VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT |
545 VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT |
546 VK_MEMORY_PROPERTY_HOST_COHERENT_BIT |
547 VK_MEMORY_PROPERTY_HOST_CACHED_BIT;
Jesse Hall73ab0ac2015-08-25 15:09:15 +0100548 properties->memoryTypes[0].heapIndex = 0;
549 properties->memoryHeapCount = 1;
Jesse Hallbde8ee32015-09-01 16:24:29 -0700550 properties->memoryHeaps[0].size = kMaxDeviceMemory;
Jesse Halld1af8122015-11-29 23:50:38 -0800551 properties->memoryHeaps[0].flags = VK_MEMORY_HEAP_DEVICE_LOCAL_BIT;
Jesse Hall04f4f472015-08-16 19:51:04 -0700552}
553
Chris Forbes86bdfbe2017-01-26 12:45:49 +1300554void GetPhysicalDeviceMemoryProperties2KHR(VkPhysicalDevice physical_device, VkPhysicalDeviceMemoryProperties2KHR* properties) {
555 GetPhysicalDeviceMemoryProperties(physical_device, &properties->memoryProperties);
556}
557
Jesse Hall8e37cf32016-01-18 04:00:57 -0800558void GetPhysicalDeviceFeatures(VkPhysicalDevice /*gpu*/,
559 VkPhysicalDeviceFeatures* features) {
560 *features = VkPhysicalDeviceFeatures{
561 VK_TRUE, // robustBufferAccess
562 VK_FALSE, // fullDrawIndexUint32
563 VK_FALSE, // imageCubeArray
564 VK_FALSE, // independentBlend
565 VK_FALSE, // geometryShader
566 VK_FALSE, // tessellationShader
567 VK_FALSE, // sampleRateShading
568 VK_FALSE, // dualSrcBlend
569 VK_FALSE, // logicOp
570 VK_FALSE, // multiDrawIndirect
571 VK_FALSE, // drawIndirectFirstInstance
572 VK_FALSE, // depthClamp
573 VK_FALSE, // depthBiasClamp
574 VK_FALSE, // fillModeNonSolid
575 VK_FALSE, // depthBounds
576 VK_FALSE, // wideLines
577 VK_FALSE, // largePoints
578 VK_FALSE, // alphaToOne
579 VK_FALSE, // multiViewport
580 VK_FALSE, // samplerAnisotropy
581 VK_FALSE, // textureCompressionETC2
582 VK_FALSE, // textureCompressionASTC_LDR
583 VK_FALSE, // textureCompressionBC
584 VK_FALSE, // occlusionQueryPrecise
585 VK_FALSE, // pipelineStatisticsQuery
586 VK_FALSE, // vertexPipelineStoresAndAtomics
587 VK_FALSE, // fragmentStoresAndAtomics
588 VK_FALSE, // shaderTessellationAndGeometryPointSize
589 VK_FALSE, // shaderImageGatherExtended
590 VK_FALSE, // shaderStorageImageExtendedFormats
591 VK_FALSE, // shaderStorageImageMultisample
592 VK_FALSE, // shaderStorageImageReadWithoutFormat
593 VK_FALSE, // shaderStorageImageWriteWithoutFormat
594 VK_FALSE, // shaderUniformBufferArrayDynamicIndexing
595 VK_FALSE, // shaderSampledImageArrayDynamicIndexing
596 VK_FALSE, // shaderStorageBufferArrayDynamicIndexing
597 VK_FALSE, // shaderStorageImageArrayDynamicIndexing
598 VK_FALSE, // shaderClipDistance
599 VK_FALSE, // shaderCullDistance
600 VK_FALSE, // shaderFloat64
601 VK_FALSE, // shaderInt64
602 VK_FALSE, // shaderInt16
603 VK_FALSE, // shaderResourceResidency
604 VK_FALSE, // shaderResourceMinLod
605 VK_FALSE, // sparseBinding
606 VK_FALSE, // sparseResidencyBuffer
607 VK_FALSE, // sparseResidencyImage2D
608 VK_FALSE, // sparseResidencyImage3D
609 VK_FALSE, // sparseResidency2Samples
610 VK_FALSE, // sparseResidency4Samples
611 VK_FALSE, // sparseResidency8Samples
612 VK_FALSE, // sparseResidency16Samples
613 VK_FALSE, // sparseResidencyAliased
614 VK_FALSE, // variableMultisampleRate
615 VK_FALSE, // inheritedQueries
616 };
617}
618
Chris Forbes86bdfbe2017-01-26 12:45:49 +1300619void GetPhysicalDeviceFeatures2KHR(VkPhysicalDevice physical_device, VkPhysicalDeviceFeatures2KHR* features) {
620 GetPhysicalDeviceFeatures(physical_device, &features->features);
621}
622
Jesse Hall73ab0ac2015-08-25 15:09:15 +0100623// -----------------------------------------------------------------------------
624// Device
625
Jesse Hall04f4f472015-08-16 19:51:04 -0700626VkResult CreateDevice(VkPhysicalDevice physical_device,
Jesse Hallb1471272016-01-17 21:36:58 -0800627 const VkDeviceCreateInfo* create_info,
Jesse Hall3fbc8562015-11-29 22:10:52 -0800628 const VkAllocationCallbacks* allocator,
Jesse Hall04f4f472015-08-16 19:51:04 -0700629 VkDevice* out_device) {
630 VkInstance_T* instance = GetInstanceFromPhysicalDevice(physical_device);
Jesse Hall03b6fe12015-11-24 12:44:21 -0800631 if (!allocator)
632 allocator = &instance->allocator;
Jesse Hall3fbc8562015-11-29 22:10:52 -0800633 VkDevice_T* device = static_cast<VkDevice_T*>(allocator->pfnAllocation(
634 allocator->pUserData, sizeof(VkDevice_T), alignof(VkDevice_T),
635 VK_SYSTEM_ALLOCATION_SCOPE_DEVICE));
Jesse Hall04f4f472015-08-16 19:51:04 -0700636 if (!device)
637 return VK_ERROR_OUT_OF_HOST_MEMORY;
638
639 device->dispatch.magic = HWVULKAN_DISPATCH_MAGIC;
Jesse Hall03b6fe12015-11-24 12:44:21 -0800640 device->allocator = *allocator;
Jesse Hall04f4f472015-08-16 19:51:04 -0700641 device->instance = instance;
642 device->queue.dispatch.magic = HWVULKAN_DISPATCH_MAGIC;
Jesse Hallf8faf0c2015-08-31 11:34:32 -0700643 std::fill(device->next_handle.begin(), device->next_handle.end(),
644 UINT64_C(0));
Jesse Hall04f4f472015-08-16 19:51:04 -0700645
Jesse Hallb1471272016-01-17 21:36:58 -0800646 for (uint32_t i = 0; i < create_info->enabledExtensionCount; i++) {
647 if (strcmp(create_info->ppEnabledExtensionNames[i],
648 VK_ANDROID_NATIVE_BUFFER_EXTENSION_NAME) == 0) {
649 ALOGV("Enabling " VK_ANDROID_NATIVE_BUFFER_EXTENSION_NAME);
650 }
651 }
652
Jesse Hall04f4f472015-08-16 19:51:04 -0700653 *out_device = device;
654 return VK_SUCCESS;
655}
656
Jesse Hall3fbc8562015-11-29 22:10:52 -0800657void DestroyDevice(VkDevice device,
658 const VkAllocationCallbacks* /*allocator*/) {
Jesse Hall04f4f472015-08-16 19:51:04 -0700659 if (!device)
Jesse Hallcf25c412015-10-29 17:14:50 -0700660 return;
Jesse Hall03b6fe12015-11-24 12:44:21 -0800661 device->allocator.pfnFree(device->allocator.pUserData, device);
Jesse Hall04f4f472015-08-16 19:51:04 -0700662}
663
Jesse Hall606a54e2015-11-19 22:17:28 -0800664void GetDeviceQueue(VkDevice device, uint32_t, uint32_t, VkQueue* queue) {
Jesse Hall04f4f472015-08-16 19:51:04 -0700665 *queue = &device->queue;
Jesse Hall04f4f472015-08-16 19:51:04 -0700666}
667
668// -----------------------------------------------------------------------------
Jesse Hall3fbc8562015-11-29 22:10:52 -0800669// CommandPool
Jesse Hall03b6fe12015-11-24 12:44:21 -0800670
Jesse Hall3fbc8562015-11-29 22:10:52 -0800671struct CommandPool {
672 typedef VkCommandPool HandleType;
673 VkAllocationCallbacks allocator;
Jesse Hall03b6fe12015-11-24 12:44:21 -0800674};
Jesse Hall3fbc8562015-11-29 22:10:52 -0800675DEFINE_OBJECT_HANDLE_CONVERSION(CommandPool)
Jesse Hall03b6fe12015-11-24 12:44:21 -0800676
677VkResult CreateCommandPool(VkDevice device,
Jesse Hall3fbc8562015-11-29 22:10:52 -0800678 const VkCommandPoolCreateInfo* /*create_info*/,
679 const VkAllocationCallbacks* allocator,
680 VkCommandPool* cmd_pool) {
Jesse Hall03b6fe12015-11-24 12:44:21 -0800681 if (!allocator)
682 allocator = &device->allocator;
Jesse Hall3fbc8562015-11-29 22:10:52 -0800683 CommandPool* pool = static_cast<CommandPool*>(allocator->pfnAllocation(
684 allocator->pUserData, sizeof(CommandPool), alignof(CommandPool),
685 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT));
Jesse Hall03b6fe12015-11-24 12:44:21 -0800686 if (!pool)
687 return VK_ERROR_OUT_OF_HOST_MEMORY;
688 pool->allocator = *allocator;
Jesse Hall3fbc8562015-11-29 22:10:52 -0800689 *cmd_pool = GetHandleToCommandPool(pool);
Jesse Hall03b6fe12015-11-24 12:44:21 -0800690 return VK_SUCCESS;
691}
692
693void DestroyCommandPool(VkDevice /*device*/,
Jesse Hall3fbc8562015-11-29 22:10:52 -0800694 VkCommandPool cmd_pool,
695 const VkAllocationCallbacks* /*allocator*/) {
696 CommandPool* pool = GetCommandPoolFromHandle(cmd_pool);
Jesse Hall03b6fe12015-11-24 12:44:21 -0800697 pool->allocator.pfnFree(pool->allocator.pUserData, pool);
698}
699
700// -----------------------------------------------------------------------------
Jesse Hallc7a6eb52015-08-31 12:52:03 -0700701// CmdBuffer
702
Jesse Hall3fbc8562015-11-29 22:10:52 -0800703VkResult AllocateCommandBuffers(VkDevice /*device*/,
704 const VkCommandBufferAllocateInfo* alloc_info,
705 VkCommandBuffer* cmdbufs) {
Jesse Hallfbf97b02015-11-20 14:17:03 -0800706 VkResult result = VK_SUCCESS;
Jesse Hall3fbc8562015-11-29 22:10:52 -0800707 CommandPool& pool = *GetCommandPoolFromHandle(alloc_info->commandPool);
Jesse Hall3dd678a2016-01-08 21:52:01 -0800708 std::fill(cmdbufs, cmdbufs + alloc_info->commandBufferCount, nullptr);
709 for (uint32_t i = 0; i < alloc_info->commandBufferCount; i++) {
Jesse Hall3fbc8562015-11-29 22:10:52 -0800710 cmdbufs[i] =
711 static_cast<VkCommandBuffer_T*>(pool.allocator.pfnAllocation(
712 pool.allocator.pUserData, sizeof(VkCommandBuffer_T),
713 alignof(VkCommandBuffer_T), VK_SYSTEM_ALLOCATION_SCOPE_OBJECT));
Jesse Hallfbf97b02015-11-20 14:17:03 -0800714 if (!cmdbufs[i]) {
715 result = VK_ERROR_OUT_OF_HOST_MEMORY;
716 break;
717 }
718 cmdbufs[i]->dispatch.magic = HWVULKAN_DISPATCH_MAGIC;
719 }
720 if (result != VK_SUCCESS) {
Jesse Hall3dd678a2016-01-08 21:52:01 -0800721 for (uint32_t i = 0; i < alloc_info->commandBufferCount; i++) {
Jesse Hallfbf97b02015-11-20 14:17:03 -0800722 if (!cmdbufs[i])
723 break;
Jesse Hall03b6fe12015-11-24 12:44:21 -0800724 pool.allocator.pfnFree(pool.allocator.pUserData, cmdbufs[i]);
Jesse Hallfbf97b02015-11-20 14:17:03 -0800725 }
726 }
Jesse Hallfbf97b02015-11-20 14:17:03 -0800727 return result;
Jesse Hallc7a6eb52015-08-31 12:52:03 -0700728}
729
Jesse Hall03b6fe12015-11-24 12:44:21 -0800730void FreeCommandBuffers(VkDevice /*device*/,
Jesse Hall3fbc8562015-11-29 22:10:52 -0800731 VkCommandPool cmd_pool,
Jesse Hallfbf97b02015-11-20 14:17:03 -0800732 uint32_t count,
Jesse Hall3fbc8562015-11-29 22:10:52 -0800733 const VkCommandBuffer* cmdbufs) {
734 CommandPool& pool = *GetCommandPoolFromHandle(cmd_pool);
Jesse Hallfbf97b02015-11-20 14:17:03 -0800735 for (uint32_t i = 0; i < count; i++)
Jesse Hall03b6fe12015-11-24 12:44:21 -0800736 pool.allocator.pfnFree(pool.allocator.pUserData, cmdbufs[i]);
Jesse Hallc7a6eb52015-08-31 12:52:03 -0700737}
738
739// -----------------------------------------------------------------------------
Jesse Hall2077ce02015-08-29 18:10:59 +0100740// DeviceMemory
741
742struct DeviceMemory {
743 typedef VkDeviceMemory HandleType;
744 VkDeviceSize size;
745 alignas(16) uint8_t data[0];
746};
Jesse Halla3a7a1d2015-11-24 11:37:23 -0800747DEFINE_OBJECT_HANDLE_CONVERSION(DeviceMemory)
Jesse Hall2077ce02015-08-29 18:10:59 +0100748
Jesse Hall3fbc8562015-11-29 22:10:52 -0800749VkResult AllocateMemory(VkDevice device,
750 const VkMemoryAllocateInfo* alloc_info,
751 const VkAllocationCallbacks* allocator,
752 VkDeviceMemory* mem_handle) {
Jesse Hall2077ce02015-08-29 18:10:59 +0100753 if (SIZE_MAX - sizeof(DeviceMemory) <= alloc_info->allocationSize)
754 return VK_ERROR_OUT_OF_HOST_MEMORY;
Jesse Hall03b6fe12015-11-24 12:44:21 -0800755 if (!allocator)
756 allocator = &device->allocator;
Jesse Hall2077ce02015-08-29 18:10:59 +0100757
Jesse Hall2077ce02015-08-29 18:10:59 +0100758 size_t size = sizeof(DeviceMemory) + size_t(alloc_info->allocationSize);
Jesse Hall3fbc8562015-11-29 22:10:52 -0800759 DeviceMemory* mem = static_cast<DeviceMemory*>(allocator->pfnAllocation(
760 allocator->pUserData, size, alignof(DeviceMemory),
761 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT));
Jesse Hall2077ce02015-08-29 18:10:59 +0100762 if (!mem)
763 return VK_ERROR_OUT_OF_HOST_MEMORY;
764 mem->size = size;
Jesse Halla3a7a1d2015-11-24 11:37:23 -0800765 *mem_handle = GetHandleToDeviceMemory(mem);
Jesse Hall2077ce02015-08-29 18:10:59 +0100766 return VK_SUCCESS;
767}
768
Jesse Hall03b6fe12015-11-24 12:44:21 -0800769void FreeMemory(VkDevice device,
770 VkDeviceMemory mem_handle,
Jesse Hall3fbc8562015-11-29 22:10:52 -0800771 const VkAllocationCallbacks* allocator) {
Jesse Hall03b6fe12015-11-24 12:44:21 -0800772 if (!allocator)
773 allocator = &device->allocator;
Jesse Halla3a7a1d2015-11-24 11:37:23 -0800774 DeviceMemory* mem = GetDeviceMemoryFromHandle(mem_handle);
Jesse Hall03b6fe12015-11-24 12:44:21 -0800775 allocator->pfnFree(allocator->pUserData, mem);
Jesse Hall2077ce02015-08-29 18:10:59 +0100776}
777
778VkResult MapMemory(VkDevice,
779 VkDeviceMemory mem_handle,
780 VkDeviceSize offset,
781 VkDeviceSize,
782 VkMemoryMapFlags,
783 void** out_ptr) {
Jesse Halla3a7a1d2015-11-24 11:37:23 -0800784 DeviceMemory* mem = GetDeviceMemoryFromHandle(mem_handle);
Jesse Hall2077ce02015-08-29 18:10:59 +0100785 *out_ptr = &mem->data[0] + offset;
786 return VK_SUCCESS;
787}
788
789// -----------------------------------------------------------------------------
Jesse Hallf6578742015-08-29 17:06:12 +0100790// Buffer
791
792struct Buffer {
793 typedef VkBuffer HandleType;
794 VkDeviceSize size;
795};
Jesse Halla3a7a1d2015-11-24 11:37:23 -0800796DEFINE_OBJECT_HANDLE_CONVERSION(Buffer)
Jesse Hallf6578742015-08-29 17:06:12 +0100797
798VkResult CreateBuffer(VkDevice device,
799 const VkBufferCreateInfo* create_info,
Jesse Hall3fbc8562015-11-29 22:10:52 -0800800 const VkAllocationCallbacks* allocator,
Jesse Hallf6578742015-08-29 17:06:12 +0100801 VkBuffer* buffer_handle) {
Jesse Hallbde8ee32015-09-01 16:24:29 -0700802 ALOGW_IF(create_info->size > kMaxDeviceMemory,
803 "CreateBuffer: requested size 0x%" PRIx64
804 " exceeds max device memory size 0x%" PRIx64,
805 create_info->size, kMaxDeviceMemory);
Jesse Hall03b6fe12015-11-24 12:44:21 -0800806 if (!allocator)
807 allocator = &device->allocator;
Jesse Hall3fbc8562015-11-29 22:10:52 -0800808 Buffer* buffer = static_cast<Buffer*>(allocator->pfnAllocation(
809 allocator->pUserData, sizeof(Buffer), alignof(Buffer),
810 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT));
Jesse Hallf6578742015-08-29 17:06:12 +0100811 if (!buffer)
812 return VK_ERROR_OUT_OF_HOST_MEMORY;
813 buffer->size = create_info->size;
Jesse Halla3a7a1d2015-11-24 11:37:23 -0800814 *buffer_handle = GetHandleToBuffer(buffer);
Jesse Hallf6578742015-08-29 17:06:12 +0100815 return VK_SUCCESS;
816}
817
Jesse Hall606a54e2015-11-19 22:17:28 -0800818void GetBufferMemoryRequirements(VkDevice,
819 VkBuffer buffer_handle,
820 VkMemoryRequirements* requirements) {
Jesse Halla3a7a1d2015-11-24 11:37:23 -0800821 Buffer* buffer = GetBufferFromHandle(buffer_handle);
Jesse Hallf6578742015-08-29 17:06:12 +0100822 requirements->size = buffer->size;
823 requirements->alignment = 16; // allow fast Neon/SSE memcpy
824 requirements->memoryTypeBits = 0x1;
Jesse Hallf6578742015-08-29 17:06:12 +0100825}
826
Jesse Hall03b6fe12015-11-24 12:44:21 -0800827void DestroyBuffer(VkDevice device,
828 VkBuffer buffer_handle,
Jesse Hall3fbc8562015-11-29 22:10:52 -0800829 const VkAllocationCallbacks* allocator) {
Jesse Hall03b6fe12015-11-24 12:44:21 -0800830 if (!allocator)
831 allocator = &device->allocator;
Jesse Halla3a7a1d2015-11-24 11:37:23 -0800832 Buffer* buffer = GetBufferFromHandle(buffer_handle);
Jesse Hall03b6fe12015-11-24 12:44:21 -0800833 allocator->pfnFree(allocator->pUserData, buffer);
Jesse Hallf6578742015-08-29 17:06:12 +0100834}
835
836// -----------------------------------------------------------------------------
Jesse Hall85c05b62015-09-01 18:07:41 -0700837// Image
838
839struct Image {
840 typedef VkImage HandleType;
841 VkDeviceSize size;
842};
Jesse Halla3a7a1d2015-11-24 11:37:23 -0800843DEFINE_OBJECT_HANDLE_CONVERSION(Image)
Jesse Hall85c05b62015-09-01 18:07:41 -0700844
845VkResult CreateImage(VkDevice device,
846 const VkImageCreateInfo* create_info,
Jesse Hall3fbc8562015-11-29 22:10:52 -0800847 const VkAllocationCallbacks* allocator,
Jesse Hall85c05b62015-09-01 18:07:41 -0700848 VkImage* image_handle) {
849 if (create_info->imageType != VK_IMAGE_TYPE_2D ||
850 create_info->format != VK_FORMAT_R8G8B8A8_UNORM ||
851 create_info->mipLevels != 1) {
852 ALOGE("CreateImage: not yet implemented: type=%d format=%d mips=%u",
853 create_info->imageType, create_info->format,
854 create_info->mipLevels);
Jesse Halla15a4bf2015-11-19 22:48:02 -0800855 return VK_ERROR_OUT_OF_HOST_MEMORY;
Jesse Hall85c05b62015-09-01 18:07:41 -0700856 }
857
858 VkDeviceSize size =
859 VkDeviceSize(create_info->extent.width * create_info->extent.height) *
Jesse Halla15a4bf2015-11-19 22:48:02 -0800860 create_info->arrayLayers * create_info->samples * 4u;
Jesse Hall85c05b62015-09-01 18:07:41 -0700861 ALOGW_IF(size > kMaxDeviceMemory,
862 "CreateImage: image size 0x%" PRIx64
863 " exceeds max device memory size 0x%" PRIx64,
864 size, kMaxDeviceMemory);
865
Jesse Hall03b6fe12015-11-24 12:44:21 -0800866 if (!allocator)
867 allocator = &device->allocator;
Jesse Hall3fbc8562015-11-29 22:10:52 -0800868 Image* image = static_cast<Image*>(allocator->pfnAllocation(
869 allocator->pUserData, sizeof(Image), alignof(Image),
870 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT));
Jesse Hall85c05b62015-09-01 18:07:41 -0700871 if (!image)
872 return VK_ERROR_OUT_OF_HOST_MEMORY;
873 image->size = size;
Jesse Halla3a7a1d2015-11-24 11:37:23 -0800874 *image_handle = GetHandleToImage(image);
Jesse Hall85c05b62015-09-01 18:07:41 -0700875 return VK_SUCCESS;
876}
877
Jesse Hall606a54e2015-11-19 22:17:28 -0800878void GetImageMemoryRequirements(VkDevice,
879 VkImage image_handle,
880 VkMemoryRequirements* requirements) {
Jesse Halla3a7a1d2015-11-24 11:37:23 -0800881 Image* image = GetImageFromHandle(image_handle);
Jesse Hall85c05b62015-09-01 18:07:41 -0700882 requirements->size = image->size;
883 requirements->alignment = 16; // allow fast Neon/SSE memcpy
884 requirements->memoryTypeBits = 0x1;
Jesse Hall85c05b62015-09-01 18:07:41 -0700885}
886
Jesse Hall03b6fe12015-11-24 12:44:21 -0800887void DestroyImage(VkDevice device,
888 VkImage image_handle,
Jesse Hall3fbc8562015-11-29 22:10:52 -0800889 const VkAllocationCallbacks* allocator) {
Jesse Hall03b6fe12015-11-24 12:44:21 -0800890 if (!allocator)
891 allocator = &device->allocator;
Jesse Halla3a7a1d2015-11-24 11:37:23 -0800892 Image* image = GetImageFromHandle(image_handle);
Jesse Hall03b6fe12015-11-24 12:44:21 -0800893 allocator->pfnFree(allocator->pUserData, image);
Jesse Hall85c05b62015-09-01 18:07:41 -0700894}
895
Jesse Hall57f7f8c2016-01-17 17:21:36 -0800896VkResult GetSwapchainGrallocUsageANDROID(VkDevice,
897 VkFormat,
898 VkImageUsageFlags,
899 int* grallocUsage) {
900 // The null driver never reads or writes the gralloc buffer
901 *grallocUsage = 0;
902 return VK_SUCCESS;
903}
904
Chris Forbes8e4438b2016-12-07 16:26:49 +1300905VkResult GetSwapchainGrallocUsage2ANDROID(VkDevice,
906 VkFormat,
907 VkImageUsageFlags,
908 VkSwapchainImageUsageFlagsANDROID,
Jesse Halld1abd742017-02-09 21:45:51 -0800909 uint64_t* grallocConsumerUsage,
910 uint64_t* grallocProducerUsage) {
Chris Forbes8e4438b2016-12-07 16:26:49 +1300911 // The null driver never reads or writes the gralloc buffer
Jesse Halld1abd742017-02-09 21:45:51 -0800912 *grallocConsumerUsage = 0;
913 *grallocProducerUsage = 0;
Chris Forbes8e4438b2016-12-07 16:26:49 +1300914 return VK_SUCCESS;
915}
916
Jesse Hall57f7f8c2016-01-17 17:21:36 -0800917VkResult AcquireImageANDROID(VkDevice,
918 VkImage,
919 int fence,
920 VkSemaphore,
921 VkFence) {
922 close(fence);
923 return VK_SUCCESS;
924}
925
926VkResult QueueSignalReleaseImageANDROID(VkQueue,
927 uint32_t,
928 const VkSemaphore*,
929 VkImage,
930 int* fence) {
931 *fence = -1;
932 return VK_SUCCESS;
933}
934
Jesse Hall85c05b62015-09-01 18:07:41 -0700935// -----------------------------------------------------------------------------
Jesse Hallf8faf0c2015-08-31 11:34:32 -0700936// No-op types
937
Jesse Hallf8faf0c2015-08-31 11:34:32 -0700938VkResult CreateBufferView(VkDevice device,
939 const VkBufferViewCreateInfo*,
Jesse Hall3fbc8562015-11-29 22:10:52 -0800940 const VkAllocationCallbacks* /*allocator*/,
Jesse Hallf8faf0c2015-08-31 11:34:32 -0700941 VkBufferView* view) {
Michael Lentine3fec89e2015-12-04 16:25:11 -0800942 *view = AllocHandle<VkBufferView>(device, HandleType::kBufferView);
Jesse Hallf8faf0c2015-08-31 11:34:32 -0700943 return VK_SUCCESS;
944}
945
Jesse Hallf8faf0c2015-08-31 11:34:32 -0700946VkResult CreateDescriptorPool(VkDevice device,
Jesse Hallf8faf0c2015-08-31 11:34:32 -0700947 const VkDescriptorPoolCreateInfo*,
Jesse Hall3fbc8562015-11-29 22:10:52 -0800948 const VkAllocationCallbacks* /*allocator*/,
Jesse Hallf8faf0c2015-08-31 11:34:32 -0700949 VkDescriptorPool* pool) {
Michael Lentine3fec89e2015-12-04 16:25:11 -0800950 *pool = AllocHandle<VkDescriptorPool>(device, HandleType::kDescriptorPool);
Jesse Hallf8faf0c2015-08-31 11:34:32 -0700951 return VK_SUCCESS;
952}
953
Jesse Hall3fbc8562015-11-29 22:10:52 -0800954VkResult AllocateDescriptorSets(VkDevice device,
955 const VkDescriptorSetAllocateInfo* alloc_info,
956 VkDescriptorSet* descriptor_sets) {
Jesse Hall3dd678a2016-01-08 21:52:01 -0800957 for (uint32_t i = 0; i < alloc_info->descriptorSetCount; i++)
Michael Lentine3fec89e2015-12-04 16:25:11 -0800958 descriptor_sets[i] =
959 AllocHandle<VkDescriptorSet>(device, HandleType::kDescriptorSet);
Jesse Hallf8faf0c2015-08-31 11:34:32 -0700960 return VK_SUCCESS;
961}
962
963VkResult CreateDescriptorSetLayout(VkDevice device,
964 const VkDescriptorSetLayoutCreateInfo*,
Jesse Hall3fbc8562015-11-29 22:10:52 -0800965 const VkAllocationCallbacks* /*allocator*/,
Jesse Hallf8faf0c2015-08-31 11:34:32 -0700966 VkDescriptorSetLayout* layout) {
Michael Lentine3fec89e2015-12-04 16:25:11 -0800967 *layout = AllocHandle<VkDescriptorSetLayout>(
968 device, HandleType::kDescriptorSetLayout);
Jesse Hallf8faf0c2015-08-31 11:34:32 -0700969 return VK_SUCCESS;
970}
971
Jesse Hallf8faf0c2015-08-31 11:34:32 -0700972VkResult CreateEvent(VkDevice device,
973 const VkEventCreateInfo*,
Jesse Hall3fbc8562015-11-29 22:10:52 -0800974 const VkAllocationCallbacks* /*allocator*/,
Jesse Hallf8faf0c2015-08-31 11:34:32 -0700975 VkEvent* event) {
Michael Lentine3fec89e2015-12-04 16:25:11 -0800976 *event = AllocHandle<VkEvent>(device, HandleType::kEvent);
Jesse Hallf8faf0c2015-08-31 11:34:32 -0700977 return VK_SUCCESS;
978}
979
980VkResult CreateFence(VkDevice device,
981 const VkFenceCreateInfo*,
Jesse Hall3fbc8562015-11-29 22:10:52 -0800982 const VkAllocationCallbacks* /*allocator*/,
Jesse Hallf8faf0c2015-08-31 11:34:32 -0700983 VkFence* fence) {
Michael Lentine3fec89e2015-12-04 16:25:11 -0800984 *fence = AllocHandle<VkFence>(device, HandleType::kFence);
Jesse Hallf8faf0c2015-08-31 11:34:32 -0700985 return VK_SUCCESS;
986}
987
988VkResult CreateFramebuffer(VkDevice device,
989 const VkFramebufferCreateInfo*,
Jesse Hall3fbc8562015-11-29 22:10:52 -0800990 const VkAllocationCallbacks* /*allocator*/,
Jesse Hallf8faf0c2015-08-31 11:34:32 -0700991 VkFramebuffer* framebuffer) {
Michael Lentine3fec89e2015-12-04 16:25:11 -0800992 *framebuffer = AllocHandle<VkFramebuffer>(device, HandleType::kFramebuffer);
Jesse Hallf8faf0c2015-08-31 11:34:32 -0700993 return VK_SUCCESS;
994}
995
996VkResult CreateImageView(VkDevice device,
997 const VkImageViewCreateInfo*,
Jesse Hall3fbc8562015-11-29 22:10:52 -0800998 const VkAllocationCallbacks* /*allocator*/,
Jesse Hallf8faf0c2015-08-31 11:34:32 -0700999 VkImageView* view) {
Michael Lentine3fec89e2015-12-04 16:25:11 -08001000 *view = AllocHandle<VkImageView>(device, HandleType::kImageView);
Jesse Hallf8faf0c2015-08-31 11:34:32 -07001001 return VK_SUCCESS;
1002}
1003
1004VkResult CreateGraphicsPipelines(VkDevice device,
1005 VkPipelineCache,
1006 uint32_t count,
1007 const VkGraphicsPipelineCreateInfo*,
Jesse Hall3fbc8562015-11-29 22:10:52 -08001008 const VkAllocationCallbacks* /*allocator*/,
Jesse Hallf8faf0c2015-08-31 11:34:32 -07001009 VkPipeline* pipelines) {
1010 for (uint32_t i = 0; i < count; i++)
Michael Lentine3fec89e2015-12-04 16:25:11 -08001011 pipelines[i] = AllocHandle<VkPipeline>(device, HandleType::kPipeline);
Jesse Hallf8faf0c2015-08-31 11:34:32 -07001012 return VK_SUCCESS;
1013}
1014
1015VkResult CreateComputePipelines(VkDevice device,
1016 VkPipelineCache,
1017 uint32_t count,
1018 const VkComputePipelineCreateInfo*,
Jesse Hall3fbc8562015-11-29 22:10:52 -08001019 const VkAllocationCallbacks* /*allocator*/,
Jesse Hallf8faf0c2015-08-31 11:34:32 -07001020 VkPipeline* pipelines) {
1021 for (uint32_t i = 0; i < count; i++)
Michael Lentine3fec89e2015-12-04 16:25:11 -08001022 pipelines[i] = AllocHandle<VkPipeline>(device, HandleType::kPipeline);
Jesse Hallf8faf0c2015-08-31 11:34:32 -07001023 return VK_SUCCESS;
1024}
1025
1026VkResult CreatePipelineCache(VkDevice device,
1027 const VkPipelineCacheCreateInfo*,
Jesse Hall3fbc8562015-11-29 22:10:52 -08001028 const VkAllocationCallbacks* /*allocator*/,
Jesse Hallf8faf0c2015-08-31 11:34:32 -07001029 VkPipelineCache* cache) {
Michael Lentine3fec89e2015-12-04 16:25:11 -08001030 *cache = AllocHandle<VkPipelineCache>(device, HandleType::kPipelineCache);
Jesse Hallf8faf0c2015-08-31 11:34:32 -07001031 return VK_SUCCESS;
1032}
1033
1034VkResult CreatePipelineLayout(VkDevice device,
1035 const VkPipelineLayoutCreateInfo*,
Jesse Hall3fbc8562015-11-29 22:10:52 -08001036 const VkAllocationCallbacks* /*allocator*/,
Jesse Hallf8faf0c2015-08-31 11:34:32 -07001037 VkPipelineLayout* layout) {
Michael Lentine3fec89e2015-12-04 16:25:11 -08001038 *layout =
1039 AllocHandle<VkPipelineLayout>(device, HandleType::kPipelineLayout);
Jesse Hallf8faf0c2015-08-31 11:34:32 -07001040 return VK_SUCCESS;
1041}
1042
1043VkResult CreateQueryPool(VkDevice device,
1044 const VkQueryPoolCreateInfo*,
Jesse Hall3fbc8562015-11-29 22:10:52 -08001045 const VkAllocationCallbacks* /*allocator*/,
Jesse Hallf8faf0c2015-08-31 11:34:32 -07001046 VkQueryPool* pool) {
Michael Lentine3fec89e2015-12-04 16:25:11 -08001047 *pool = AllocHandle<VkQueryPool>(device, HandleType::kQueryPool);
Jesse Hallf8faf0c2015-08-31 11:34:32 -07001048 return VK_SUCCESS;
1049}
1050
1051VkResult CreateRenderPass(VkDevice device,
1052 const VkRenderPassCreateInfo*,
Jesse Hall3fbc8562015-11-29 22:10:52 -08001053 const VkAllocationCallbacks* /*allocator*/,
Jesse Hallf8faf0c2015-08-31 11:34:32 -07001054 VkRenderPass* renderpass) {
Michael Lentine3fec89e2015-12-04 16:25:11 -08001055 *renderpass = AllocHandle<VkRenderPass>(device, HandleType::kRenderPass);
Jesse Hallf8faf0c2015-08-31 11:34:32 -07001056 return VK_SUCCESS;
1057}
1058
1059VkResult CreateSampler(VkDevice device,
1060 const VkSamplerCreateInfo*,
Jesse Hall3fbc8562015-11-29 22:10:52 -08001061 const VkAllocationCallbacks* /*allocator*/,
Jesse Hallf8faf0c2015-08-31 11:34:32 -07001062 VkSampler* sampler) {
Michael Lentine3fec89e2015-12-04 16:25:11 -08001063 *sampler = AllocHandle<VkSampler>(device, HandleType::kSampler);
Jesse Hallf8faf0c2015-08-31 11:34:32 -07001064 return VK_SUCCESS;
1065}
1066
1067VkResult CreateSemaphore(VkDevice device,
1068 const VkSemaphoreCreateInfo*,
Jesse Hall3fbc8562015-11-29 22:10:52 -08001069 const VkAllocationCallbacks* /*allocator*/,
Jesse Hallf8faf0c2015-08-31 11:34:32 -07001070 VkSemaphore* semaphore) {
Michael Lentine3fec89e2015-12-04 16:25:11 -08001071 *semaphore = AllocHandle<VkSemaphore>(device, HandleType::kSemaphore);
Jesse Hallf8faf0c2015-08-31 11:34:32 -07001072 return VK_SUCCESS;
1073}
1074
Jesse Hallf8faf0c2015-08-31 11:34:32 -07001075VkResult CreateShaderModule(VkDevice device,
1076 const VkShaderModuleCreateInfo*,
Jesse Hall3fbc8562015-11-29 22:10:52 -08001077 const VkAllocationCallbacks* /*allocator*/,
Jesse Hallf8faf0c2015-08-31 11:34:32 -07001078 VkShaderModule* module) {
Michael Lentine3fec89e2015-12-04 16:25:11 -08001079 *module = AllocHandle<VkShaderModule>(device, HandleType::kShaderModule);
Jesse Hallf8faf0c2015-08-31 11:34:32 -07001080 return VK_SUCCESS;
1081}
1082
Jesse Hall715b86a2016-01-16 16:34:29 -08001083VkResult CreateDebugReportCallbackEXT(VkInstance instance,
1084 const VkDebugReportCallbackCreateInfoEXT*,
1085 const VkAllocationCallbacks*,
1086 VkDebugReportCallbackEXT* callback) {
1087 *callback = AllocHandle<VkDebugReportCallbackEXT>(
1088 instance, HandleType::kDebugReportCallbackEXT);
1089 return VK_SUCCESS;
1090}
1091
Jesse Hallf8faf0c2015-08-31 11:34:32 -07001092// -----------------------------------------------------------------------------
Jesse Hall04f4f472015-08-16 19:51:04 -07001093// No-op entrypoints
1094
1095// clang-format off
1096#pragma clang diagnostic push
1097#pragma clang diagnostic ignored "-Wunused-parameter"
1098
Jesse Hall606a54e2015-11-19 22:17:28 -08001099void GetPhysicalDeviceFormatProperties(VkPhysicalDevice physicalDevice, VkFormat format, VkFormatProperties* pFormatProperties) {
Jesse Hall73ab0ac2015-08-25 15:09:15 +01001100 ALOGV("TODO: vk%s", __FUNCTION__);
Jesse Hall04f4f472015-08-16 19:51:04 -07001101}
1102
Chris Forbes86bdfbe2017-01-26 12:45:49 +13001103void GetPhysicalDeviceFormatProperties2KHR(VkPhysicalDevice physicalDevice, VkFormat format, VkFormatProperties2KHR* pFormatProperties) {
1104 ALOGV("TODO: vk%s", __FUNCTION__);
1105}
1106
Jesse Halla9e57032015-11-30 01:03:10 -08001107VkResult GetPhysicalDeviceImageFormatProperties(VkPhysicalDevice physicalDevice, VkFormat format, VkImageType type, VkImageTiling tiling, VkImageUsageFlags usage, VkImageCreateFlags flags, VkImageFormatProperties* pImageFormatProperties) {
Jesse Hall73ab0ac2015-08-25 15:09:15 +01001108 ALOGV("TODO: vk%s", __FUNCTION__);
Jesse Halla9e57032015-11-30 01:03:10 -08001109 return VK_SUCCESS;
Jesse Hall04f4f472015-08-16 19:51:04 -07001110}
1111
Chris Forbes86bdfbe2017-01-26 12:45:49 +13001112VkResult GetPhysicalDeviceImageFormatProperties2KHR(VkPhysicalDevice physicalDevice,
1113 const VkPhysicalDeviceImageFormatInfo2KHR* pImageFormatInfo,
1114 VkImageFormatProperties2KHR* pImageFormatProperties) {
1115 ALOGV("TODO: vk%s", __FUNCTION__);
1116 return VK_SUCCESS;
1117}
1118
Jesse Hall5ae3abb2015-10-08 14:00:22 -07001119VkResult EnumerateInstanceLayerProperties(uint32_t* pCount, VkLayerProperties* pProperties) {
Jesse Hall73ab0ac2015-08-25 15:09:15 +01001120 ALOGV("TODO: vk%s", __FUNCTION__);
Jesse Hall04f4f472015-08-16 19:51:04 -07001121 return VK_SUCCESS;
1122}
1123
Jesse Halla366a512015-11-19 22:30:07 -08001124VkResult QueueSubmit(VkQueue queue, uint32_t submitCount, const VkSubmitInfo* pSubmitInfo, VkFence fence) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001125 return VK_SUCCESS;
1126}
1127
1128VkResult QueueWaitIdle(VkQueue queue) {
Jesse Hall73ab0ac2015-08-25 15:09:15 +01001129 ALOGV("TODO: vk%s", __FUNCTION__);
Jesse Hall04f4f472015-08-16 19:51:04 -07001130 return VK_SUCCESS;
1131}
1132
1133VkResult DeviceWaitIdle(VkDevice device) {
Jesse Hall73ab0ac2015-08-25 15:09:15 +01001134 ALOGV("TODO: vk%s", __FUNCTION__);
Jesse Hall04f4f472015-08-16 19:51:04 -07001135 return VK_SUCCESS;
1136}
1137
Jesse Hallcf25c412015-10-29 17:14:50 -07001138void UnmapMemory(VkDevice device, VkDeviceMemory mem) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001139}
1140
1141VkResult FlushMappedMemoryRanges(VkDevice device, uint32_t memRangeCount, const VkMappedMemoryRange* pMemRanges) {
Jesse Hall73ab0ac2015-08-25 15:09:15 +01001142 ALOGV("TODO: vk%s", __FUNCTION__);
Jesse Hall04f4f472015-08-16 19:51:04 -07001143 return VK_SUCCESS;
1144}
1145
1146VkResult InvalidateMappedMemoryRanges(VkDevice device, uint32_t memRangeCount, const VkMappedMemoryRange* pMemRanges) {
Jesse Hall73ab0ac2015-08-25 15:09:15 +01001147 ALOGV("TODO: vk%s", __FUNCTION__);
Jesse Hall04f4f472015-08-16 19:51:04 -07001148 return VK_SUCCESS;
1149}
1150
Jesse Hall606a54e2015-11-19 22:17:28 -08001151void GetDeviceMemoryCommitment(VkDevice device, VkDeviceMemory memory, VkDeviceSize* pCommittedMemoryInBytes) {
Jesse Hall73ab0ac2015-08-25 15:09:15 +01001152 ALOGV("TODO: vk%s", __FUNCTION__);
Jesse Hall04f4f472015-08-16 19:51:04 -07001153}
1154
Jesse Hall04f4f472015-08-16 19:51:04 -07001155VkResult BindBufferMemory(VkDevice device, VkBuffer buffer, VkDeviceMemory mem, VkDeviceSize memOffset) {
1156 return VK_SUCCESS;
1157}
1158
Jesse Hall04f4f472015-08-16 19:51:04 -07001159VkResult BindImageMemory(VkDevice device, VkImage image, VkDeviceMemory mem, VkDeviceSize memOffset) {
1160 return VK_SUCCESS;
1161}
1162
Jesse Hall606a54e2015-11-19 22:17:28 -08001163void GetImageSparseMemoryRequirements(VkDevice device, VkImage image, uint32_t* pNumRequirements, VkSparseImageMemoryRequirements* pSparseMemoryRequirements) {
Jesse Hall73ab0ac2015-08-25 15:09:15 +01001164 ALOGV("TODO: vk%s", __FUNCTION__);
Jesse Hall04f4f472015-08-16 19:51:04 -07001165}
1166
Jesse Hall091ed9e2015-11-30 00:55:29 -08001167void GetPhysicalDeviceSparseImageFormatProperties(VkPhysicalDevice physicalDevice, VkFormat format, VkImageType type, VkSampleCountFlagBits samples, VkImageUsageFlags usage, VkImageTiling tiling, uint32_t* pNumProperties, VkSparseImageFormatProperties* pProperties) {
Jesse Hall73ab0ac2015-08-25 15:09:15 +01001168 ALOGV("TODO: vk%s", __FUNCTION__);
Jesse Hall04f4f472015-08-16 19:51:04 -07001169}
1170
Chris Forbes86bdfbe2017-01-26 12:45:49 +13001171void GetPhysicalDeviceSparseImageFormatProperties2KHR(VkPhysicalDevice physicalDevice,
1172 VkPhysicalDeviceSparseImageFormatInfo2KHR const* pInfo,
1173 unsigned int* pNumProperties,
1174 VkSparseImageFormatProperties2KHR* pProperties) {
1175 ALOGV("TODO: vk%s", __FUNCTION__);
1176}
1177
1178
Jesse Halla6429252015-11-29 18:59:42 -08001179VkResult QueueBindSparse(VkQueue queue, uint32_t bindInfoCount, const VkBindSparseInfo* pBindInfo, VkFence fence) {
Jesse Hall73ab0ac2015-08-25 15:09:15 +01001180 ALOGV("TODO: vk%s", __FUNCTION__);
Jesse Hall04f4f472015-08-16 19:51:04 -07001181 return VK_SUCCESS;
1182}
1183
Jesse Hall3fbc8562015-11-29 22:10:52 -08001184void DestroyFence(VkDevice device, VkFence fence, const VkAllocationCallbacks* allocator) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001185}
1186
1187VkResult ResetFences(VkDevice device, uint32_t fenceCount, const VkFence* pFences) {
1188 return VK_SUCCESS;
1189}
1190
1191VkResult GetFenceStatus(VkDevice device, VkFence fence) {
Jesse Hall73ab0ac2015-08-25 15:09:15 +01001192 ALOGV("TODO: vk%s", __FUNCTION__);
Jesse Hall04f4f472015-08-16 19:51:04 -07001193 return VK_SUCCESS;
1194}
1195
1196VkResult WaitForFences(VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkBool32 waitAll, uint64_t timeout) {
1197 return VK_SUCCESS;
1198}
1199
Jesse Hall3fbc8562015-11-29 22:10:52 -08001200void DestroySemaphore(VkDevice device, VkSemaphore semaphore, const VkAllocationCallbacks* allocator) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001201}
1202
Jesse Hall3fbc8562015-11-29 22:10:52 -08001203void DestroyEvent(VkDevice device, VkEvent event, const VkAllocationCallbacks* allocator) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001204}
1205
1206VkResult GetEventStatus(VkDevice device, VkEvent event) {
Jesse Hall73ab0ac2015-08-25 15:09:15 +01001207 ALOGV("TODO: vk%s", __FUNCTION__);
Jesse Hall04f4f472015-08-16 19:51:04 -07001208 return VK_SUCCESS;
1209}
1210
1211VkResult SetEvent(VkDevice device, VkEvent event) {
Jesse Hall73ab0ac2015-08-25 15:09:15 +01001212 ALOGV("TODO: vk%s", __FUNCTION__);
Jesse Hall04f4f472015-08-16 19:51:04 -07001213 return VK_SUCCESS;
1214}
1215
1216VkResult ResetEvent(VkDevice device, VkEvent event) {
Jesse Hall73ab0ac2015-08-25 15:09:15 +01001217 ALOGV("TODO: vk%s", __FUNCTION__);
Jesse Hall04f4f472015-08-16 19:51:04 -07001218 return VK_SUCCESS;
1219}
1220
Jesse Hall3fbc8562015-11-29 22:10:52 -08001221void DestroyQueryPool(VkDevice device, VkQueryPool queryPool, const VkAllocationCallbacks* allocator) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001222}
1223
Jesse Halla9bb62b2015-11-21 19:31:56 -08001224VkResult GetQueryPoolResults(VkDevice device, VkQueryPool queryPool, uint32_t startQuery, uint32_t queryCount, size_t dataSize, void* pData, VkDeviceSize stride, VkQueryResultFlags flags) {
Jesse Hall73ab0ac2015-08-25 15:09:15 +01001225 ALOGV("TODO: vk%s", __FUNCTION__);
Jesse Hall04f4f472015-08-16 19:51:04 -07001226 return VK_SUCCESS;
1227}
1228
Jesse Hall3fbc8562015-11-29 22:10:52 -08001229void DestroyBufferView(VkDevice device, VkBufferView bufferView, const VkAllocationCallbacks* allocator) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001230}
1231
Jesse Hall606a54e2015-11-19 22:17:28 -08001232void GetImageSubresourceLayout(VkDevice device, VkImage image, const VkImageSubresource* pSubresource, VkSubresourceLayout* pLayout) {
Jesse Hall73ab0ac2015-08-25 15:09:15 +01001233 ALOGV("TODO: vk%s", __FUNCTION__);
Jesse Hall04f4f472015-08-16 19:51:04 -07001234}
1235
Jesse Hall3fbc8562015-11-29 22:10:52 -08001236void DestroyImageView(VkDevice device, VkImageView imageView, const VkAllocationCallbacks* allocator) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001237}
1238
Jesse Hall3fbc8562015-11-29 22:10:52 -08001239void DestroyShaderModule(VkDevice device, VkShaderModule shaderModule, const VkAllocationCallbacks* allocator) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001240}
1241
Jesse Hall3fbc8562015-11-29 22:10:52 -08001242void DestroyPipelineCache(VkDevice device, VkPipelineCache pipelineCache, const VkAllocationCallbacks* allocator) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001243}
1244
Jesse Halla9bb62b2015-11-21 19:31:56 -08001245VkResult GetPipelineCacheData(VkDevice device, VkPipelineCache pipelineCache, size_t* pDataSize, void* pData) {
Jesse Hall73ab0ac2015-08-25 15:09:15 +01001246 ALOGV("TODO: vk%s", __FUNCTION__);
Jesse Hall04f4f472015-08-16 19:51:04 -07001247 return VK_SUCCESS;
1248}
1249
1250VkResult MergePipelineCaches(VkDevice device, VkPipelineCache destCache, uint32_t srcCacheCount, const VkPipelineCache* pSrcCaches) {
Jesse Hall73ab0ac2015-08-25 15:09:15 +01001251 ALOGV("TODO: vk%s", __FUNCTION__);
Jesse Hall04f4f472015-08-16 19:51:04 -07001252 return VK_SUCCESS;
1253}
1254
Jesse Hall3fbc8562015-11-29 22:10:52 -08001255void DestroyPipeline(VkDevice device, VkPipeline pipeline, const VkAllocationCallbacks* allocator) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001256}
1257
Jesse Hall3fbc8562015-11-29 22:10:52 -08001258void DestroyPipelineLayout(VkDevice device, VkPipelineLayout pipelineLayout, const VkAllocationCallbacks* allocator) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001259}
1260
Jesse Hall3fbc8562015-11-29 22:10:52 -08001261void DestroySampler(VkDevice device, VkSampler sampler, const VkAllocationCallbacks* allocator) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001262}
1263
Jesse Hall3fbc8562015-11-29 22:10:52 -08001264void DestroyDescriptorSetLayout(VkDevice device, VkDescriptorSetLayout descriptorSetLayout, const VkAllocationCallbacks* allocator) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001265}
1266
Jesse Hall3fbc8562015-11-29 22:10:52 -08001267void DestroyDescriptorPool(VkDevice device, VkDescriptorPool descriptorPool, const VkAllocationCallbacks* allocator) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001268}
1269
Jesse Hallfbf97b02015-11-20 14:17:03 -08001270VkResult ResetDescriptorPool(VkDevice device, VkDescriptorPool descriptorPool, VkDescriptorPoolResetFlags flags) {
Jesse Hall73ab0ac2015-08-25 15:09:15 +01001271 ALOGV("TODO: vk%s", __FUNCTION__);
Jesse Hall04f4f472015-08-16 19:51:04 -07001272 return VK_SUCCESS;
1273}
1274
Jesse Hallcf25c412015-10-29 17:14:50 -07001275void UpdateDescriptorSets(VkDevice device, uint32_t writeCount, const VkWriteDescriptorSet* pDescriptorWrites, uint32_t copyCount, const VkCopyDescriptorSet* pDescriptorCopies) {
Jesse Hall73ab0ac2015-08-25 15:09:15 +01001276 ALOGV("TODO: vk%s", __FUNCTION__);
Jesse Hall04f4f472015-08-16 19:51:04 -07001277}
1278
1279VkResult FreeDescriptorSets(VkDevice device, VkDescriptorPool descriptorPool, uint32_t count, const VkDescriptorSet* pDescriptorSets) {
Jesse Hall73ab0ac2015-08-25 15:09:15 +01001280 ALOGV("TODO: vk%s", __FUNCTION__);
Jesse Hall04f4f472015-08-16 19:51:04 -07001281 return VK_SUCCESS;
1282}
1283
Jesse Hall3fbc8562015-11-29 22:10:52 -08001284void DestroyFramebuffer(VkDevice device, VkFramebuffer framebuffer, const VkAllocationCallbacks* allocator) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001285}
1286
Jesse Hall3fbc8562015-11-29 22:10:52 -08001287void DestroyRenderPass(VkDevice device, VkRenderPass renderPass, const VkAllocationCallbacks* allocator) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001288}
1289
Jesse Hall606a54e2015-11-19 22:17:28 -08001290void GetRenderAreaGranularity(VkDevice device, VkRenderPass renderPass, VkExtent2D* pGranularity) {
Jesse Hall73ab0ac2015-08-25 15:09:15 +01001291 ALOGV("TODO: vk%s", __FUNCTION__);
Jesse Hall04f4f472015-08-16 19:51:04 -07001292}
1293
Jesse Hall3fbc8562015-11-29 22:10:52 -08001294VkResult ResetCommandPool(VkDevice device, VkCommandPool cmdPool, VkCommandPoolResetFlags flags) {
Jesse Hall73ab0ac2015-08-25 15:09:15 +01001295 ALOGV("TODO: vk%s", __FUNCTION__);
Jesse Hall04f4f472015-08-16 19:51:04 -07001296 return VK_SUCCESS;
1297}
1298
Jesse Hall3fbc8562015-11-29 22:10:52 -08001299VkResult BeginCommandBuffer(VkCommandBuffer cmdBuffer, const VkCommandBufferBeginInfo* pBeginInfo) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001300 return VK_SUCCESS;
1301}
1302
Jesse Hall3fbc8562015-11-29 22:10:52 -08001303VkResult EndCommandBuffer(VkCommandBuffer cmdBuffer) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001304 return VK_SUCCESS;
1305}
1306
Jesse Hall3fbc8562015-11-29 22:10:52 -08001307VkResult ResetCommandBuffer(VkCommandBuffer cmdBuffer, VkCommandBufferResetFlags flags) {
Jesse Hall73ab0ac2015-08-25 15:09:15 +01001308 ALOGV("TODO: vk%s", __FUNCTION__);
Jesse Hall04f4f472015-08-16 19:51:04 -07001309 return VK_SUCCESS;
1310}
1311
Jesse Hall3fbc8562015-11-29 22:10:52 -08001312void CmdBindPipeline(VkCommandBuffer cmdBuffer, VkPipelineBindPoint pipelineBindPoint, VkPipeline pipeline) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001313}
1314
Jesse Hallf9fa9a52016-01-08 16:08:51 -08001315void CmdSetViewport(VkCommandBuffer cmdBuffer, uint32_t firstViewport, uint32_t viewportCount, const VkViewport* pViewports) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001316}
1317
Jesse Hallf9fa9a52016-01-08 16:08:51 -08001318void CmdSetScissor(VkCommandBuffer cmdBuffer, uint32_t firstScissor, uint32_t scissorCount, const VkRect2D* pScissors) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001319}
1320
Jesse Hall3fbc8562015-11-29 22:10:52 -08001321void CmdSetLineWidth(VkCommandBuffer cmdBuffer, float lineWidth) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001322}
1323
Jesse Hall3fbc8562015-11-29 22:10:52 -08001324void CmdSetDepthBias(VkCommandBuffer cmdBuffer, float depthBias, float depthBiasClamp, float slopeScaledDepthBias) {
Jesse Hall5ae3abb2015-10-08 14:00:22 -07001325}
1326
Jesse Hall3fbc8562015-11-29 22:10:52 -08001327void CmdSetBlendConstants(VkCommandBuffer cmdBuffer, const float blendConst[4]) {
Jesse Hall5ae3abb2015-10-08 14:00:22 -07001328}
1329
Jesse Hall3fbc8562015-11-29 22:10:52 -08001330void CmdSetDepthBounds(VkCommandBuffer cmdBuffer, float minDepthBounds, float maxDepthBounds) {
Jesse Hall5ae3abb2015-10-08 14:00:22 -07001331}
1332
Jesse Hall3fbc8562015-11-29 22:10:52 -08001333void CmdSetStencilCompareMask(VkCommandBuffer cmdBuffer, VkStencilFaceFlags faceMask, uint32_t stencilCompareMask) {
Jesse Hall5ae3abb2015-10-08 14:00:22 -07001334}
1335
Jesse Hall3fbc8562015-11-29 22:10:52 -08001336void CmdSetStencilWriteMask(VkCommandBuffer cmdBuffer, VkStencilFaceFlags faceMask, uint32_t stencilWriteMask) {
Jesse Hall5ae3abb2015-10-08 14:00:22 -07001337}
1338
Jesse Hall3fbc8562015-11-29 22:10:52 -08001339void CmdSetStencilReference(VkCommandBuffer cmdBuffer, VkStencilFaceFlags faceMask, uint32_t stencilReference) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001340}
1341
Jesse Hall3fbc8562015-11-29 22:10:52 -08001342void CmdBindDescriptorSets(VkCommandBuffer cmdBuffer, VkPipelineBindPoint pipelineBindPoint, VkPipelineLayout layout, uint32_t firstSet, uint32_t setCount, const VkDescriptorSet* pDescriptorSets, uint32_t dynamicOffsetCount, const uint32_t* pDynamicOffsets) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001343}
1344
Jesse Hall3fbc8562015-11-29 22:10:52 -08001345void CmdBindIndexBuffer(VkCommandBuffer cmdBuffer, VkBuffer buffer, VkDeviceSize offset, VkIndexType indexType) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001346}
1347
Jesse Hall3fbc8562015-11-29 22:10:52 -08001348void CmdBindVertexBuffers(VkCommandBuffer cmdBuffer, uint32_t startBinding, uint32_t bindingCount, const VkBuffer* pBuffers, const VkDeviceSize* pOffsets) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001349}
1350
Jesse Hall3fbc8562015-11-29 22:10:52 -08001351void CmdDraw(VkCommandBuffer cmdBuffer, uint32_t vertexCount, uint32_t instanceCount, uint32_t firstVertex, uint32_t firstInstance) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001352}
1353
Jesse Hall3fbc8562015-11-29 22:10:52 -08001354void CmdDrawIndexed(VkCommandBuffer cmdBuffer, uint32_t indexCount, uint32_t instanceCount, uint32_t firstIndex, int32_t vertexOffset, uint32_t firstInstance) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001355}
1356
Jesse Hall3fbc8562015-11-29 22:10:52 -08001357void CmdDrawIndirect(VkCommandBuffer cmdBuffer, VkBuffer buffer, VkDeviceSize offset, uint32_t count, uint32_t stride) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001358}
1359
Jesse Hall3fbc8562015-11-29 22:10:52 -08001360void CmdDrawIndexedIndirect(VkCommandBuffer cmdBuffer, VkBuffer buffer, VkDeviceSize offset, uint32_t count, uint32_t stride) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001361}
1362
Jesse Hall3fbc8562015-11-29 22:10:52 -08001363void CmdDispatch(VkCommandBuffer cmdBuffer, uint32_t x, uint32_t y, uint32_t z) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001364}
1365
Jesse Hall3fbc8562015-11-29 22:10:52 -08001366void CmdDispatchIndirect(VkCommandBuffer cmdBuffer, VkBuffer buffer, VkDeviceSize offset) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001367}
1368
Jesse Hall3fbc8562015-11-29 22:10:52 -08001369void CmdCopyBuffer(VkCommandBuffer cmdBuffer, VkBuffer srcBuffer, VkBuffer destBuffer, uint32_t regionCount, const VkBufferCopy* pRegions) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001370}
1371
Jesse Hall3fbc8562015-11-29 22:10:52 -08001372void CmdCopyImage(VkCommandBuffer cmdBuffer, VkImage srcImage, VkImageLayout srcImageLayout, VkImage destImage, VkImageLayout destImageLayout, uint32_t regionCount, const VkImageCopy* pRegions) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001373}
1374
Jesse Hall3fbc8562015-11-29 22:10:52 -08001375void CmdBlitImage(VkCommandBuffer cmdBuffer, VkImage srcImage, VkImageLayout srcImageLayout, VkImage destImage, VkImageLayout destImageLayout, uint32_t regionCount, const VkImageBlit* pRegions, VkFilter filter) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001376}
1377
Jesse Hall3fbc8562015-11-29 22:10:52 -08001378void CmdCopyBufferToImage(VkCommandBuffer cmdBuffer, VkBuffer srcBuffer, VkImage destImage, VkImageLayout destImageLayout, uint32_t regionCount, const VkBufferImageCopy* pRegions) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001379}
1380
Jesse Hall3fbc8562015-11-29 22:10:52 -08001381void CmdCopyImageToBuffer(VkCommandBuffer cmdBuffer, VkImage srcImage, VkImageLayout srcImageLayout, VkBuffer destBuffer, uint32_t regionCount, const VkBufferImageCopy* pRegions) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001382}
1383
Jesse Hall56d386a2016-07-26 15:20:40 -07001384void CmdUpdateBuffer(VkCommandBuffer cmdBuffer, VkBuffer destBuffer, VkDeviceSize destOffset, VkDeviceSize dataSize, const void* pData) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001385}
1386
Jesse Hall3fbc8562015-11-29 22:10:52 -08001387void CmdFillBuffer(VkCommandBuffer cmdBuffer, VkBuffer destBuffer, VkDeviceSize destOffset, VkDeviceSize fillSize, uint32_t data) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001388}
1389
Jesse Hall3fbc8562015-11-29 22:10:52 -08001390void CmdClearColorImage(VkCommandBuffer cmdBuffer, VkImage image, VkImageLayout imageLayout, const VkClearColorValue* pColor, uint32_t rangeCount, const VkImageSubresourceRange* pRanges) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001391}
1392
Jesse Hall3fbc8562015-11-29 22:10:52 -08001393void CmdClearDepthStencilImage(VkCommandBuffer cmdBuffer, VkImage image, VkImageLayout imageLayout, const VkClearDepthStencilValue* pDepthStencil, uint32_t rangeCount, const VkImageSubresourceRange* pRanges) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001394}
1395
Jesse Hall3fbc8562015-11-29 22:10:52 -08001396void CmdClearAttachments(VkCommandBuffer cmdBuffer, uint32_t attachmentCount, const VkClearAttachment* pAttachments, uint32_t rectCount, const VkClearRect* pRects) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001397}
1398
Jesse Hall3fbc8562015-11-29 22:10:52 -08001399void CmdResolveImage(VkCommandBuffer cmdBuffer, VkImage srcImage, VkImageLayout srcImageLayout, VkImage destImage, VkImageLayout destImageLayout, uint32_t regionCount, const VkImageResolve* pRegions) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001400}
1401
Jesse Hall3fbc8562015-11-29 22:10:52 -08001402void CmdSetEvent(VkCommandBuffer cmdBuffer, VkEvent event, VkPipelineStageFlags stageMask) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001403}
1404
Jesse Hall3fbc8562015-11-29 22:10:52 -08001405void CmdResetEvent(VkCommandBuffer cmdBuffer, VkEvent event, VkPipelineStageFlags stageMask) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001406}
1407
Jesse Hall3dd678a2016-01-08 21:52:01 -08001408void CmdWaitEvents(VkCommandBuffer commandBuffer, uint32_t eventCount, const VkEvent* pEvents, VkPipelineStageFlags srcStageMask, VkPipelineStageFlags dstStageMask, uint32_t memoryBarrierCount, const VkMemoryBarrier* pMemoryBarriers, uint32_t bufferMemoryBarrierCount, const VkBufferMemoryBarrier* pBufferMemoryBarriers, uint32_t imageMemoryBarrierCount, const VkImageMemoryBarrier* pImageMemoryBarriers) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001409}
1410
Jesse Hall3dd678a2016-01-08 21:52:01 -08001411void CmdPipelineBarrier(VkCommandBuffer commandBuffer, VkPipelineStageFlags srcStageMask, VkPipelineStageFlags dstStageMask, VkDependencyFlags dependencyFlags, uint32_t memoryBarrierCount, const VkMemoryBarrier* pMemoryBarriers, uint32_t bufferMemoryBarrierCount, const VkBufferMemoryBarrier* pBufferMemoryBarriers, uint32_t imageMemoryBarrierCount, const VkImageMemoryBarrier* pImageMemoryBarriers) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001412}
1413
Jesse Hall3fbc8562015-11-29 22:10:52 -08001414void CmdBeginQuery(VkCommandBuffer cmdBuffer, VkQueryPool queryPool, uint32_t slot, VkQueryControlFlags flags) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001415}
1416
Jesse Hall3fbc8562015-11-29 22:10:52 -08001417void CmdEndQuery(VkCommandBuffer cmdBuffer, VkQueryPool queryPool, uint32_t slot) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001418}
1419
Jesse Hall3fbc8562015-11-29 22:10:52 -08001420void CmdResetQueryPool(VkCommandBuffer cmdBuffer, VkQueryPool queryPool, uint32_t startQuery, uint32_t queryCount) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001421}
1422
Jesse Hall3fbc8562015-11-29 22:10:52 -08001423void CmdWriteTimestamp(VkCommandBuffer cmdBuffer, VkPipelineStageFlagBits pipelineStage, VkQueryPool queryPool, uint32_t slot) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001424}
1425
Jesse Hall3fbc8562015-11-29 22:10:52 -08001426void CmdCopyQueryPoolResults(VkCommandBuffer cmdBuffer, VkQueryPool queryPool, uint32_t startQuery, uint32_t queryCount, VkBuffer destBuffer, VkDeviceSize destOffset, VkDeviceSize destStride, VkQueryResultFlags flags) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001427}
1428
Jesse Hall3fbc8562015-11-29 22:10:52 -08001429void CmdPushConstants(VkCommandBuffer cmdBuffer, VkPipelineLayout layout, VkShaderStageFlags stageFlags, uint32_t start, uint32_t length, const void* values) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001430}
1431
Jesse Hall65ab5522015-11-30 00:07:16 -08001432void CmdBeginRenderPass(VkCommandBuffer cmdBuffer, const VkRenderPassBeginInfo* pRenderPassBegin, VkSubpassContents contents) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001433}
1434
Jesse Hall65ab5522015-11-30 00:07:16 -08001435void CmdNextSubpass(VkCommandBuffer cmdBuffer, VkSubpassContents contents) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001436}
1437
Jesse Hall3fbc8562015-11-29 22:10:52 -08001438void CmdEndRenderPass(VkCommandBuffer cmdBuffer) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001439}
1440
Jesse Hall3fbc8562015-11-29 22:10:52 -08001441void CmdExecuteCommands(VkCommandBuffer cmdBuffer, uint32_t cmdBuffersCount, const VkCommandBuffer* pCmdBuffers) {
Jesse Hall04f4f472015-08-16 19:51:04 -07001442}
1443
Jesse Hall715b86a2016-01-16 16:34:29 -08001444void DestroyDebugReportCallbackEXT(VkInstance instance, VkDebugReportCallbackEXT callback, const VkAllocationCallbacks* pAllocator) {
1445}
1446
1447void DebugReportMessageEXT(VkInstance instance, VkDebugReportFlagsEXT flags, VkDebugReportObjectTypeEXT objectType, uint64_t object, size_t location, int32_t messageCode, const char* pLayerPrefix, const char* pMessage) {
1448}
1449
Jesse Hall04f4f472015-08-16 19:51:04 -07001450#pragma clang diagnostic pop
1451// clang-format on
1452
1453} // namespace null_driver