/* * Vulkan * * Copyright (C) 2014 LunarG, Inc. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. */ #include #include #include #include "vk_loader_platform.h" #include "vk_dispatch_table_helper.h" #include "vk_layer.h" #include "vk_layer_table.h" #include "vk_layer_extension_utils.h" // The following is #included again to catch certain OS-specific functions // being used: #include "vk_loader_platform.h" VK_LAYER_EXPORT VkResult VKAPI vkLayerExtension1(VkDevice device) { printf("In vkLayerExtension1() call w/ device: %p\n", (void*)device); printf("vkLayerExtension1 returning SUCCESS\n"); return VK_SUCCESS; } static const VkLayerProperties basic_physicaldevice_layers[] = { { "Basic", VK_API_VERSION, VK_MAKE_VERSION(0, 1, 0), "Sample layer: Basic, implements vkLayerExtension1", } }; /* Must use Vulkan name so that loader finds it */ VK_LAYER_EXPORT VkResult VKAPI vkGetPhysicalDeviceLayerProperties( VkPhysicalDevice physicalDevice, uint32_t* pCount, VkLayerProperties* pProperties) { /* Mem tracker's physical device layers are the same as global */ return util_GetLayerProperties(ARRAY_SIZE(basic_physicaldevice_layers), basic_physicaldevice_layers, pCount, pProperties); } static const VkExtensionProperties basic_physicaldevice_extensions[] = { { "vkLayerExtension1", VK_MAKE_VERSION(0, 1, 0), VK_API_VERSION } }; VK_LAYER_EXPORT VkResult VKAPI vkGetPhysicalDeviceExtensionProperties( VkPhysicalDevice physicalDevice, const char *pLayerName, uint32_t *pCount, VkExtensionProperties *pProperties) { return util_GetExtensionProperties(ARRAY_SIZE(basic_physicaldevice_extensions), basic_physicaldevice_extensions, pCount, pProperties); } VK_LAYER_EXPORT VkResult VKAPI basic_EnumeratePhysicalDevices( VkInstance instance, uint32_t* pPhysicalDeviceCount, VkPhysicalDevice* pPhysicalDevices) { printf("At start of wrapped vkEnumeratePhysicalDevices() call w/ inst: %p\n", (void*)instance); VkResult result = instance_dispatch_table(instance)->EnumeratePhysicalDevices(instance, pPhysicalDeviceCount, pPhysicalDevices); printf("Completed wrapped vkEnumeratePhysicalDevices() call w/ count %u\n", *pPhysicalDeviceCount); return result; } VK_LAYER_EXPORT VkResult VKAPI basic_CreateDevice(VkPhysicalDevice gpu, const VkDeviceCreateInfo* pCreateInfo, VkDevice* pDevice) { printf("At start of wrapped vkCreateDevice() call w/ gpu: %p\n", (void*)gpu); VkResult result = device_dispatch_table(*pDevice)->CreateDevice(gpu, pCreateInfo, pDevice); printf("Completed wrapped vkCreateDevice() call w/ pDevice, Device %p: %p\n", (void*)pDevice, (void *) *pDevice); return result; } /* hook DestroyDevice to remove tableMap entry */ VK_LAYER_EXPORT VkResult VKAPI basic_DestroyDevice(VkDevice device) { dispatch_key key = get_dispatch_key(device); VkResult res = device_dispatch_table(device)->DestroyDevice(device); destroy_device_dispatch_table(key); return res; } /* hook DestroyInstance to remove tableInstanceMap entry */ VK_LAYER_EXPORT VkResult VKAPI basic_DestroyInstance(VkInstance instance) { dispatch_key key = get_dispatch_key(instance); VkResult res = instance_dispatch_table(instance)->DestroyInstance(instance); destroy_instance_dispatch_table(key); return res; } VK_LAYER_EXPORT VkResult VKAPI basic_GetPhysicalDeviceFormatInfo(VkPhysicalDevice gpu, VkFormat format, VkFormatProperties *pFormatInfo) { printf("At start of wrapped vkGetPhysicalDeviceFormatInfo() call w/ gpu: %p\n", (void*)gpu); VkResult result = instance_dispatch_table(gpu)->GetPhysicalDeviceFormatInfo(gpu, format, pFormatInfo); printf("Completed wrapped vkGetPhysicalDeviceFormatInfo() call w/ gpu: %p\n", (void*)gpu); return result; } VK_LAYER_EXPORT void * VKAPI vkGetDeviceProcAddr(VkDevice device, const char* pName) { if (device == NULL) return NULL; /* loader uses this to force layer initialization; device object is wrapped */ if (!strcmp("vkGetDeviceProcAddr", pName)) { initDeviceTable((const VkBaseLayerObject *) device); return (void *) vkGetDeviceProcAddr; } if (!strcmp("vkCreateDevice", pName)) return (void *) basic_CreateDevice; if (!strcmp("vkDestroyDevice", pName)) return (void *) basic_DestroyDevice; if (!strcmp("vkLayerExtension1", pName)) return (void *) vkLayerExtension1; else { if (device_dispatch_table(device)->GetDeviceProcAddr == NULL) return NULL; return device_dispatch_table(device)->GetDeviceProcAddr(device, pName); } } VK_LAYER_EXPORT void * VKAPI vkGetInstanceProcAddr(VkInstance instance, const char* pName) { if (instance == NULL) return NULL; /* loader uses this to force layer initialization; instance object is wrapped */ if (!strcmp("vkGetInstanceProcAddr", pName)) { initInstanceTable((const VkBaseLayerObject *) instance); return (void *) vkGetInstanceProcAddr; } if (!strcmp("vkGetPhysicalDeviceLayerProperties", pName)) return (void *) vkGetPhysicalDeviceLayerProperties; if (!strcmp("vkGetPhysicalDeviceExtensionProperties", pName)) return (void *) vkGetPhysicalDeviceExtensionProperties; if (!strcmp("vkGetPhysicalDeviceFormatInfo", pName)) return (void *) basic_GetPhysicalDeviceFormatInfo; if (!strcmp("vkDestroyInstance", pName)) return (void *) basic_DestroyInstance; if (!strcmp("vkEnumeratePhysicalDevices", pName)) return (void*) basic_EnumeratePhysicalDevices; if (instance_dispatch_table(instance)->GetInstanceProcAddr == NULL) return NULL; return instance_dispatch_table(instance)->GetInstanceProcAddr(instance, pName); }