2010-09-07 15:34:51 +00:00
|
|
|
//========================================================================
|
|
|
|
// Default window/context test
|
|
|
|
// 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 creates a windowed mode window with all parameters set to
|
|
|
|
// default values and then reports the actual parameters of the created
|
|
|
|
// window and context
|
|
|
|
//
|
|
|
|
//========================================================================
|
|
|
|
|
2010-09-10 11:16:03 +00:00
|
|
|
#include <GL/glfw3.h>
|
2012-08-12 13:31:15 +00:00
|
|
|
#include <GL/glext.h>
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2012-08-10 11:03:11 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
int param;
|
2012-08-12 11:24:21 +00:00
|
|
|
const char* ext;
|
|
|
|
const char* name;
|
2012-08-10 11:03:11 +00:00
|
|
|
} ParamGL;
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
int param;
|
2012-08-12 11:24:21 +00:00
|
|
|
const char* name;
|
2012-08-10 11:03:11 +00:00
|
|
|
} ParamGLFW;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2012-08-10 11:03:11 +00:00
|
|
|
static ParamGL gl_params[] =
|
|
|
|
{
|
|
|
|
{ GL_RED_BITS, NULL, "red bits" },
|
|
|
|
{ GL_GREEN_BITS, NULL, "green bits" },
|
|
|
|
{ GL_BLUE_BITS, NULL, "blue bits" },
|
|
|
|
{ GL_ALPHA_BITS, NULL, "alpha bits" },
|
|
|
|
{ GL_DEPTH_BITS, NULL, "depth bits" },
|
|
|
|
{ GL_STENCIL_BITS, NULL, "stencil bits" },
|
|
|
|
{ GL_STEREO, NULL, "stereo" },
|
|
|
|
{ GL_SAMPLES_ARB, "GL_ARB_multisample", "FSAA samples" },
|
|
|
|
{ 0, NULL, NULL }
|
|
|
|
};
|
|
|
|
|
|
|
|
static ParamGLFW glfw_params[] =
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
{ GLFW_REFRESH_RATE, "refresh rate" },
|
2012-12-13 01:22:39 +00:00
|
|
|
{ GLFW_CONTEXT_VERSION_MAJOR, "Context version major" },
|
|
|
|
{ GLFW_CONTEXT_VERSION_MINOR, "Context version minor" },
|
2010-09-07 15:34:51 +00:00
|
|
|
{ GLFW_OPENGL_FORWARD_COMPAT, "OpenGL forward compatible" },
|
|
|
|
{ GLFW_OPENGL_DEBUG_CONTEXT, "OpenGL debug context" },
|
|
|
|
{ GLFW_OPENGL_PROFILE, "OpenGL profile" },
|
2012-08-10 11:03:11 +00:00
|
|
|
{ 0, NULL }
|
2010-09-07 15:34:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
int main(void)
|
|
|
|
{
|
|
|
|
int i, width, height;
|
2010-09-09 17:18:18 +00:00
|
|
|
GLFWwindow window;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
if (!glfwInit())
|
|
|
|
{
|
2010-09-11 12:32:05 +00:00
|
|
|
fprintf(stderr, "Failed to initialize GLFW: %s\n", glfwErrorString(glfwGetError()));
|
2011-09-08 20:47:37 +00:00
|
|
|
exit(EXIT_FAILURE);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2012-09-11 20:23:35 +00:00
|
|
|
glfwWindowHint(GLFW_VISIBLE, GL_FALSE);
|
|
|
|
|
2012-11-22 16:04:54 +00:00
|
|
|
window = glfwCreateWindow(640, 480, GLFW_WINDOWED, "Defaults", NULL);
|
2010-09-09 17:18:18 +00:00
|
|
|
if (!window)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
glfwTerminate();
|
|
|
|
|
2010-09-11 12:32:05 +00:00
|
|
|
fprintf(stderr, "Failed to open GLFW window: %s\n", glfwErrorString(glfwGetError()));
|
2011-09-08 20:47:37 +00:00
|
|
|
exit(EXIT_FAILURE);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2012-08-10 13:29:45 +00:00
|
|
|
glfwMakeContextCurrent(window);
|
2010-09-09 17:18:18 +00:00
|
|
|
glfwGetWindowSize(window, &width, &height);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
printf("window size: %ix%i\n", width, height);
|
|
|
|
|
2012-08-10 11:03:11 +00:00
|
|
|
for (i = 0; glfw_params[i].name; i++)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2010-09-09 17:18:18 +00:00
|
|
|
printf("%s: %i\n",
|
2012-08-10 11:03:11 +00:00
|
|
|
glfw_params[i].name,
|
|
|
|
glfwGetWindowParam(window, glfw_params[i].param));
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; gl_params[i].name; i++)
|
|
|
|
{
|
|
|
|
GLint value = 0;
|
|
|
|
|
|
|
|
if (gl_params[i].ext)
|
|
|
|
{
|
|
|
|
if (!glfwExtensionSupported(gl_params[i].ext))
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
glGetIntegerv(gl_params[i].param, &value);
|
|
|
|
|
|
|
|
printf("%s: %i\n", gl_params[i].name, value);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2012-08-06 15:56:41 +00:00
|
|
|
glfwDestroyWindow(window);
|
2010-09-09 17:18:18 +00:00
|
|
|
window = NULL;
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
glfwTerminate();
|
2011-09-08 20:47:37 +00:00
|
|
|
exit(EXIT_SUCCESS);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|