@@ -331,7 +331,7 @@ By default, applications will run in Vulkan mode. To run them in Vulkan mode, ad
331331Prerequisites:
332332
333333* Xcode 16 or later
334- * Vulkan SDK 1.4.321 .1 or later to enable Vulkan
334+ * Vulkan SDK 1.4.328 .1 or later to enable Vulkan
335335
336336After you clone the repo, run the following command from the engine's root folder to generate Xcode project:
337337
@@ -355,10 +355,10 @@ or [gfx-portability](https://github.com/gfx-rs/portability). Install [VulkanSDK]
355355and make sure that your system is properly configured as described
356356[ here] ( https://vulkan.lunarg.com/doc/view/latest/mac/getting_started.html#user-content-sdk-system-paths ) .
357357In particular, you may need to define the following environment variables (assuming that Vulkan SDK is installed at
358- ` /Users/MyName/VulkanSDK/1.4.321 .1 ` and you want to use MoltenVK):
358+ ` /Users/MyName/VulkanSDK/1.4.328 .1 ` and you want to use MoltenVK):
359359
360360```
361- export VULKAN_SDK=/Users/MyName/VulkanSDK/1.4.321 .1/macOS
361+ export VULKAN_SDK=/Users/MyName/VulkanSDK/1.4.328 .1/macOS
362362export PATH=$VULKAN_SDK/bin:$PATH
363363export DYLD_LIBRARY_PATH=$VULKAN_SDK/lib:$DYLD_LIBRARY_PATH
364364export VK_ADD_LAYER_PATH=$VULKAN_SDK/share/vulkan/explicit_layer.d
@@ -383,7 +383,7 @@ System Integrity Protection is disabled (which generally is not recommended). In
383383Vulkan library, it must be in rpath. If ` VULKAN_SDK ` environment variable is set and points to correct location, Diligent
384384Engine will configure the rpath for all applications automatically.
385385
386- Latest tested Vulkan SDK version: 1.4.321 .1.
386+ Latest tested Vulkan SDK version: 1.4.328 .1.
387387
388388:warning : There are known issues with later versions of the SDK, so it is recommended to use the latest tested version.
389389
@@ -393,7 +393,7 @@ Latest tested Vulkan SDK version: 1.4.321.1.
393393Prerequisites:
394394
395395* Xcode 16 or later
396- * Vulkan SDK 1.4.321 .1 or later to enable Vulkan
396+ * Vulkan SDK 1.4.328 .1 or later to enable Vulkan
397397
398398Run the command below from the engine's root folder to generate Xcode project configured for
399399[ iOS build] ( https://cmake.org/cmake/help/latest/manual/cmake-toolchains.7.html#cross-compiling-for-ios-tvos-or-watchos ) :
@@ -424,10 +424,10 @@ To enable Vulkan on iOS, download and install the [VulkanSDK](https://vulkan.lun
424424on iOS, and Diligent Engine links directly with MoltenVK XCFramework (see
425425[ MoltenVk install guide] ( https://github.com/KhronosGroup/MoltenVK/blob/master/Docs/MoltenVK_Runtime_UserGuide.md#install-moltenvk-as-a-universal-xcframework ) )
426426that implements Vulkan on Metal. To enable Vulkan in Diligent Engine on iOS, specify the path to Vulkan SDK
427- when running CMake, for example (assuming that Vulkan SDK is installed at ` /Users/MyName/VulkanSDK/1.4.321 .1 ` ):
427+ when running CMake, for example (assuming that Vulkan SDK is installed at ` /Users/MyName/VulkanSDK/1.4.328 .1 ` ):
428428
429429``` cmake
430- cmake -DCMAKE_SYSTEM_NAME=iOS -DVULKAN_SDK=/Users/MyName/VulkanSDK/1.4.321 .1 -S . -B ./build/iOS -G "Xcode"
430+ cmake -DCMAKE_SYSTEM_NAME=iOS -DVULKAN_SDK=/Users/MyName/VulkanSDK/1.4.328 .1 -S . -B ./build/iOS -G "Xcode"
431431```
432432
433433By default, the engine links with MoltenVK XCFramework located in Vulkan SDK. If this is not desired or an application wants
@@ -436,7 +436,7 @@ to use a specific library, it can provide the full path to the library via `MOLT
436436Refer to [ MoltenVK user guide] ( https://github.com/KhronosGroup/MoltenVK/blob/master/Docs/MoltenVK_Runtime_UserGuide.md#install )
437437for more information about MoltenVK installation and usage.
438438
439- Latest tested Vulkan SDK version: 1.4.321 .1.
439+ Latest tested Vulkan SDK version: 1.4.328 .1.
440440
441441:warning : There are known issues with later versions of the SDK, so it is recommended to use the latest tested version.
442442
0 commit comments