mirror of
https://github.com/nigels-com/glew.git
synced 2024-11-22 13:55:07 +00:00
[CoreSupport] glewinfo profiles/flags documentation breadcrumbs.
This commit is contained in:
parent
60b0fc5c05
commit
0720521034
@ -30,16 +30,21 @@ GLXEWContext _glxewctx;
|
||||
#endif
|
||||
#endif
|
||||
|
||||
struct createParams {
|
||||
/* Command-line parameters for GL context creation */
|
||||
|
||||
struct createParams
|
||||
{
|
||||
#if defined(_WIN32)
|
||||
int pixelformat;
|
||||
#elif !defined(__APPLE__) && !defined(__HAIKU__) || defined(GLEW_APPLE_GLX)
|
||||
const char* display;
|
||||
int visual;
|
||||
#endif
|
||||
int major, minor;
|
||||
int profile_mask;
|
||||
int flags;
|
||||
int major, minor; /* GL context version number */
|
||||
|
||||
/* https://www.opengl.org/registry/specs/ARB/glx_create_context.txt */
|
||||
int profile_mask; /* core = 1, compatibility = 2 */
|
||||
int flags; /* debug = 1, forward compatible = 2 */
|
||||
};
|
||||
|
||||
GLboolean glewCreateContext (struct createParams *params);
|
||||
|
@ -7,7 +7,8 @@
|
||||
int main (int argc, char** argv)
|
||||
{
|
||||
GLuint err;
|
||||
struct createParams params = {
|
||||
struct createParams params =
|
||||
{
|
||||
#if defined(_WIN32)
|
||||
-1, /* pixelformat */
|
||||
#elif !defined(__HAIKU__) && !defined(__APPLE__) || defined(GLEW_APPLE_GLX)
|
||||
|
Loading…
Reference in New Issue
Block a user