You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
		
		
		
		
		
			
		
			
				
					
					
						
							253 lines
						
					
					
						
							6.9 KiB
						
					
					
				
			
		
		
	
	
							253 lines
						
					
					
						
							6.9 KiB
						
					
					
				//======================================================================== | 
						|
// Version information dumper | 
						|
// Copyright (c) Camilla Berglund <elmindreda@elmindreda.org> | 
						|
// | 
						|
// This software is provided 'as-is', without any express or implied | 
						|
// warranty. In no event will the authors be held liable for any damages | 
						|
// arising from the use of this software. | 
						|
// | 
						|
// Permission is granted to anyone to use this software for any purpose, | 
						|
// including commercial applications, and to alter it and redistribute it | 
						|
// freely, subject to the following restrictions: | 
						|
// | 
						|
// 1. The origin of this software must not be misrepresented; you must not | 
						|
//    claim that you wrote the original software. If you use this software | 
						|
//    in a product, an acknowledgment in the product documentation would | 
						|
//    be appreciated but is not required. | 
						|
// | 
						|
// 2. Altered source versions must be plainly marked as such, and must not | 
						|
//    be misrepresented as being the original software. | 
						|
// | 
						|
// 3. This notice may not be removed or altered from any source | 
						|
//    distribution. | 
						|
// | 
						|
//======================================================================== | 
						|
// | 
						|
// This test is a pale imitation of glxinfo(1), except not really | 
						|
// | 
						|
// It dumps GLFW and OpenGL version information | 
						|
// | 
						|
//======================================================================== | 
						|
 | 
						|
#include <GL/glfw.h> | 
						|
 | 
						|
#ifndef GL_VERSION_3_2 | 
						|
#define GL_CONTEXT_CORE_PROFILE_BIT       0x00000001 | 
						|
#define GL_CONTEXT_COMPATIBILITY_PROFILE_BIT 0x00000002 | 
						|
#define GL_CONTEXT_PROFILE_MASK           0x9126 | 
						|
#define GL_NUM_EXTENSIONS                 0x821D | 
						|
#define GL_CONTEXT_FLAGS                  0x821E | 
						|
#define GL_CONTEXT_FLAG_FORWARD_COMPATIBLE_BIT 0x0001 | 
						|
#endif | 
						|
 | 
						|
typedef const GLubyte * (APIENTRY *PFNGLGETSTRINGI) (GLenum, GLuint); | 
						|
 | 
						|
#ifndef GL_VERSION_2_0 | 
						|
#define GL_SHADING_LANGUAGE_VERSION 0x8B8C | 
						|
#endif | 
						|
 | 
						|
#ifdef _MSC_VER | 
						|
#define strcasecmp(x, y) _stricmp(x, y) | 
						|
#endif | 
						|
 | 
						|
#include <stdio.h> | 
						|
#include <stdlib.h> | 
						|
#include <string.h> | 
						|
 | 
						|
#include "getopt.h" | 
						|
 | 
						|
static void usage(void) | 
						|
{ | 
						|
    printf("version [-h] [-m MAJOR] [-n MINOR] [-d] [-l] [-f] [-p PROFILE]\n"); | 
						|
    printf("available profiles: core compat\n"); | 
						|
} | 
						|
 | 
						|
static const char* get_profile_name(GLint mask) | 
						|
{ | 
						|
  if (mask & GL_CONTEXT_COMPATIBILITY_PROFILE_BIT) | 
						|
    return "compatibility"; | 
						|
  if (mask & GL_CONTEXT_CORE_PROFILE_BIT) | 
						|
    return "core"; | 
						|
 | 
						|
  return "unknown"; | 
						|
} | 
						|
 | 
						|
static void list_extensions(int major, int minor) | 
						|
{ | 
						|
    int i; | 
						|
    GLint count; | 
						|
    const GLubyte* extensions; | 
						|
 | 
						|
    printf("OpenGL context supported extensions:\n"); | 
						|
 | 
						|
    if (major > 2) | 
						|
    { | 
						|
        PFNGLGETSTRINGI glGetStringi = (PFNGLGETSTRINGI) glfwGetProcAddress("glGetStringi"); | 
						|
        if (!glGetStringi) | 
						|
        { | 
						|
            fprintf(stderr, "Failed to retrieve glGetStringi entry point"); | 
						|
            exit(EXIT_FAILURE); | 
						|
        } | 
						|
 | 
						|
        glGetIntegerv(GL_NUM_EXTENSIONS, &count); | 
						|
 | 
						|
        for (i = 0;  i < count;  i++) | 
						|
            puts((const char*) glGetStringi(GL_EXTENSIONS, i)); | 
						|
    } | 
						|
    else | 
						|
    { | 
						|
        extensions = glGetString(GL_EXTENSIONS); | 
						|
        while (*extensions != '\0') | 
						|
        { | 
						|
            if (*extensions == ' ') | 
						|
                putchar('\n'); | 
						|
            else | 
						|
                putchar(*extensions); | 
						|
 | 
						|
            extensions++; | 
						|
        } | 
						|
    } | 
						|
 | 
						|
    putchar('\n'); | 
						|
} | 
						|
 | 
						|
