diff options
author | Marius Kintel <marius@kintel.net> | 2011-11-07 01:48:57 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-11-07 01:48:57 (GMT) |
commit | ee5b6b882b3302687a10262a4ce049034cb9172c (patch) | |
tree | 77f6ff9b81fe59106c166d5d69e0daa562ac712d /tests/OffscreenContext.mm | |
parent | 5c502e51d4a1ffac56e898e619247d52269d14bd (diff) | |
parent | a6e4b95f1a8f1597625aa34010e84dc90dc644da (diff) |
Merge branch 'master' into tests-buildsystem
Diffstat (limited to 'tests/OffscreenContext.mm')
-rw-r--r-- | tests/OffscreenContext.mm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/OffscreenContext.mm b/tests/OffscreenContext.mm index eb2f777..2bbaffa 100644 --- a/tests/OffscreenContext.mm +++ b/tests/OffscreenContext.mm @@ -48,20 +48,20 @@ OffscreenContext *create_offscreen_context(int w, int h) glewInit(); #ifdef DEBUG - cout << "GLEW version " << glewGetString(GLEW_VERSION) << "\n"; - cout << (const char *)glGetString(GL_RENDERER) << "(" << (const char *)glGetString(GL_VENDOR) << ")\n" + std::cout << "GLEW version " << glewGetString(GLEW_VERSION) << "\n"; + std::cout << (const char *)glGetString(GL_RENDERER) << "(" << (const char *)glGetString(GL_VENDOR) << ")\n" << "OpenGL version " << (const char *)glGetString(GL_VERSION) << "\n"; - cout << "Extensions: " << (const char *)glGetString(GL_EXTENSIONS) << "\n"; + std::cout << "Extensions: " << (const char *)glGetString(GL_EXTENSIONS) << "\n"; if (GLEW_ARB_framebuffer_object) { - cout << "ARB_FBO supported\n"; + std::cout << "ARB_FBO supported\n"; } if (GLEW_EXT_framebuffer_object) { - cout << "EXT_FBO supported\n"; + std::cout << "EXT_FBO supported\n"; } if (GLEW_EXT_packed_depth_stencil) { - cout << "EXT_packed_depth_stencil\n"; + std::cout << "EXT_packed_depth_stencil\n"; } #endif |