Compare commits

...

1 Commits

Author SHA1 Message Date
wheaney eebe7f1895 Update driver and shader to use more conventional axes and quat rotation 2023-10-18 15:02:24 -07:00
4 changed files with 5 additions and 5 deletions

@ -1 +1 @@
Subproject commit 646f123397c7852a1db9d1a9754f79aebf9ea9af Subproject commit 19ba816e99d88982793b653717efa70d786cd865

View File

@ -17,7 +17,7 @@ fi
USER=${SUDO_USER:-$USER} USER=${SUDO_USER:-$USER}
USER_HOME=$(getent passwd $USER | cut -d: -f6) USER_HOME=$(getent passwd $USER | cut -d: -f6)
if [ "$for_install" -eq 0 ]; then if [ "$for_install" -eq 0 ]; then
UA_EVENT_NAME="uninstall" UA_EVENT_NAME="breezy-uninstall"
UA_CLIENT_ID="BreezyVulkan" UA_CLIENT_ID="BreezyVulkan"
#INJECT_UA_CALL #INJECT_UA_CALL
fi fi

View File

@ -5,14 +5,14 @@
USER=${SUDO_USER:-$USER} USER=${SUDO_USER:-$USER}
USER_HOME=$(getent passwd $USER | cut -d: -f6) USER_HOME=$(getent passwd $USER | cut -d: -f6)
UA_EVENT_NAME="install" UA_EVENT_NAME="breezy-install"
if [ -e "$USER_HOME/bin/breezy_vulkan_uninstall" ]; then if [ -e "$USER_HOME/bin/breezy_vulkan_uninstall" ]; then
echo "Cleaning up the previous installation" echo "Cleaning up the previous installation"
# ` || true` will ensure that this can't cause a failure, even with `set -e` # ` || true` will ensure that this can't cause a failure, even with `set -e`
$USER_HOME/bin/breezy_vulkan_uninstall --for-install || true $USER_HOME/bin/breezy_vulkan_uninstall --for-install || true
UA_EVENT_NAME="update" UA_EVENT_NAME="breezy-update"
fi fi
UA_CLIENT_ID="BreezyVulkan" UA_CLIENT_ID="BreezyVulkan"

@ -1 +1 @@
Subproject commit e314f1e8f195526f31051052b0913f7908e94038 Subproject commit 9b19dd7552fd242aed067c66f709a30866cc00a0