diff options
author | Don Bright <hugh.m.bright@gmail.com> | 2011-11-16 11:58:07 (GMT) |
---|---|---|
committer | Don Bright <hugh.m.bright@gmail.com> | 2011-11-16 11:58:07 (GMT) |
commit | b6b3e52543696c5d6efd85b4d86fc13abb327518 (patch) | |
tree | 9a3a39191d5495551676f40785dd622d02cab9ae /tests/OffscreenContextWGL.cc | |
parent | bf564e80595030578e04c235ccdab94b85eca010 (diff) |
add more info to --info dumps. improve wiki output
Diffstat (limited to 'tests/OffscreenContextWGL.cc')
-rw-r--r-- | tests/OffscreenContextWGL.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/OffscreenContextWGL.cc b/tests/OffscreenContextWGL.cc index 3756a82..4deaf2a 100644 --- a/tests/OffscreenContextWGL.cc +++ b/tests/OffscreenContextWGL.cc @@ -48,7 +48,7 @@ void offscreen_context_init(OffscreenContext &ctx, int width, int height) ctx.fbo = NULL; } -string get_windows_info() +string get_os_info() { OSVERSIONINFO osvi; @@ -81,8 +81,8 @@ string get_windows_info() string offscreen_context_getinfo(OffscreenContext *ctx) { stringstream out; - out << glew_dump(false); - out << get_windows_info(); + out << "GL context creator: WGL\n" + << get_windows_info(); return out.str(); } |