https://github.com/saschawillems/vulkancapsviewer
Vulkan hardware capability viewer
https://github.com/saschawillems/vulkancapsviewer
vulkan vulkan-api
Last synced: 4 months ago
JSON representation
Vulkan hardware capability viewer
- Host: GitHub
- URL: https://github.com/saschawillems/vulkancapsviewer
- Owner: SaschaWillems
- License: lgpl-3.0
- Created: 2015-11-17T20:41:36.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2025-11-27T17:59:36.000Z (6 months ago)
- Last Synced: 2025-11-30T09:42:40.545Z (6 months ago)
- Topics: vulkan, vulkan-api
- Language: C++
- Homepage:
- Size: 116 MB
- Stars: 385
- Watchers: 22
- Forks: 84
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Vulkan Hardware Capability Viewer

Client application to display hardware implementation details for GPUs supporting the [Vulkan](https://www.khronos.org/vulkan/) API by Khronos.
The hardware reports can be submitted to a public [online database](https://vulkan.gpuinfo.org/) that allows comparing different devices, browsing available features, extensions, formats, etc.

# Supported platforms
**A Vulkan compatible device is required**
- Windows (x64)
- Linux (x64)
- Android (Including Android TV)
- Mac OS X
- iOS
# Building

The repository includes a project file for the [Qt Creator IDE](https://www.qt.io/ide/) that has been tested to work with Windows, Linux and Android. This is the preferred (and easiest) way of building the application if you want to build it yourself. Using the [Qt Visual Studio Tools](https://marketplace.visualstudio.com/items?itemName=TheQtCompany.QtVisualStudioTools2019), it's also possible to use a current Visual Studio version.
Alternatively, you can simply run `qmake` followed by `make` in the source directory.
## Linux
When building for Linux, specify the desired windowing system to enable its support.
X11 support
```
qmake -config release DEFINES+=X11
```
Wayland support
```
qmake -config release DEFINES+=WAYLAND
```
Note: Do not enable both flags simultaneously.
## Android
The Android apk needs to be built from Qt Creator and requires Android SDK and Android NDK. Due to issues with widget rendering in certain Qt6 versions, Android builds should use Qt 6.9.2 or newer.
# Releases
Current releases for all platforms will be provided on a regular basis at [vulkan.gpuinfo.org/download.php](https://vulkan.gpuinfo.org/download.php).
# Dependencies
- [Vulkan SDK](https://vulkan.lunarg.com/)
- [Qt 6.8.3](https://www.qt.io/developers/) - Older versions may not work due to missing functionality