Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

Vulkan Issues

If none of the specific sub-forums seem right for your thread, ask here.
Post Reply
Message
Author
ryankm
Posts: 26
Joined: 2018-04-07 16:21

Vulkan Issues

#1 Post by ryankm »

Hi, so I am having issues with this.

Nvidia Driver 396.45
Gtx 1050 ti

So I am trying to run a game with Vulkan and it won't load. It starts in open gl every time.
I tried Vulkan cube but it wouldn't compile.

I have the debian packages from sid installed plus I manually installed it.

Code: Select all

sudo apt install libvulkan1
Reading package lists... Done
Building dependency tree       
Reading state information... Done
libvulkan1 is already the newest version (1.1.73+dfsg-1).
The following packages were automatically installed and are no longer required:
  bdf2psf gir1.2-gnomebluetooth-1.0 gksu libargon2-0 libdns-export1100
  libgfortran4 libgksu2-0 libgnome-bluetooth13 libmozjs-24-0 python-olefile
  python-pam python-pexpect python-pil python-ptyprocess python-pyinotify
Use 'sudo apt autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 7 not upgraded.
The manual installation is the same version.

My /etc/vulkan/icd.d/nvidia_icd.json looks like this:

Code: Select all

{
    "file_format_version" : "1.0.0",
    "ICD": {
        "library_path": "libGLX_nvidia.so.0",
        "api_version" : "1.1.70"
    }
}
I am thinking that may have something to do with it. It displays the wrong version. Something isn't adding up.

Code: Select all

ryan@RKPM-BP-CLR:~$ vulkaninfo
===========
VULKAN INFO
===========

Vulkan Instance Version: 1.1.73



Instance Extensions:
====================
Instance Extensions	count = 15
	VK_EXT_acquire_xlib_display         : extension revision  1
	VK_EXT_debug_report                 : extension revision  9
	VK_EXT_direct_mode_display          : extension revision  1
	VK_EXT_display_surface_counter      : extension revision  1
	VK_KHR_display                      : extension revision 21
	VK_KHR_get_physical_device_properties2: extension revision  1
	VK_KHR_get_surface_capabilities2    : extension revision  1
	VK_KHR_surface                      : extension revision 25
	VK_KHR_xcb_surface                  : extension revision  6
	VK_KHR_xlib_surface                 : extension revision  6
	VK_KHR_device_group_creation        : extension revision  1
	VK_KHR_external_fence_capabilities  : extension revision  1
	VK_KHR_external_memory_capabilities : extension revision  1
	VK_KHR_external_semaphore_capabilities: extension revision  1
	VK_EXT_debug_utils                  : extension revision  1
Layers: count = 6
=======
VK_LAYER_GOOGLE_unique_objects (Google Validation Layer) Vulkan version 1.1.73, layer version 1
	Layer Extensions	count = 0
	Devices 	count = 1
		GPU id       : 0 (GeForce GTX 1050 Ti)
		Layer-Device Extensions	count = 0

VK_LAYER_LUNARG_standard_validation (LunarG Standard Validation) Vulkan version 1.1.73, layer version 1
	Layer Extensions	count = 1
		VK_EXT_debug_report                 : extension revision  6
	Devices 	count = 1
		GPU id       : 0 (GeForce GTX 1050 Ti)
		Layer-Device Extensions	count = 2
			VK_EXT_debug_marker                 : extension revision  4
			VK_EXT_validation_cache             : extension revision  1

VK_LAYER_GOOGLE_threading (Google Validation Layer) Vulkan version 1.1.73, layer version 1
	Layer Extensions	count = 1
		VK_EXT_debug_report                 : extension revision  6
	Devices 	count = 1
		GPU id       : 0 (GeForce GTX 1050 Ti)
		Layer-Device Extensions	count = 0

VK_LAYER_LUNARG_parameter_validation (LunarG Validation Layer) Vulkan version 1.1.73, layer version 1
	Layer Extensions	count = 1
		VK_EXT_debug_report                 : extension revision  6
	Devices 	count = 1
		GPU id       : 0 (GeForce GTX 1050 Ti)
		Layer-Device Extensions	count = 1
			VK_EXT_debug_marker                 : extension revision  4

VK_LAYER_LUNARG_object_tracker (LunarG Validation Layer) Vulkan version 1.1.73, layer version 1
	Layer Extensions	count = 1
		VK_EXT_debug_report                 : extension revision  6
	Devices 	count = 1
		GPU id       : 0 (GeForce GTX 1050 Ti)
		Layer-Device Extensions	count = 1
			VK_EXT_debug_marker                 : extension revision  4

VK_LAYER_LUNARG_core_validation (LunarG Validation Layer) Vulkan version 1.1.73, layer version 1
	Layer Extensions	count = 1
		VK_EXT_debug_report                 : extension revision  6
	Devices 	count = 1
		GPU id       : 0 (GeForce GTX 1050 Ti)
		Layer-Device Extensions	count = 2
			VK_EXT_debug_marker                 : extension revision  4
			VK_EXT_validation_cache             : extension revision  1

Presentable Surfaces:
=====================
GPU id       : 0 (GeForce GTX 1050 Ti)
Surface type : VK_KHR_xcb_surface
Formats:		count = 2
	B8G8R8A8_UNORM
	B8G8R8A8_SRGB
Present Modes:		count = 3
	FIFO_KHR
	FIFO_RELAXED_KHR
	IMMEDIATE_KHR

[b][i]SO ON AND SO FORTH[/i][/b]

Post Reply