Camilla Berglund
ef80beab81
Add run-time context creation API selection
...
Fixes #145 .
ago%!(EXTRA string=9 years)
Camilla Berglund
3f25610d2f
Fix uses of deprecated Vulkan symbol
ago%!(EXTRA string=9 years)
Camilla Berglund
da44625970
Cleanup
ago%!(EXTRA string=9 years)
Camilla Berglund
7669ade19c
Make instance extension count unsigned
...
Fixes #714 .
ago%!(EXTRA string=9 years)
Camilla Berglund
f3f0eaa59e
Add OpenGL error check to glfwinfo
ago%!(EXTRA string=9 years)
Camilla Berglund
eabc64fb7d
Disable unused prototypes
ago%!(EXTRA string=9 years)
Camilla Berglund
9b75bffc88
Add basic Vulkan support
...
Added GLFW_INCLUDE_VULKAN. Added glfwVulkanSupported,
glfwGetRequiredInstanceExtensions, glfwGetInstanceProcAddress,
glfwGetPhysicalDevicePresentationSupport and glfwCreateWindowSurface.
Added port of LunarG SDK tri example.
ago%!(EXTRA string=9 years)
Camilla Berglund
c2efe87cff
Improve glfwinfo extension listing
ago%!(EXTRA string=9 years)
Camilla Berglund
1e452d5fca
Remove work performed by glad
ago%!(EXTRA string=9 years)
Camilla Berglund
048966bb44
Fix Win32 macro conflict
ago%!(EXTRA string=10 years)
Camilla Berglund
7be8209d14
Add GLFW_CONTEXT_NO_ERROR window hint
...
This adds support for the GL_KHR_no_error extension.
ago%!(EXTRA string=10 years)
Camilla Berglund
1b1ef31228
Make tests and examples use glad
ago%!(EXTRA string=10 years)
Camilla Berglund
0eccf75f65
Replace GL booleans with public macros
ago%!(EXTRA string=10 years)
Camilla Berglund
8a4e939a10
Fix glext.h regression in glfwinfo on OS X
...
The glfwinfo program uses symbols not provided by the glext.h header in
every development environment.
Closes #572 .
ago%!(EXTRA string=10 years)
Camilla Berglund
37e13361f5
Fixed last manual inclusion of glext.h.
ago%!(EXTRA string=10 years)
Camilla Berglund
cf10e318d6
Formatting.
ago%!(EXTRA string=10 years)
Camilla Berglund
4f0fc55385
Added version option to glfwinfo.
ago%!(EXTRA string=10 years)
Camilla Berglund
23195693ed
Added glfwinfo options for context and fb hints.
ago%!(EXTRA string=10 years)
Camilla Berglund
a7fa41612c
Fixed printing of GLFW version on usage and error.
ago%!(EXTRA string=10 years)
Camilla Berglund
5f91ea34de
Made glfwinfo options set hints directly.
ago%!(EXTRA string=10 years)
Camilla Berglund
5abf7841f8
Improved glfwinfo tool.
...
Added long options to glfwinfo. Cleaned up code.
ago%!(EXTRA string=10 years)
Camilla Berglund
439417a22c
Comment and string spell check pass.
ago%!(EXTRA string=10 years)
Camilla Berglund
b4c4ba0439
Fixed regression due to stale OS X glext header.
...
Fixes regression caused by b140606a49
.
ago%!(EXTRA string=11 years)
Camilla Berglund
b140606a49
Added GLFW_INCLUDE_GLEXT for glext.h inclusion.
...
Closes #365 .
ago%!(EXTRA string=11 years)
Camilla Berglund
44c899ce70
Added support for GL_KHR_context_flush_control.
ago%!(EXTRA string=11 years)
Camilla Berglund
77d2a2131d
Fixed fallthrough bug in glfwinfo.
ago%!(EXTRA string=11 years)
Camilla Berglund
281013002d
Added GLFW_DONT_CARE.
...
This changes the behavior of framebuffer hints set to zero. Before,
zero meant that any value was acceptable. This changes zero to be an
explicit preference and adds GLFW_DONT_CARE to mean that any value is
equally acceptable.
Fixes #70 .
ago%!(EXTRA string=11 years)
Camilla Berglund
45368f410a
Fixed warnings from Clang static analysis.
ago%!(EXTRA string=12 years)
Camilla Berglund
785e68bb0d
Added flag descriptions to glfwinfo -h.
ago%!(EXTRA string=12 years)
Camilla Berglund
86e50b1044
Placed glfwinfo version test after getopt.
ago%!(EXTRA string=12 years)
Camilla Berglund
ad1f6f0341
Renamed glfwGetWindowParam to glfwGetWindowAttrib.
...
Parameters are something specified at creation time and are often
immutable, while many of the values returned by glfwGetWindowParam
reflected current state not controlled by any parameter or hint.
ago%!(EXTRA string=12 years)
Camilla Berglund
15ed715f4e
Moved public headers to the GLFW directory.
ago%!(EXTRA string=12 years)
Camilla Berglund
9af960e2dd
Made the pointer-ness of object handles explicit.
ago%!(EXTRA string=13 years)
Camilla Berglund
9cc8fc0d0a
Removed glfwGetError and glfwErrorString.
...
The cached error code cannot be made per-thread unless it required
glfwInit (due to lack of __thread on OS X), which would be confusing and
partially defeats the purpose of it.
Beginners would use the generic error string facility instead of the
error callback and then be confused by its nondescript messages.
Storing the provided error code from within the error callback, whether
globally or per-thread, requires just a few lines of code and hands
control to the user without compromising thread safety.
ago%!(EXTRA string=13 years)
Camilla Berglund
238da01770
Re-used profile name macros in glfwinfo.
ago%!(EXTRA string=13 years)
Camilla Berglund
4bb451f4a7
Removed outdated comment.
ago%!(EXTRA string=13 years)
Camilla Berglund
11a4d01ea7
Added support for ARB_robustness to glfwinfo.
ago%!(EXTRA string=13 years)
Camilla Berglund
a8a0585164
Updated debug context detection.
ago%!(EXTRA string=13 years)
Camilla Berglund
3f5843f500
Renamed tokens used for other client APIs.
ago%!(EXTRA string=13 years)
Camilla Berglund
b8c16e49f1
Removed window size DWIM.
ago%!(EXTRA string=13 years)
Camilla Berglund
d68acb78bf
Removed registering glfwTerminate with atexit.
...
Functions registered with atexit are called from the thread calling exit.
glfwTerminate should only be called from the main thread. Mistakes should be
explicit.
ago%!(EXTRA string=13 years)
Camilla Berglund
bf43247aed
Fixed output of GLFW-parsed context profile by glfwinfo.
ago%!(EXTRA string=13 years)
Camilla Berglund
937f137246
Improved error formatting.
ago%!(EXTRA string=13 years)
Camilla Berglund
38cad9aff0
Added client API window hint.
...
This is cherry-picked from the EGL branch in preparation for the EGL backend.
ago%!(EXTRA string=13 years)
Camilla Berglund
1be1636326
Begun integrating monitor and window.
ago%!(EXTRA string=13 years)
Camilla Berglund
8a948753df
Added printing of debug context window parameter.
ago%!(EXTRA string=13 years)
Camilla Berglund
733cd5372f
Fixed and separated GLFW version check.
ago%!(EXTRA string=13 years)
Camilla Berglund
f50d38f148
Moved glfwinfo version check to before glfwInit.
ago%!(EXTRA string=13 years)
Camilla Berglund
f5bfe41456
Moved GLFW_VISIBLE hint use to glfwinfo.
ago%!(EXTRA string=13 years)
Camilla Berglund
2f095cc9e3
Removed implicit glfwMakeCurrentContext.
...
Implicitly making the context current makes sense in a
single-window API but less sense in a multi-window one.
ago%!(EXTRA string=13 years)