diff --git a/docs/drivers/venus.rst b/docs/drivers/venus.rst index 1c36ea35ef721..95c86fdf72258 100644 --- a/docs/drivers/venus.rst +++ b/docs/drivers/venus.rst @@ -65,14 +65,14 @@ In another shell, .. code-block:: sh - $ export VK_ICD_FILENAMES= + $ export VK_DRIVER_FILES= $ export VN_DEBUG=vtest $ vulkaninfo $ vkcube If the host driver of the system is not new enough, it is a good idea to build the host driver as well when building the Venus driver. Just remember to set -:envvar:`VK_ICD_FILENAMES` when starting the vtest server so that the vtest +:envvar:`VK_DRIVER_FILES` when starting the vtest server so that the vtest server finds the locally built host driver. Virtio-GPU @@ -99,7 +99,7 @@ This is how one might want to start crosvm .. code-block:: sh - $ sudo LD_LIBRARY_PATH=<...> VK_ICD_FILENAMES=<...> ./target/debug/crosvm run \ + $ sudo LD_LIBRARY_PATH=<...> VK_DRIVER_FILES=<...> ./target/debug/crosvm run \ --gpu vulkan=true \ --gpu-render-server path=/out/server/virgl_render_server \ --display-window-keyboard \ diff --git a/docs/install.rst b/docs/install.rst index 03d903a12a3cb..1f5bf7f596920 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -161,7 +161,7 @@ Vulkan .. code-block:: sh - VK_ICD_FILENAMES="$MESA_INSTALLDIR/share/vulkan/icd/my_icd.json" vulkaninfo + VK_DRIVER_FILES="$MESA_INSTALLDIR/share/vulkan/icd/my_icd.json" vulkaninfo where ``my_icd.json`` is replaced with the actual ICD json file name. This will depend on your driver. For instance, the 64-bit Lavapipe driver ICD file diff --git a/docs/releasing.rst b/docs/releasing.rst index e5c845d1abf6e..668a59e04c98b 100644 --- a/docs/releasing.rst +++ b/docs/releasing.rst @@ -286,9 +286,9 @@ Here is one solution: unset LIBGL_DEBUG unset LIBGL_ALWAYS_SOFTWARE unset GALLIUM_DRIVER - export VK_ICD_FILENAMES=`pwd`/test/usr/local/share/vulkan/icd.d/intel_icd.x86_64.json + export VK_DRIVER_FILES=`pwd`/test/usr/local/share/vulkan/icd.d/intel_icd.x86_64.json steam steam://rungameid/570 -vconsole -vulkan - unset VK_ICD_FILENAMES + unset VK_DRIVER_FILES Create release notes for the new release ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~