diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2025-05-25 12:18:24 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-25 12:18:24 +1000 |
commit | b9246dde76fc4011fe51193dc71683fb13c175a3 (patch) | |
tree | 0c7fa46df8dd57842d5db9bf8d7bab5e680c08d1 | |
parent | c8d8b7ed61e892a30eb4886686fa7613e56da81b (diff) | |
parent | 2d4bc2ef30a25826fdd933020aa3b862ff5d9205 (diff) |
Merge pull request #248 from grbr404/main
revert Zink addition
-rwxr-xr-x | scripts/ci/linux/run-client.sh | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/scripts/ci/linux/run-client.sh b/scripts/ci/linux/run-client.sh index f6f72b5..570e619 100755 --- a/scripts/ci/linux/run-client.sh +++ b/scripts/ci/linux/run-client.sh @@ -1,18 +1,5 @@ #!/bin/sh -# Check if environment variables are already set -if [ -n "${__GLX_VENDOR_LIBRARY_NAME}" ] || [ -n "${MESA_LOADER_DRIVER_OVERRIDE}" ] || [ -n "${GALLIUM_DRIVER}" ]; then : -else - # Check for Vulkan support - if command -v vulkaninfo &> /dev/null; then - # Check for Zink support - if __GLX_VENDOR_LIBRARY_NAME=mesa MESA_LOADER_DRIVER_OVERRIDE=zink GALLIUM_DRIVER=zink LIBGL_KOPPER_DRI2=1 glxinfo | grep -q 'renderer string: zink'; then - # Set environment variables for Zink - export __GLX_VENDOR_LIBRARY_NAME=mesa MESA_LOADER_DRIVER_OVERRIDE=zink GALLIUM_DRIVER=zink LIBGL_KOPPER_DRI2=1 - fi - fi -fi - cd "`dirname \"$0\"`" LD_LIBRARY_PATH="$LD_LIBRARY_PATH:./" ./starbound "$@" & exit |