Add GPU Model to System Information

This commit is contained in:
raven02 2013-08-21 01:05:25 +08:00
parent e0a05e8cc2
commit 0db697fd4a

View File

@ -319,7 +319,8 @@ void SystemInfoScreen::CreateViews() {
scroll->Add(new ItemHeader("System Information"));
scroll->Add(new InfoItem("System Name :", System_GetName()));
scroll->Add(new InfoItem("GPU Vendor :", (char *)glGetString(GL_VENDOR)));
scroll->Add(new InfoItem("GPU Model :", (char *)glGetString(GL_RENDERER)));
scroll->Add(new ItemHeader("OpenGL ES 2.0 Extensions"));
std::vector<std::string> exts;
SplitString(g_all_gl_extensions, ' ', exts);