diff options
author | Dave Houlton <euclid@lindenlab.com> | 2021-10-05 15:59:21 -0600 |
---|---|---|
committer | Dave Houlton <euclid@lindenlab.com> | 2021-10-06 10:59:00 -0600 |
commit | 3e99853b2984a40093ff6b504abfcabe065b251b (patch) | |
tree | 5c581b1bba52d39df5dba52dd1d38164c78aff49 /indra/newview/llappviewer.cpp | |
parent | 4c07eaa560c24303126057b7cf43441d87d520e5 (diff) |
SL-16138 remove checks for now-mandatory capabilities
Diffstat (limited to 'indra/newview/llappviewer.cpp')
-rw-r--r-- | indra/newview/llappviewer.cpp | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index 3d49a9eb78..98409106a1 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -1010,19 +1010,6 @@ bool LLAppViewer::init() return 0; } - // If we don't have the right shader requirements. - if (!gGLManager.mHasShaderObjects - || !gGLManager.mHasVertexShader - || !gGLManager.mHasFragmentShader) - { - LLUIString details = LLNotifications::instance().getGlobalString("UnsupportedShaderRequirements"); - OSMessageBox( - details.getString(), - LLStringUtil::null, - OSMB_OK); - return 0; - } - // Without SSE2 support we will crash almost immediately, warn here. if (!gSysCPU.hasSSE2()) { |