Home
last modified time | relevance | path

Searched refs:wndconfig (Results 1 - 13 of 13) sorted by relevance

/third_party/glfw/src/
H A Dnull_window.c77 const _GLFWwndconfig* wndconfig, in createNativeWindow()
84 if (wndconfig->xpos == GLFW_ANY_POSITION && wndconfig->ypos == GLFW_ANY_POSITION) in createNativeWindow()
91 window->null.xpos = wndconfig->xpos; in createNativeWindow()
92 window->null.ypos = wndconfig->ypos; in createNativeWindow()
95 window->null.width = wndconfig->width; in createNativeWindow()
96 window->null.height = wndconfig->height; in createNativeWindow()
99 window->null.visible = wndconfig->visible; in createNativeWindow()
100 window->null.decorated = wndconfig->decorated; in createNativeWindow()
101 window->null.maximized = wndconfig in createNativeWindow()
76 createNativeWindow(_GLFWwindow* window, const _GLFWwndconfig* wndconfig, const _GLFWfbconfig* fbconfig) createNativeWindow() argument
114 _glfwCreateWindowNull(_GLFWwindow* window, const _GLFWwndconfig* wndconfig, const _GLFWctxconfig* ctxconfig, const _GLFWfbconfig* fbconfig) _glfwCreateWindowNull() argument
[all...]
H A Dx11_window.c567 const _GLFWwndconfig* wndconfig, in createNativeWindow()
570 int width = wndconfig->width; in createNativeWindow()
571 int height = wndconfig->height; in createNativeWindow()
573 if (wndconfig->scaleToMonitor) in createNativeWindow()
581 if (wndconfig->xpos != GLFW_ANY_POSITION && wndconfig->ypos != GLFW_ANY_POSITION) in createNativeWindow()
583 xpos = wndconfig->xpos; in createNativeWindow()
584 ypos = wndconfig->ypos; in createNativeWindow()
630 if (!wndconfig->decorated) in createNativeWindow()
638 if (wndconfig in createNativeWindow()
566 createNativeWindow(_GLFWwindow* window, const _GLFWwndconfig* wndconfig, Visual* visual, int depth) createNativeWindow() argument
1959 _glfwCreateWindowX11(_GLFWwindow* window, const _GLFWwndconfig* wndconfig, const _GLFWctxconfig* ctxconfig, const _GLFWfbconfig* fbconfig) _glfwCreateWindowX11() argument
[all...]
H A Dwin32_window.c544 const _GLFWwndconfig* wndconfig = cs->lpCreateParams; in windowProc() local
550 if (wndconfig && wndconfig->scaleToMonitor) in windowProc()
1277 const _GLFWwndconfig* wndconfig, in createNativeWindow()
1361 RECT rect = { 0, 0, wndconfig->width, wndconfig->height }; in createNativeWindow()
1363 window->win32.maximized = wndconfig->maximized; in createNativeWindow()
1364 if (wndconfig->maximized) in createNativeWindow()
1369 if (wndconfig->xpos == GLFW_ANY_POSITION && wndconfig in createNativeWindow()
1276 createNativeWindow(_GLFWwindow* window, const _GLFWwndconfig* wndconfig, const _GLFWfbconfig* fbconfig) createNativeWindow() argument
1495 _glfwCreateWindowWin32(_GLFWwindow* window, const _GLFWwndconfig* wndconfig, const _GLFWctxconfig* ctxconfig, const _GLFWfbconfig* fbconfig) _glfwCreateWindowWin32() argument
[all...]
H A Dwindow.c187 _GLFWwndconfig wndconfig; in glfwCreateWindow() local
207 wndconfig = _glfw.hints.window; in glfwCreateWindow()
209 wndconfig.width = width; in glfwCreateWindow()
210 wndconfig.height = height; in glfwCreateWindow()
211 wndconfig.title = title; in glfwCreateWindow()
229 window->resizable = wndconfig.resizable; in glfwCreateWindow()
230 window->decorated = wndconfig.decorated; in glfwCreateWindow()
231 window->autoIconify = wndconfig.autoIconify; in glfwCreateWindow()
232 window->floating = wndconfig.floating; in glfwCreateWindow()
233 window->focusOnShow = wndconfig in glfwCreateWindow()
[all...]
H A Dwl_window.c1022 const _GLFWwndconfig* wndconfig, in createNativeSurface()
1037 window->wl.width = wndconfig->width; in createNativeSurface()
1038 window->wl.height = wndconfig->height; in createNativeSurface()
1039 window->wl.fbWidth = wndconfig->width; in createNativeSurface()
1040 window->wl.fbHeight = wndconfig->height; in createNativeSurface()
1041 window->wl.appId = _glfw_strdup(wndconfig->wl.appId); in createNativeSurface()
1045 window->wl.scaleFramebuffer = wndconfig->scaleFramebuffer; in createNativeSurface()
1047 window->wl.maximized = wndconfig->maximized; in createNativeSurface()
2129 const _GLFWwndconfig* wndconfig, in _glfwCreateWindowWayland()
2133 if (!createNativeSurface(window, wndconfig, fbconfi in _glfwCreateWindowWayland()
1021 createNativeSurface(_GLFWwindow* window, const _GLFWwndconfig* wndconfig, const _GLFWfbconfig* fbconfig) createNativeSurface() argument
2128 _glfwCreateWindowWayland(_GLFWwindow* window, const _GLFWwndconfig* wndconfig, const _GLFWctxconfig* ctxconfig, const _GLFWfbconfig* fbconfig) _glfwCreateWindowWayland() argument
[all...]
H A Dcocoa_platform.h217 GLFWbool _glfwCreateWindowCocoa(_GLFWwindow* window, const _GLFWwndconfig* wndconfig, const _GLFWctxconfig* ctxconfig, const _GLFWfbconfig* fbconfig);
H A Dnull_platform.h222 GLFWbool _glfwCreateWindowNull(_GLFWwindow* window, const _GLFWwndconfig* wndconfig, const _GLFWctxconfig* ctxconfig, const _GLFWfbconfig* fbconfig);
H A Dx11_platform.h904 GLFWbool _glfwCreateWindowX11(_GLFWwindow* window, const _GLFWwndconfig* wndconfig, const _GLFWctxconfig* ctxconfig, const _GLFWfbconfig* fbconfig);
1000 GLFWbool _glfwChooseVisualGLX(const _GLFWwndconfig* wndconfig,
H A Dwin32_platform.h545 GLFWbool _glfwCreateWindowWin32(_GLFWwindow* window, const _GLFWwndconfig* wndconfig, const _GLFWctxconfig* ctxconfig, const _GLFWfbconfig* fbconfig);
H A Dglx_context.c643 GLFWbool _glfwChooseVisualGLX(const _GLFWwndconfig* wndconfig, in _glfwChooseVisualGLX() argument
H A Degl_context.c862 GLFWbool _glfwChooseVisualEGL(const _GLFWwndconfig* wndconfig, in _glfwChooseVisualEGL() argument
H A Dinternal.h996 GLFWbool _glfwChooseVisualEGL(const _GLFWwndconfig* wndconfig,
H A Dwl_platform.h613 GLFWbool _glfwCreateWindowWayland(_GLFWwindow* window, const _GLFWwndconfig* wndconfig, const _GLFWctxconfig* ctxconfig, const _GLFWfbconfig* fbconfig);

Completed in 22 milliseconds