Skip to content

Instantly share code, notes, and snippets.

@tuket
Last active November 8, 2022 10:11
Show Gist options
  • Save tuket/e97daf8100bad8f4ac3b8b9b6688b904 to your computer and use it in GitHub Desktop.
Save tuket/e97daf8100bad8f4ac3b8b9b6688b904 to your computer and use it in GitHub Desktop.
Bug report for Nvidia

Hello, I'm a software developer and I'm using Vulkan. After updating my drivers, I noticed that I started getting some errors from the Khronos validation layers. After lots of time debugging, I think I found the issue. I had to compile the Validation Layers in debug mode in order to find out.

The problem is in the vkCreateInstance function. If you set VkInstanceCreateInfo.VkApplicationInfo.apiVersion = VK_API_VERSION_1_0 ...

when you get to the Validation Layer callback:

VKAPI_ATTR VkResult VKAPI_CALL CreateInstance(const VkInstanceCreateInfo *pCreateInfo, const VkAllocationCallbacks *pAllocator, VkInstance *pInstance) {

The version you receive in pCreateInfo->pApplicationInfo->apiVersion == VK_API_VERSION_1_1.

In other words, the version reported to the validation layer is wrong.

This confuses the validation layers. They think they are allowed to use functions from 1.1, but this leads to undefined behavior. In my particular case, that seems to get wrong values from the called 1.1 API functions and, therefore, I get validation errors.

This is the code I used to reproduce the issue:

#include <stdio.h>
#include <string.h>
#include <assert.h>
#include <vulkan/vulkan.h>
#include <GLFW/glfw3.h>

typedef uint8_t u8;
typedef int32_t i32;
typedef int64_t i64;
typedef uint32_t u32;
typedef uint64_t u64;

namespace
{
GLFWwindow* window;
}

int main()
{
	//static bool b = false;
	//while (!b);

	glfwInit();
	glfwWindowHint(GLFW_CLIENT_API, GLFW_NO_API);
	window = glfwCreateWindow(800, 600, "example 1", nullptr, nullptr);

	VkInstance instance;
	VkResult vkRes;
	{ // -- create instance
		u32 numRequiredExtensions;
		const char** requiredExtensions = glfwGetRequiredInstanceExtensions(&numRequiredExtensions);
		const VkApplicationInfo appInfo = {
			.sType = VK_STRUCTURE_TYPE_APPLICATION_INFO,
			.apiVersion = VK_API_VERSION_1_0
		};
		const VkInstanceCreateInfo info = {
			.sType = VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO,
			.pApplicationInfo = &appInfo,
			.enabledExtensionCount = numRequiredExtensions,
			.ppEnabledExtensionNames = requiredExtensions
		};
		vkRes = vkCreateInstance(&info, nullptr, &instance);
		assert(vkRes == VK_SUCCESS);
	}
}
This file has been truncated, but you can view the full file.
INFO: Using Vulkan Loader C:\Windows\system32\vulkan-1.dll
INFO: Vulkan Loader Version 1.3.224
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_implicit_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_api_dump is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_gfxreconstruct is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_profiles is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_synchronization2 is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_monitor is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_screenshot is not list inside of any. So removing layer from current layer list.
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_implicit_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_api_dump is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_gfxreconstruct is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_profiles is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_synchronization2 is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_monitor is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_screenshot is not list inside of any. So removing layer from current layer list.
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_implicit_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_api_dump is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_gfxreconstruct is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_profiles is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_synchronization2 is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_monitor is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_screenshot is not list inside of any. So removing layer from current layer list.
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_implicit_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_api_dump is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_gfxreconstruct is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_profiles is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_synchronization2 is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_monitor is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_screenshot is not list inside of any. So removing layer from current layer list.
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_implicit_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_api_dump is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_gfxreconstruct is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_profiles is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_synchronization2 is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_monitor is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_screenshot is not list inside of any. So removing layer from current layer list.
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_implicit_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_api_dump is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_gfxreconstruct is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_profiles is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_synchronization2 is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_monitor is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_screenshot is not list inside of any. So removing layer from current layer list.
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_implicit_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_api_dump is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_gfxreconstruct is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_profiles is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_synchronization2 is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_monitor is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_screenshot is not list inside of any. So removing layer from current layer list.
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_implicit_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_api_dump is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_gfxreconstruct is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_profiles is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_synchronization2 is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_monitor is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_screenshot is not list inside of any. So removing layer from current layer list.
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_implicit_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_api_dump is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_gfxreconstruct is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_profiles is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_synchronization2 is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_monitor is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_screenshot is not list inside of any. So removing layer from current layer list.
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_implicit_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_api_dump is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_gfxreconstruct is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_profiles is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_synchronization2 is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_monitor is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_screenshot is not list inside of any. So removing layer from current layer list.
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_implicit_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_api_dump is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_gfxreconstruct is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_profiles is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_synchronization2 is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_monitor is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_screenshot is not list inside of any. So removing layer from current layer list.
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_implicit_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_api_dump is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_gfxreconstruct is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_profiles is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_synchronization2 is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_monitor is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_screenshot is not list inside of any. So removing layer from current layer list.
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_implicit_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_api_dump is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_gfxreconstruct is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_profiles is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_synchronization2 is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_monitor is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_screenshot is not list inside of any. So removing layer from current layer list.
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_implicit_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_api_dump is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_gfxreconstruct is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_profiles is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_synchronization2 is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_monitor is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_screenshot is not list inside of any. So removing layer from current layer list.
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_implicit_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_api_dump is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_gfxreconstruct is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_profiles is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_synchronization2 is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_monitor is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_screenshot is not list inside of any. So removing layer from current layer list.
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_implicit_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_api_dump is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_gfxreconstruct is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_profiles is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_synchronization2 is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_monitor is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_screenshot is not list inside of any. So removing layer from current layer list.
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_implicit_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_api_dump is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_gfxreconstruct is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_profiles is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_synchronization2 is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_monitor is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_screenshot is not list inside of any. So removing layer from current layer list.
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_implicit_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_api_dump is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_gfxreconstruct is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_profiles is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_synchronization2 is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_monitor is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_screenshot is not list inside of any. So removing layer from current layer list.
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_implicit_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_api_dump is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_gfxreconstruct is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_profiles is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_synchronization2 is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_monitor is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_screenshot is not list inside of any. So removing layer from current layer list.
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_implicit_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_api_dump is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_gfxreconstruct is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_profiles is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_synchronization2 is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_monitor is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_screenshot is not list inside of any. So removing layer from current layer list.
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_implicit_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_api_dump is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_gfxreconstruct is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_profiles is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_synchronization2 is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_monitor is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_screenshot is not list inside of any. So removing layer from current layer list.
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_implicit_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_api_dump is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_gfxreconstruct is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_profiles is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_synchronization2 is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_monitor is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_screenshot is not list inside of any. So removing layer from current layer list.
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_implicit_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_api_dump is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_gfxreconstruct is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_profiles is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_synchronization2 is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_monitor is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_screenshot is not list inside of any. So removing layer from current layer list.
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_implicit_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_api_dump is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_gfxreconstruct is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_profiles is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_synchronization2 is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_monitor is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_screenshot is not list inside of any. So removing layer from current layer list.
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_implicit_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_api_dump is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_gfxreconstruct is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_profiles is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_synchronization2 is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_monitor is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_screenshot is not list inside of any. So removing layer from current layer list.
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_implicit_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_api_dump is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_gfxreconstruct is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_profiles is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_synchronization2 is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_monitor is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_screenshot is not list inside of any. So removing layer from current layer list.
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_implicit_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_api_dump is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_gfxreconstruct is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_profiles is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_synchronization2 is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_monitor is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_screenshot is not list inside of any. So removing layer from current layer list.
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_implicit_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_api_dump is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_gfxreconstruct is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_profiles is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_synchronization2 is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_monitor is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_screenshot is not list inside of any. So removing layer from current layer list.
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_implicit_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_api_dump is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_gfxreconstruct is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_profiles is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_synchronization2 is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_monitor is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_screenshot is not list inside of any. So removing layer from current layer list.
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_implicit_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_api_dump is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_gfxreconstruct is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_profiles is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_synchronization2 is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_monitor is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_screenshot is not list inside of any. So removing layer from current layer list.
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_implicit_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_api_dump is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_gfxreconstruct is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_profiles is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_synchronization2 is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_monitor is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_screenshot is not list inside of any. So removing layer from current layer list.
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_implicit_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_api_dump is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_gfxreconstruct is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_profiles is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_synchronization2 is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_monitor is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_screenshot is not list inside of any. So removing layer from current layer list.
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_implicit_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_api_dump is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_gfxreconstruct is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_profiles is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_synchronization2 is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_monitor is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_screenshot is not list inside of any. So removing layer from current layer list.
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_implicit_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_api_dump is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_gfxreconstruct is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_profiles is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_synchronization2 is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_monitor is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_screenshot is not list inside of any. So removing layer from current layer list.
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_implicit_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_api_dump is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_gfxreconstruct is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_profiles is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_synchronization2 is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_monitor is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_screenshot is not list inside of any. So removing layer from current layer list.
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_implicit_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_api_dump is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_gfxreconstruct is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_profiles is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_synchronization2 is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_monitor is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_screenshot is not list inside of any. So removing layer from current layer list.
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_implicit_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_api_dump is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_gfxreconstruct is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_profiles is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_synchronization2 is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_monitor is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_screenshot is not list inside of any. So removing layer from current layer list.
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_implicit_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_api_dump is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_gfxreconstruct is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_profiles is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_synchronization2 is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_monitor is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_screenshot is not list inside of any. So removing layer from current layer list.
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_implicit_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_api_dump is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_gfxreconstruct is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_profiles is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_synchronization2 is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_monitor is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_screenshot is not list inside of any. So removing layer from current layer list.
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_implicit_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_api_dump is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_gfxreconstruct is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_profiles is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_synchronization2 is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_monitor is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_screenshot is not list inside of any. So removing layer from current layer list.
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_implicit_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_api_dump is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_gfxreconstruct is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_profiles is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_synchronization2 is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_monitor is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_screenshot is not list inside of any. So removing layer from current layer list.
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_implicit_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_api_dump is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_gfxreconstruct is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_profiles is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_synchronization2 is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_monitor is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_screenshot is not list inside of any. So removing layer from current layer list.
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_implicit_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_api_dump is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_gfxreconstruct is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_profiles is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_KHRONOS_synchronization2 is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_monitor is not list inside of any. So removing layer from current layer list.
DEBUG: loader_remove_layers_not_in_implicit_meta_layers : Implicit meta-layers are active, and layer VK_LAYER_LUNARG_screenshot is not list inside of any. So removing layer from current layer list.
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_profiles.json (file version "1.2.1")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_synchronization2.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khronos_validation.json (file version "1.2.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_monitor.json (file version "1.0.0")
INFO: Found manifest file C:/VulkanSDK/1.3.231.1/Bin\VkLayer_screenshot.json (file version "1.2.0")
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_report
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_debug_utils
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding instance extension VK_EXT_validation_features
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_debug_marker
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_validation_cache
DEBUG: Meta-layer VK_LAYER_LUNARG_override component layer VK_LAYER_KHRONOS_validation adding device extension VK_EXT_tooling_info
INFO | LAYER: Meta-layer VK_LAYER_LUNARG_override all 1 component layers appear to be valid.
LAYER: [0] VK_LAYER_KHRONOS_validation
LAYER: Checking for Layer Manifest files in Registry at SOFTWARE\Khronos\Vulkan\ImplicitLayers
INFO: windows_add_json_entry: Located json file "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json" from PnP registry: E
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files\RenderDoc\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\ProgramData\obs-studio-hook\obs-vulkan64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "E:\progs\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO | LAYER: Skipping adding of json file "C:\Users\tuket\Documents\prog\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers" to the list due to duplication
INFO | LAYER: Located json file "C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json" from registry "HKEY_CURRENT_USER\SOFTWARE\Khronos\Vulkan\ImplicitLayers"
INFO: Found manifest file C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_ade64cd54ec2f9ed\nv-vk64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_nomad_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_nomad_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\NVIDIA Corporation\Nsight Graphics 2021.3.0\target\windows-desktop-nomad-x64\VK_LAYER_NV_GPU_Trace_release_public_2021_3_0.json (file version "1.1.0")
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_NV_GPU_Trace_release_public_2021_3_0" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\Program Files\RenderDoc\renderdoc.json (file version "1.1.2")
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetInstanceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Layer "VK_LAYER_RENDERDOC_Capture" using deprecated 'vkGetDeviceProcAddr' tag which was deprecated starting with JSON file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for compatibility reasons it may be desirable to continue using the deprecated tag.
INFO: Found manifest file C:\ProgramData\obs-studio-hook\obs-vulkan64.json (file version "1.1.2")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer64.json (file version "1.0.0")
INFO: Found manifest file C:\Program Files (x86)\Steam\SteamFossilizeVulkanLayer64.json (file version "1.0.0")
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win32.json
ERROR: loader_get_json: Failed to open JSON file C:\Program Files (x86)\Epic Games\Launcher\Portal\Extras\Overlay\EOSOverlayVkLayer-Win64.json
INFO: Found manifest file C:\Users\tuket\AppData\Local\LunarG\vkconfig\override\VkLayer_override.json (file version "1.1.2")
INFO | LAYER: Encountered meta-layer VK_LAYER_LUNARG_override
INFO | LAYER: Using the global override layer
WARNING | LAYER: loader_scan_for_implicit_layers: Override layer has override paths set to C:/VulkanSDK/1.3.231.1/Bin
LAYER: Searching for layer manifest files
LAYER: In following folders:
LAYER: C:/VulkanSDK/1.3.231.1/Bin
LAYER: Found the following files:
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_api_dump.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_gfxreconstruct.json
LAYER: C:/VulkanSDK/1.3.231.1/Bin\VkLayer_khr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment