Lines Matching refs:hints

205     fbconfig  = _glfw.hints.framebuffer;
206 ctxconfig = _glfw.hints.context;
207 wndconfig = _glfw.hints.window;
226 window->videoMode.refreshRate = _glfw.hints.refreshRate;
261 memset(&_glfw.hints.context, 0, sizeof(_glfw.hints.context));
262 _glfw.hints.context.client = GLFW_OPENGL_API;
263 _glfw.hints.context.source = GLFW_NATIVE_CONTEXT_API;
264 _glfw.hints.context.major = 1;
265 _glfw.hints.context.minor = 0;
268 memset(&_glfw.hints.window, 0, sizeof(_glfw.hints.window));
269 _glfw.hints.window.resizable = GLFW_TRUE;
270 _glfw.hints.window.visible = GLFW_TRUE;
271 _glfw.hints.window.decorated = GLFW_TRUE;
272 _glfw.hints.window.focused = GLFW_TRUE;
273 _glfw.hints.window.autoIconify = GLFW_TRUE;
274 _glfw.hints.window.centerCursor = GLFW_TRUE;
275 _glfw.hints.window.focusOnShow = GLFW_TRUE;
276 _glfw.hints.window.xpos = GLFW_ANY_POSITION;
277 _glfw.hints.window.ypos = GLFW_ANY_POSITION;
278 _glfw.hints.window.scaleFramebuffer = GLFW_TRUE;
282 memset(&_glfw.hints.framebuffer, 0, sizeof(_glfw.hints.framebuffer));
283 _glfw.hints.framebuffer.redBits = 8;
284 _glfw.hints.framebuffer.greenBits = 8;
285 _glfw.hints.framebuffer.blueBits = 8;
286 _glfw.hints.framebuffer.alphaBits = 8;
287 _glfw.hints.framebuffer.depthBits = 24;
288 _glfw.hints.framebuffer.stencilBits = 8;
289 _glfw.hints.framebuffer.doublebuffer = GLFW_TRUE;
292 _glfw.hints.refreshRate = GLFW_DONT_CARE;
302 _glfw.hints.framebuffer.redBits = value;
305 _glfw.hints.framebuffer.greenBits = value;
308 _glfw.hints.framebuffer.blueBits = value;
311 _glfw.hints.framebuffer.alphaBits = value;
314 _glfw.hints.framebuffer.depthBits = value;
317 _glfw.hints.framebuffer.stencilBits = value;
320 _glfw.hints.framebuffer.accumRedBits = value;
323 _glfw.hints.framebuffer.accumGreenBits = value;
326 _glfw.hints.framebuffer.accumBlueBits = value;
329 _glfw.hints.framebuffer.accumAlphaBits = value;
332 _glfw.hints.framebuffer.auxBuffers = value;
335 _glfw.hints.framebuffer.stereo = value ? GLFW_TRUE : GLFW_FALSE;
338 _glfw.hints.framebuffer.doublebuffer = value ? GLFW_TRUE : GLFW_FALSE;
341 _glfw.hints.framebuffer.transparent = value ? GLFW_TRUE : GLFW_FALSE;
344 _glfw.hints.framebuffer.samples = value;
347 _glfw.hints.framebuffer.sRGB = value ? GLFW_TRUE : GLFW_FALSE;
350 _glfw.hints.window.resizable = value ? GLFW_TRUE : GLFW_FALSE;
353 _glfw.hints.window.decorated = value ? GLFW_TRUE : GLFW_FALSE;
356 _glfw.hints.window.focused = value ? GLFW_TRUE : GLFW_FALSE;
359 _glfw.hints.window.autoIconify = value ? GLFW_TRUE : GLFW_FALSE;
362 _glfw.hints.window.floating = value ? GLFW_TRUE : GLFW_FALSE;
365 _glfw.hints.window.maximized = value ? GLFW_TRUE : GLFW_FALSE;
368 _glfw.hints.window.visible = value ? GLFW_TRUE : GLFW_FALSE;
371 _glfw.hints.window.xpos = value;
374 _glfw.hints.window.ypos = value;
377 _glfw.hints.window.win32.keymenu = value ? GLFW_TRUE : GLFW_FALSE;
380 _glfw.hints.window.win32.showDefault = value ? GLFW_TRUE : GLFW_FALSE;
383 _glfw.hints.context.nsgl.offline = value ? GLFW_TRUE : GLFW_FALSE;
386 _glfw.hints.window.scaleToMonitor = value ? GLFW_TRUE : GLFW_FALSE;
390 _glfw.hints.window.scaleFramebuffer = value ? GLFW_TRUE : GLFW_FALSE;
393 _glfw.hints.window.centerCursor = value ? GLFW_TRUE : GLFW_FALSE;
396 _glfw.hints.window.focusOnShow = value ? GLFW_TRUE : GLFW_FALSE;
399 _glfw.hints.window.mousePassthrough = value ? GLFW_TRUE : GLFW_FALSE;
402 _glfw.hints.context.client = value;
405 _glfw.hints.context.source = value;
408 _glfw.hints.context.major = value;
411 _glfw.hints.context.minor = value;
414 _glfw.hints.context.robustness = value;
417 _glfw.hints.context.forward = value ? GLFW_TRUE : GLFW_FALSE;
420 _glfw.hints.context.debug = value ? GLFW_TRUE : GLFW_FALSE;
423 _glfw.hints.context.noerror = value ? GLFW_TRUE : GLFW_FALSE;
426 _glfw.hints.context.profile = value;
429 _glfw.hints.context.release = value;
432 _glfw.hints.refreshRate = value;
448 strncpy(_glfw.hints.window.ns.frameName, value,
449 sizeof(_glfw.hints.window.ns.frameName) - 1);
452 strncpy(_glfw.hints.window.x11.className, value,
453 sizeof(_glfw.hints.window.x11.className) - 1);
456 strncpy(_glfw.hints.window.x11.instanceName, value,
457 sizeof(_glfw.hints.window.x11.instanceName) - 1);
460 strncpy(_glfw.hints.window.wl.appId, value,
461 sizeof(_glfw.hints.window.wl.appId) - 1);