diff options
Diffstat (limited to 'linden/indra/newview/llfloaterabout.cpp')
-rw-r--r-- | linden/indra/newview/llfloaterabout.cpp | 23 |
1 files changed, 20 insertions, 3 deletions
diff --git a/linden/indra/newview/llfloaterabout.cpp b/linden/indra/newview/llfloaterabout.cpp index 8878de5..13795e5 100644 --- a/linden/indra/newview/llfloaterabout.cpp +++ b/linden/indra/newview/llfloaterabout.cpp | |||
@@ -190,7 +190,14 @@ LLFloaterAbout::LLFloaterAbout() | |||
190 | support.append("CPU: "); | 190 | support.append("CPU: "); |
191 | support.append( gSysCPU.getCPUString() ); | 191 | support.append( gSysCPU.getCPUString() ); |
192 | support.append("\n"); | 192 | support.append("\n"); |
193 | 193 | ||
194 | support.append("SSE Support:"); | ||
195 | if(gSysCPU.hasSSE()) | ||
196 | support.append(" SSE2\n"); | ||
197 | else if(gSysCPU.hasSSE()) | ||
198 | support.append(" SSE\n"); | ||
199 | else | ||
200 | support.append(" None\n"); | ||
194 | U32 memory = gSysMemory.getPhysicalMemoryKB() / 1024; | 201 | U32 memory = gSysMemory.getPhysicalMemoryKB() / 1024; |
195 | // Moved hack adjustment to Windows memory size into llsys.cpp | 202 | // Moved hack adjustment to Windows memory size into llsys.cpp |
196 | 203 | ||
@@ -225,9 +232,19 @@ LLFloaterAbout::LLFloaterAbout() | |||
225 | 232 | ||
226 | support.append("OpenGL Version: "); | 233 | support.append("OpenGL Version: "); |
227 | support.append( (const char*) glGetString(GL_VERSION) ); | 234 | support.append( (const char*) glGetString(GL_VERSION) ); |
228 | support.append("\n"); | 235 | support.append("\n\n"); |
236 | |||
237 | support.append("Viewer SSE Version: "); | ||
238 | #if _M_IX86_FP > 0 //Windows | ||
239 | support.append(llformat("SSE%i\n", _M_IX86_FP )); | ||
240 | #elif defined(__SSE2__) //GCC | ||
241 | support.append("SSE2\n"); | ||
242 | #elif defined(__SSE__) //GCC | ||
243 | support.append("SSE\n"); | ||
244 | #else | ||
245 | support.append("None\n"); | ||
246 | #endif | ||
229 | 247 | ||
230 | support.append("\n"); | ||
231 | 248 | ||
232 | support.append("libcurl Version: "); | 249 | support.append("libcurl Version: "); |
233 | support.append( LLCurl::getVersionString() ); | 250 | support.append( LLCurl::getVersionString() ); |