@@ -323,7 +323,7 @@ By default, applications will run in OpenGLES mode. To run them in Vulkan mode,
323323Prerequisites:
324324
325325* Xcode 14 or later
326- * Vulkan SDK 1.3.231 .1 or later to enable Vulkan
326+ * Vulkan SDK 1.3.250 .1 or later to enable Vulkan
327327
328328After you clone the repo, run the following command from the engine's root folder to generate Xcode project:
329329
@@ -347,10 +347,10 @@ or [gfx-portability](https://github.com/gfx-rs/portability). Install [VulkanSDK]
347347and make sure that your system is properly configured as described
348348[ here] ( https://vulkan.lunarg.com/doc/view/latest/mac/getting_started.html#user-content-sdk-system-paths ) .
349349In particular, you may need to define the following environment variables (assuming that Vulkan SDK is installed at
350- ` /Users/MyName/VulkanSDK/1.3.231 .1 ` and you want to use MoltenVK):
350+ ` /Users/MyName/VulkanSDK/1.3.250 .1 ` and you want to use MoltenVK):
351351
352352```
353- export VULKAN_SDK=/Users/MyName/VulkanSDK/1.3.231 .1/macOS
353+ export VULKAN_SDK=/Users/MyName/VulkanSDK/1.3.250 .1/macOS
354354export PATH=$VULKAN_SDK/bin:$PATH
355355export DYLD_LIBRARY_PATH=$VULKAN_SDK/lib:$DYLD_LIBRARY_PATH
356356export VK_ICD_FILENAMES=$VULKAN_SDK/share/vulkan/icd.d/MoltenVK_icd.json
@@ -374,15 +374,15 @@ System Integrity Protection is disabled (which generally is not recommended). In
374374Vulkan library, it must be in rpath. If ` VULKAN_SDK ` environment variable is set and points to correct location, Diligent
375375Engine will configure the rpath for all applications automatically.
376376
377- Last tested Vulkan SDK version: 1.3.231 .1.
377+ Last tested Vulkan SDK version: 1.3.250 .1.
378378
379379<a name =" build_and_run_ios " ></a >
380380## iOS
381381
382382Prerequisites:
383383
384384* Xcode 14 or later
385- * Vulkan SDK 1.3.231 .1 or later to enable Vulkan
385+ * Vulkan SDK 1.3.250 .1 or later to enable Vulkan
386386
387387Run the command below from the engine's root folder to generate Xcode project configured for
388388[ iOS build] ( https://cmake.org/cmake/help/latest/manual/cmake-toolchains.7.html#cross-compiling-for-ios-tvos-or-watchos ) :
@@ -413,10 +413,10 @@ To enable Vulkan on iOS, download and install the [VulkanSDK](https://vulkan.lun
413413on iOS, and Diligent Engine links directly with MoltenVK XCFramework (see
414414[ MoltenVk install guide] ( https://github.com/KhronosGroup/MoltenVK/blob/master/Docs/MoltenVK_Runtime_UserGuide.md#install-moltenvk-as-a-universal-xcframework ) )
415415that implements Vulkan on Metal. To enable Vulkan in Diligent Engine on iOS, specify the path to Vulkan SDK
416- when running CMake, for example (assuming that Vulkan SDK is installed at ` /Users/MyName/VulkanSDK/1.3.231 .1 ` ):
416+ when running CMake, for example (assuming that Vulkan SDK is installed at ` /Users/MyName/VulkanSDK/1.3.250 .1 ` ):
417417
418418``` cmake
419- cmake -DCMAKE_SYSTEM_NAME=iOS -DVULKAN_SDK=/Users/MyName/VulkanSDK/1.3.231 .1 -S . -B ./build/iOS -G "Xcode"
419+ cmake -DCMAKE_SYSTEM_NAME=iOS -DVULKAN_SDK=/Users/MyName/VulkanSDK/1.3.250 .1 -S . -B ./build/iOS -G "Xcode"
420420```
421421
422422By default, the engine links with MoltenVK XCFramework located in Vulkan SDK. If this is not desired or an application wants
@@ -425,7 +425,7 @@ to use a specific library, it can provide the full path to the library via `MOLT
425425Refer to [ MoltenVK user guide] ( https://github.com/KhronosGroup/MoltenVK/blob/master/Docs/MoltenVK_Runtime_UserGuide.md#install )
426426for more information about MoltenVK installation and usage.
427427
428- Last tested Vulkan SDK version: 1.3.231 .1.
428+ Last tested Vulkan SDK version: 1.3.250 .1.
429429
430430<a name =" build_and_run_emscripten " ></a >
431431## Emscripten
0 commit comments