Skip to content

Commit d9486b1

Browse files
committed
No Vulkan SDK
1 parent 639dc67 commit d9486b1

File tree

3 files changed

+10
-11
lines changed

3 files changed

+10
-11
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,6 @@ jobs:
2828
steps:
2929
- uses: actions/checkout@v4
3030

31-
- name: Install Vulkan SDK
32-
uses: stripe2933/setup-vulkan-sdk@30a1c4f5464781f4559063b11e19b080a53b4411
33-
with:
34-
vulkan-query-version: 1.4.328.1
35-
vulkan-components: Glslang, SPIRV-Tools
36-
vulkan-use-cache: true
37-
3831
- name: Install MinGW Clang (Windows + MinGW Clang)
3932
if: ${{ runner.os == 'Windows' && matrix.compiler == 'mingw-clang' }}
4033
run: C:\msys64\usr\bin\bash -lc 'pacman --noconfirm -S mingw-w64-clang-x86_64-clang mingw-w64-clang-x86_64-libc++ mingw-w64-clang-x86_64-libwinpthread-git'
@@ -45,7 +38,9 @@ jobs:
4538

4639
- name: Install build dependencies (Linux)
4740
if: ${{ runner.os == 'Linux' }}
48-
run: sudo apt-get install clang-19 clang-tools-19 libc++-19-dev libc++abi-19-dev mono-devel xorg-dev autoconf autoconf-archive automake libtool libltdl-dev
41+
run: |
42+
sudo apt-get update
43+
sudo apt-get install clang-19 clang-tools-19 libc++-19-dev libc++abi-19-dev mono-devel xorg-dev autoconf autoconf-archive automake libtool libltdl-dev
4944
5045
- name: Enable Developer Command Prompt (Windows + MSVC)
5146
if: ${{ runner.os == 'Windows' && matrix.compiler == 'msvc' }}

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,6 @@ I initially developed this application for leveraging Vulkan's performance and u
7474

7575
### Vulkan Requirements
7676

77-
> [!WARNING]
78-
> Currently [the latest Vulkan SDK (1.4.335) is broken when using Vulkan-Hpp named module](https://github.com/KhronosGroup/Vulkan-Hpp/pull/2377#issuecomment-3635666589). Please use Vulkan SDK 1.4.328 until the issue is solved.
79-
8077
The extensions and feature used in this application are quite common in the modern desktop GPU drivers, so I hope you don't have any problem with this.
8178

8279
> [!TIP]

vcpkg.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@
88
"fmt",
99
"glfw3",
1010
"glm",
11+
{
12+
"name": "glslang",
13+
"features": [
14+
"opt",
15+
"tools"
16+
]
17+
},
1118
{
1219
"name": "imgui",
1320
"features": [

0 commit comments

Comments
 (0)