int main(int argc, char** argv) | 
						|
{ | 
						|
    int ch, profile = 0, major = 1, minor = 1, revision; | 
						|
    GLboolean debug = GL_FALSE, forward = GL_FALSE, list = GL_FALSE; | 
						|
    GLint flags, mask; | 
						|
 | 
						|
    while ((ch = getopt(argc, argv, "dfhlm:n:p:")) != -1) | 
						|
    { | 
						|
        switch (ch) | 
						|
        { | 
						|
            case 'd': | 
						|
                debug = GL_TRUE; | 
						|
                break; | 
						|
            case 'f': | 
						|
                forward = GL_TRUE; | 
						|
                break; | 
						|
            case 'h': | 
						|
                usage(); | 
						|
                exit(0); | 
						|
            case 'l': | 
						|
                list = GL_TRUE; | 
						|
                break; | 
						|
            case 'm': | 
						|
                major = atoi(optarg); | 
						|
                break; | 
						|
            case 'n': | 
						|
                minor = atoi(optarg); | 
						|
                break; | 
						|
            case 'p': | 
						|
                if (strcasecmp(optarg, "core") == 0) | 
						|
                    profile = GLFW_OPENGL_CORE_PROFILE; | 
						|
                else if (strcasecmp(optarg, "compat") == 0) | 
						|
                    profile = GLFW_OPENGL_COMPAT_PROFILE; | 
						|
                else | 
						|
                { | 
						|
                    usage(); | 
						|
                    exit(EXIT_FAILURE); | 
						|
                } | 
						|
                break; | 
						|
            default: | 
						|
                usage(); | 
						|
                exit(EXIT_FAILURE); | 
						|
        } | 
						|
    } | 
						|
 | 
						|
    argc -= optind; | 
						|
    argv += optind; | 
						|
 | 
						|
    if (!glfwInit()) | 
						|
    { | 
						|
        fprintf(stderr, "Failed to initialize GLFW\n"); | 
						|
        exit(EXIT_FAILURE); | 
						|
    } | 
						|
 | 
						|
    if (major != 1 || minor != 1) | 
						|
    { | 
						|
        glfwOpenWindowHint(GLFW_OPENGL_VERSION_MAJOR, major); | 
						|
        glfwOpenWindowHint(GLFW_OPENGL_VERSION_MINOR, minor); | 
						|
    } | 
						|
 | 
						|
    if (debug) | 
						|
        glfwOpenWindowHint(GLFW_OPENGL_DEBUG_CONTEXT, GL_TRUE); | 
						|
 | 
						|
    if (forward) | 
						|
        glfwOpenWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GL_TRUE); | 
						|
 | 
						|
    if (profile != 0) | 
						|
        glfwOpenWindowHint(GLFW_OPENGL_PROFILE, profile); | 
						|
 | 
						|
    // We assume here that we stand a better chance of success by leaving all | 
						|
    // possible details of pixel format selection to GLFW | 
						|
 | 
						|
    if (!glfwOpenWindow(0, 0, 0, 0, 0, 0, 0, 0, GLFW_WINDOW)) | 
						|
    { | 
						|
        glfwTerminate(); | 
						|
 | 
						|
        fprintf(stderr, "Failed to open GLFW window\n"); | 
						|
        exit(EXIT_FAILURE); | 
						|
    } | 
						|
 | 
						|
    // Report GLFW version | 
						|
 | 
						|
    glfwGetVersion(&major, &minor, &revision); | 
						|
 | 
						|
    printf("GLFW header version: %u.%u.%u\n", | 
						|
           GLFW_VERSION_MAJOR, | 
						|
           GLFW_VERSION_MINOR, | 
						|
           GLFW_VERSION_REVISION); | 
						|
 | 
						|
    printf("GLFW library version: %u.%u.%u\n", major, minor, revision); | 
						|
 | 
						|
    if (major != GLFW_VERSION_MAJOR || | 
						|
        minor != GLFW_VERSION_MINOR || | 
						|
        revision != GLFW_VERSION_REVISION) | 
						|
        printf("*** WARNING: GLFW version mismatch! ***\n"); | 
						|
 | 
						|
    // Report OpenGL version | 
						|
 | 
						|
    printf("OpenGL context version string: \"%s\"\n", glGetString(GL_VERSION)); | 
						|
 | 
						|
    glfwGetGLVersion(&major, &minor, &revision); | 
						|
 | 
						|
    printf("OpenGL context version parsed by GLFW: %u.%u.%u\n", major, minor, revision); | 
						|
 | 
						|
    // Report OpenGL context properties | 
						|
 | 
						|
    if (major >= 3) | 
						|
    { | 
						|
        glGetIntegerv(GL_CONTEXT_FLAGS, &flags); | 
						|
        printf("OpenGL context flags:"); | 
						|
 | 
						|
        if (flags & GL_CONTEXT_FLAG_FORWARD_COMPATIBLE_BIT) | 
						|
            puts(" forward-compatible"); | 
						|
        else | 
						|
            puts(" none"); | 
						|
    } | 
						|
 | 
						|
    if (major > 3 || (major == 3 && minor >= 2)) | 
						|
    { | 
						|
        glGetIntegerv(GL_CONTEXT_PROFILE_MASK, &mask); | 
						|
        printf("OpenGL profile mask: 0x%08x (%s)\n", mask, get_profile_name(mask)); | 
						|
    } | 
						|
 | 
						|
    printf("OpenGL context renderer string: \"%s\"\n", glGetString(GL_RENDERER)); | 
						|
    printf("OpenGL context vendor string: \"%s\"\n", glGetString(GL_VENDOR)); | 
						|
 | 
						|
    if (major > 1) | 
						|
    { | 
						|
        printf("OpenGL context shading language version: \"%s\"\n", | 
						|
            glGetString(GL_SHADING_LANGUAGE_VERSION)); | 
						|
    } | 
						|
 | 
						|
    // Report OpenGL extensions | 
						|
    if (list) | 
						|
        list_extensions(major, minor); | 
						|
 | 
						|
    glfwTerminate(); | 
						|
    exit(EXIT_SUCCESS); | 
						|
} | 
						|
 | 
						|
 |