VK-Z 0.5.0 released

Started by JeGX, February 28, 2017, 02:13:07 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

JeGX

A new version of VK-Z is available. VK-Z is a simple command line utility, for Windows and Linux that displays Vulkan capabilities (hardware limits) and extensions of all capable Vulkan devices on the system.

Complete story and downloads: http://www.geeks3d.com/20170228/vk-z-0-5-0-vulkan-capabilities-and-extensions-viewer-released/



Stefan

I enhanced the batch file for the Windows version:

Quote@ECHO OFF
ECHO 1 - Show in CLI
ECHO 2 - Save as text

CHOICE /C:12

IF errorlevel 2 goto text
IF errorlevel 1 goto hurz

:hurz
vkz.exe -a
pause
EXIT

:text
vkz.exe -a >vkz_log.txt
ECHO Saved as vkz_log.txt
pause
EXIT