From 2cb6436712bf5d40e01f8fbed20818795c77018d Mon Sep 17 00:00:00 2001 From: Boris Yumankulov Date: Thu, 24 Apr 2025 11:00:49 +0500 Subject: [PATCH] Added Blackwell (RTX50) pci to check_nvidia_rtx --- data_from_portwine/scripts/functions_helper | 3 +++ 1 file changed, 3 insertions(+) diff --git a/data_from_portwine/scripts/functions_helper b/data_from_portwine/scripts/functions_helper index d216ab84..c078d148 100755 --- a/data_from_portwine/scripts/functions_helper +++ b/data_from_portwine/scripts/functions_helper @@ -2301,6 +2301,8 @@ check_nvidia_rtx () { [[ "$LSPCI_VGA" == *GA[0-9]* ]] && return 0 # Ada_Lovelace [[ "$LSPCI_VGA" == *AD[0-9]* ]] || [[ "$LSPCI_VGA" == *2[6-8][0-9]* ]] && return 0 + # Blackwell and Blackwell 2.0 + [[ "$LSPCI_VGA" == *GB[0-9]* ]] && return 0 fi return 1 } @@ -2753,6 +2755,7 @@ pw_skip_get_info () { export LSPCI_VGA fi + # TODO: Add NVIDIA Smooth Motion if check_nvidia_rtx ; then check_variables PW_USE_NVAPI_AND_DLSS "1" check_variables PW_USE_FAKE_DLSS "0"