diff options
| author | Dave Parks <davep@lindenlab.com> | 2024-12-10 09:07:44 -0800 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-10 11:07:44 -0600 | 
| commit | b76ea8f1d71db6e8626be18cab101535731d7d74 (patch) | |
| tree | 42949b6cc71f37284d5ea3abd0a1673c253ef5cc | |
| parent | dff8a2aaabbf47dd9b2221dacdf4a905287a9b11 (diff) | |
#3251 Remove obsolete intel driver notification (#3252)
| -rw-r--r-- | indra/newview/llappviewer.cpp | 47 | ||||
| -rw-r--r-- | indra/newview/skins/default/xui/en/notifications.xml | 6 | ||||
| -rw-r--r-- | indra/newview/skins/default/xui/pl/notifications.xml | 5 | 
3 files changed, 0 insertions, 58 deletions
| diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index 08b7b439e8..f79eb5ddce 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -1038,53 +1038,6 @@ bool LLAppViewer::init()          }      } -#if LL_WINDOWS && ADDRESS_SIZE == 64 -    if (gGLManager.mIsIntel) -    { -        // Check intel driver's version -        // Ex: "3.1.0 - Build 8.15.10.2559"; -        std::string version = ll_safe_string((const char *)glGetString(GL_VERSION)); - -        const boost::regex is_intel_string("[0-9].[0-9].[0-9] - Build [0-9]{1,2}.[0-9]{2}.[0-9]{2}.[0-9]{4}"); - -        if (boost::regex_search(version, is_intel_string)) -        { -            // Valid string, extract driver version -            std::size_t found = version.find("Build "); -            std::string driver = version.substr(found + 6); -            S32 v1, v2, v3, v4; -            S32 count = sscanf(driver.c_str(), "%d.%d.%d.%d", &v1, &v2, &v3, &v4); -            if (count > 0 && v1 <= 10) -            { -                LL_INFOS("AppInit") << "Detected obsolete intel driver: " << driver << LL_ENDL; - -                if (!gViewerWindow->getInitAlert().empty() // graphic initialization crashed on last run -                    || LLVersionInfo::getInstance()->getChannelAndVersion() != gLastRunVersion // viewer was updated -                    || mNumSessions % 20 == 0 //periodically remind user to update driver -                    ) -                { -                    LLUIString details = LLNotifications::instance().getGlobalString("UnsupportedIntelDriver"); -                    std::string gpu_name = ll_safe_string((const char *)glGetString(GL_RENDERER)); -                    LL_INFOS("AppInit") << "Notifying user about obsolete intel driver for " << gpu_name << LL_ENDL; -                    details.setArg("[VERSION]", driver); -                    details.setArg("[GPUNAME]", gpu_name); -                    S32 button = OSMessageBox(details.getString(), -                        LLStringUtil::null, -                        OSMB_YESNO); -                    if (OSBTN_YES == button && gViewerWindow) -                    { -                        std::string url = LLWeb::escapeURL(LLTrans::getString("IntelDriverPage")); -                        if (gViewerWindow->getWindow()) -                        { -                            gViewerWindow->getWindow()->spawnWebBrowser(url, false); -                        } -                    } -                } -            } -        } -    } -#endif -      // Obsolete? mExpectedGLVersion is always zero  #if LL_WINDOWS      if (gGLManager.mGLVersion < LLFeatureManager::getInstance()->getExpectedGLVersion()) diff --git a/indra/newview/skins/default/xui/en/notifications.xml b/indra/newview/skins/default/xui/en/notifications.xml index ee93c8b000..b63ab2f8d2 100644 --- a/indra/newview/skins/default/xui/en/notifications.xml +++ b/indra/newview/skins/default/xui/en/notifications.xml @@ -10159,12 +10159,6 @@ Do you wish to continue?       yestext="OK"/>    </notification> -  <global name="UnsupportedIntelDriver"> -The installed Intel graphics driver for [GPUNAME], version [VERSION], is significantly out of date and is known to cause excessive rates of program crashes. You are strongly advised to update to a current Intel driver - -Do you want to check the Intel driver website? -  </global> -    <global name="UnsupportedCPUAmount">  796    </global> diff --git a/indra/newview/skins/default/xui/pl/notifications.xml b/indra/newview/skins/default/xui/pl/notifications.xml index e668c6cc20..ad9d2ecf1d 100644 --- a/indra/newview/skins/default/xui/pl/notifications.xml +++ b/indra/newview/skins/default/xui/pl/notifications.xml @@ -3577,11 +3577,6 @@ Czy chcesz kontynuować?  		Wybrany obiekt ma wpływ na Navmesh. Dodanie elastyczności spowoduje usunięcie go z Navmesha.  		<usetemplate ignoretext="Wybrany obiekt ma wpływ na Navmesh. Dodanie elastyczności spowoduje usunięcie go z Navmesha." name="okcancelignore" notext="Anuluj" />  	</notification> -	<global name="UnsupportedIntelDriver"> -		Zainstalowany sterownik graficzny Intela dla [GPUNAME], wersja [VERSION], jest przestarzały i jest znany z powodowania awarii. Zdecydowanie zaleca się aktualizację do aktualnego sterownika Intel. - -Czy chcesz sprawdzić witrynę sterowników firmy Intel? -	</global>  	<global name="UnsupportedGPU">  		- Twoja karta graficzna nie spełnia minimalnych wymagań.  	</global> | 
