From 0db697fd4a9b25c1efe4e28e7cf2dc819825eb0c Mon Sep 17 00:00:00 2001 From: raven02 Date: Wed, 21 Aug 2013 01:05:25 +0800 Subject: [PATCH] Add GPU Model to System Information --- UI/MiscScreens.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/UI/MiscScreens.cpp b/UI/MiscScreens.cpp index 6a37682e4f..e168d2966f 100644 --- a/UI/MiscScreens.cpp +++ b/UI/MiscScreens.cpp @@ -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 exts; SplitString(g_all_gl_extensions, ' ', exts);