Home
last modified time | relevance | path

Searched defs:GLFWwindow (Results 1 – 25 of 54) sorted by relevance

123

/dports/graphics/cegui/cegui-0.8.7/samples_framework/src/
H A DCEGuiGLFW3SharedBase.cpp108 void CEGuiGLFWSharedBase::glfwWindowCloseCallback(GLFWwindow* /*window*/) in glfwWindowCloseCallback() argument
114 void CEGuiGLFWSharedBase::glfwWindowResizeCallback(GLFWwindow* /*window*/, int width, int height) in glfwWindowResizeCallback() argument
169 void CEGuiGLFWSharedBase::glfwKeyCallback(GLFWwindow* /*window*/, int key, in glfwKeyCallback() argument
182 (GLFWwindow* /*window*/, unsigned codepoint) in glfwCharCallback() argument
189 (GLFWwindow* /*window*/, int button, int action, int /*mods*/) in glfwMouseButtonCallback() argument
201 (GLFWwindow* /*window*/, double /*xoffset*/, double yoffset) in glfwScrollCallback() argument
208 (GLFWwindow* /*window*/, double x, double y) in glfwCursorPosCallback() argument
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/dawn/src/utils/
H A DGlfw3Fuchsia.cpp42 struct GLFWwindow { struct
46 GLFWwindow() { in GLFWwindow() argument
54 ~GLFWwindow() { in ~GLFWwindow() argument
H A DGLFWUtils.cpp78 std::unique_ptr<wgpu::ChainedStruct> SetupWindowAndGetSurfaceDescriptorForTesting(GLFWwindow*) { in SetupWindowAndGetSurfaceDescriptorForTesting() argument
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/dawn/src/utils/
H A DGlfw3Fuchsia.cpp42 struct GLFWwindow { struct
46 GLFWwindow() { in GLFWwindow() argument
54 ~GLFWwindow() { in ~GLFWwindow() argument
H A DGLFWUtils.cpp78 std::unique_ptr<wgpu::ChainedStruct> SetupWindowAndGetSurfaceDescriptorForTesting(GLFWwindow*) { in SetupWindowAndGetSurfaceDescriptorForTesting() argument
/dports/graphics/instant-meshes/instant-meshes-0.0-42-g4a083f4/ext/nanogui/src/
H A Dexample3.cpp118 [](GLFWwindow *, double x, double y) { in main() argument
124 [](GLFWwindow *, int button, int action, int modifiers) { in main() argument
130 [](GLFWwindow *, int key, int scancode, int action, int mods) { in main() argument
136 [](GLFWwindow *, unsigned int codepoint) { in main() argument
142 [](GLFWwindow *, int count, const char **filenames) { in main() argument
148 [](GLFWwindow *, double x, double y) { in main() argument
154 [](GLFWwindow *, int width, int height) { in main() argument
/dports/x11-toolkits/nanogui/nanogui-e9ec8a1a9861cf578d9c6e85a6420080aa715c03/src/
H A Dexample3.cpp133 [](GLFWwindow *, double x, double y) { in main() argument
139 [](GLFWwindow *, int button, int action, int modifiers) { in main() argument
145 [](GLFWwindow *, int key, int scancode, int action, int mods) { in main() argument
151 [](GLFWwindow *, unsigned int codepoint) { in main() argument
157 [](GLFWwindow *, int count, const char **filenames) { in main() argument
163 [](GLFWwindow *, double x, double y) { in main() argument
169 [](GLFWwindow *, int width, int height) { in main() argument
/dports/graphics/rx/rx-0.4.0/cargo-crates/glfw-0.34.0/src/ffi/
H A Dmod.rs382 pub enum GLFWwindow {} enum
448 pub fn glfwDestroyWindow(window: *mut GLFWwindow); in glfwDestroyWindow()
457 pub fn glfwIconifyWindow(window: *mut GLFWwindow); in glfwIconifyWindow()
458 pub fn glfwRestoreWindow(window: *mut GLFWwindow); in glfwRestoreWindow()
459 pub fn glfwShowWindow(window: *mut GLFWwindow); in glfwShowWindow()
460 pub fn glfwHideWindow(window: *mut GLFWwindow); in glfwHideWindow()
509 pub fn glfwMakeContextCurrent(window: *mut GLFWwindow); in glfwMakeContextCurrent()
511 pub fn glfwSwapBuffers(window: *mut GLFWwindow); in glfwSwapBuffers()
520 pub fn glfwFocusWindow(window: *mut GLFWwindow); in glfwFocusWindow()
521 pub fn glfwMaximizeWindow(window: *mut GLFWwindow); in glfwMaximizeWindow()
[all …]
/dports/graphics/simpleviewer/andreyu-simple-viewer-gl-d8928067922d/src/
H A Dmain.cpp95 void callbackResize(GLFWwindow* /*window*/, int width, int height) in callbackResize() argument
100 void callbackPosition(GLFWwindow* /*window*/, int x, int y) in callbackPosition() argument
105 void callbackRedraw(GLFWwindow* /*window*/) in callbackRedraw() argument
110 void callbackKey(GLFWwindow* /*window*/, int key, int scancode, int action, int mods) in callbackKey() argument
115 void callbackChar(GLFWwindow* /*window*/, unsigned int c) in callbackChar() argument
120 void callbackMouseButtons(GLFWwindow* /*window*/, int button, int action, int mods) in callbackMouseButtons() argument
125 void callbackMousePosition(GLFWwindow* /*window*/, double x, double y) in callbackMousePosition() argument
130 void callbackCursorEnter(GLFWwindow* /*window*/, int entered) in callbackCursorEnter() argument
135 void callbackMouseScroll(GLFWwindow* /*window*/, double x, double y) in callbackMouseScroll() argument
141 void callbackDrop(GLFWwindow* /*window*/, int count, const char** paths) in callbackDrop() argument
/dports/graphics/embree/embree-3.13.2/tutorials/common/imgui/
H A Dimgui_impl_glfw_gl2.cpp153 void ImGui_ImplGlfw_MouseButtonCallback(GLFWwindow*, int button, int action, int /*mods*/) in ImGui_ImplGlfw_MouseButtonCallback() argument
159 void ImGui_ImplGlfw_ScrollCallback(GLFWwindow*, double xoffset, double yoffset) in ImGui_ImplGlfw_ScrollCallback() argument
166 void ImGui_ImplGlfw_KeyCallback(GLFWwindow*, int key, int, int action, int mods) in ImGui_ImplGlfw_KeyCallback() argument
181 void ImGui_ImplGlfw_CharCallback(GLFWwindow*, unsigned int c) in ImGui_ImplGlfw_CharCallback() argument
H A Dimgui_impl_glfw_gl3.cpp198 void ImGui_ImplGlfw_MouseButtonCallback(GLFWwindow*, int button, int action, int /*mods*/) in ImGui_ImplGlfw_MouseButtonCallback() argument
204 void ImGui_ImplGlfw_ScrollCallback(GLFWwindow*, double xoffset, double yoffset) in ImGui_ImplGlfw_ScrollCallback() argument
211 void ImGui_ImplGlfw_KeyCallback(GLFWwindow*, int key, int, int action, int mods) in ImGui_ImplGlfw_KeyCallback() argument
226 void ImGui_ImplGlfw_CharCallback(GLFWwindow*, unsigned int c) in ImGui_ImplGlfw_CharCallback() argument
/dports/math/curv/curv-0.5/extern/imgui/examples/
H A Dimgui_impl_glfw.cpp70 void ImGui_ImplGlfw_MouseButtonCallback(GLFWwindow*, int button, int action, int /*mods*/) in ImGui_ImplGlfw_MouseButtonCallback() argument
76 void ImGui_ImplGlfw_ScrollCallback(GLFWwindow*, double xoffset, double yoffset) in ImGui_ImplGlfw_ScrollCallback() argument
83 void ImGui_ImplGlfw_KeyCallback(GLFWwindow*, int key, int, int action, int mods) in ImGui_ImplGlfw_KeyCallback() argument
98 void ImGui_ImplGlfw_CharCallback(GLFWwindow*, unsigned int c) in ImGui_ImplGlfw_CharCallback() argument
/dports/devel/nextpnr/nextpnr-48cd407/3rdparty/imgui/examples/
H A Dimgui_impl_glfw.cpp70 void ImGui_ImplGlfw_MouseButtonCallback(GLFWwindow*, int button, int action, int /*mods*/) in ImGui_ImplGlfw_MouseButtonCallback() argument
76 void ImGui_ImplGlfw_ScrollCallback(GLFWwindow*, double xoffset, double yoffset) in ImGui_ImplGlfw_ScrollCallback() argument
83 void ImGui_ImplGlfw_KeyCallback(GLFWwindow*, int key, int, int action, int mods) in ImGui_ImplGlfw_KeyCallback() argument
98 void ImGui_ImplGlfw_CharCallback(GLFWwindow*, unsigned int c) in ImGui_ImplGlfw_CharCallback() argument
/dports/games/openclaw/OpenClaw-0.0-51-gbac7730/Box2D/imgui/
H A Dimgui_impl_glfw_gl3.cpp141 void ImGui_ImplGlfwGL3_MouseButtonCallback(GLFWwindow*, int button, int action, int /*mods*/) in ImGui_ImplGlfwGL3_MouseButtonCallback() argument
147 void ImGui_ImplGlfwGL3_ScrollCallback(GLFWwindow*, double /*xoffset*/, double yoffset) in ImGui_ImplGlfwGL3_ScrollCallback() argument
152 void ImGui_ImplGlfwGL3_KeyCallback(GLFWwindow*, int key, int, int action, int mods) in ImGui_ImplGlfwGL3_KeyCallback() argument
167 void ImGui_ImplGlfwGL3_CharCallback(GLFWwindow*, unsigned int c) in ImGui_ImplGlfwGL3_CharCallback() argument
/dports/graphics/ospray/ospray-2.8.0/modules/mpi/tutorials/
H A DGLFWDistribOSPRayWindow.cpp75 glfwWindow, [](GLFWwindow *, int newWidth, int newHeight) { in GLFWDistribOSPRayWindow() argument
79 glfwSetCursorPosCallback(glfwWindow, [](GLFWwindow *, double x, double y) { in GLFWDistribOSPRayWindow() argument
87 glfwWindow, [](GLFWwindow *, int key, int, int action, int) { in GLFWDistribOSPRayWindow() argument
/dports/graphics/ospray/ospray-2.8.0/apps/ospExamples/
H A Dimgui_impl_glfw_gl3.cpp152 GLFWwindow *, int button, int action, int /*mods*/) in ImGui_ImplGlfwGL3_MouseButtonCallback() argument
159 GLFWwindow *, double /*xoffset*/, double yoffset) in ImGui_ImplGlfwGL3_ScrollCallback() argument
166 GLFWwindow *, int key, int, int action, int mods) in ImGui_ImplGlfwGL3_KeyCallback() argument
/dports/misc/openvdb/openvdb-9.0.0/openvdb/openvdb/viewer/
H A DViewer.cc130 keyCB(GLFWwindow*, int key, int /*scancode*/, int action, int /*modifiers*/) in keyCB() argument
137 mouseButtonCB(GLFWwindow*, int button, int action, int /*modifiers*/) in mouseButtonCB() argument
144 mousePosCB(GLFWwindow*, double x, double y) in mousePosCB() argument
151 mouseWheelCB(GLFWwindow*, double /*xoffset*/, double yoffset) in mouseWheelCB() argument
158 windowSizeCB(GLFWwindow*, int width, int height) in windowSizeCB() argument
165 windowRefreshCB(GLFWwindow*) in windowRefreshCB() argument
/dports/games/openclaw/OpenClaw-0.0-51-gbac7730/Box2D/Testbed/Framework/
H A DMain.cpp88 static void sResizeWindow(GLFWwindow*, int width, int height) in sResizeWindow() argument
287 static void sMouseMotion(GLFWwindow*, double xd, double yd) in sMouseMotion() argument
/dports/graphics/opensubdiv/OpenSubdiv-3_4_4/examples/glStencilViewer/
H A DglStencilViewer.cpp796 motion(GLFWwindow *, double dx, double dy) { in motion() argument
820 mouse(GLFWwindow *, int button, int state, int /* mods */) { in mouse() argument
832 reshape(GLFWwindow *, int width, int height) { in reshape() argument
846 void windowClose(GLFWwindow*) { in windowClose() argument
879 keyboard(GLFWwindow *, int key, int /* scancode */, int event, int /* mods */) { in keyboard() argument
/dports/misc/box2d/box2d-2.4.1/testbed/
H A Dmain.cpp114 static void ResizeWindowCallback(GLFWwindow*, int width, int height) in ResizeWindowCallback() argument
315 static void MouseMotionCallback(GLFWwindow*, double xd, double yd) in MouseMotionCallback() argument
/dports/graphics/opensubdiv/OpenSubdiv-3_4_4/examples/glShareTopology/
H A DglShareTopology.cpp784 motion(GLFWwindow *, double dx, double dy) { argument
808 mouse(GLFWwindow *, int button, int state, int /* mods */) { argument
831 reshape(GLFWwindow *, int width, int height) { argument
845 void windowClose(GLFWwindow*) { argument
947 keyboard(GLFWwindow *, int key, int /* scancode */, int event, int /* mods */) { argument
/dports/graphics/opensubdiv/OpenSubdiv-3_4_4/examples/glEvalLimit/
H A DglEvalLimit.cpp1137 motion(GLFWwindow *, double dx, double dy) { in motion() argument
1162 mouse(GLFWwindow *, int button, int state, int /* mods */) { in mouse() argument
1174 reshape(GLFWwindow *, int width, int height) { in reshape() argument
1188 void windowClose(GLFWwindow*) { in windowClose() argument
1214 keyboard(GLFWwindow *, int key, int /* scancode */, int event, int /* mods */) { in keyboard() argument
/dports/graphics/opensubdiv/OpenSubdiv-3_4_4/examples/glFVarViewer/
H A DglFVarViewer.cpp945 motion(GLFWwindow *, double dx, double dy) { in motion() argument
982 mouse(GLFWwindow *, int button, int state, int /* mods */) { in mouse() argument
1009 reshape(GLFWwindow *, int width, int height) { in reshape() argument
1023 void windowClose(GLFWwindow*) { in windowClose() argument
1036 keyboard(GLFWwindow *, int key, int /* scancode */, int event, int /* mods */) { in keyboard() argument
/dports/graphics/opensubdiv/OpenSubdiv-3_4_4/examples/farViewer/
H A DfarViewer.cpp996 motion(GLFWwindow *, double dx, double dy) { in motion() argument
1023 mouse(GLFWwindow *, int button, int state, int /* mods */) { in mouse() argument
1038 reshape(GLFWwindow *, int width, int height) { in reshape() argument
1052 void windowClose(GLFWwindow*) { in windowClose() argument
1071 keyboard(GLFWwindow *, int key, int /* scancode */, int event, int /* mods */) { in keyboard() argument
/dports/graphics/opensubdiv/OpenSubdiv-3_4_4/examples/glViewer/
H A DglViewer.cpp1281 motion(GLFWwindow *, double dx, double dy) { in motion() argument
1309 mouse(GLFWwindow *, int button, int state, int /* mods */) { in mouse() argument
1339 reshape(GLFWwindow *, int width, int height) { in reshape() argument
1353 void windowClose(GLFWwindow*) { in windowClose() argument
1365 keyboard(GLFWwindow *, int key, int /* scancode */, int event, int /* mods */) { in keyboard() argument

123