Home
last modified time | relevance | path

Searched refs:EM_TRUE (Results 1 – 25 of 44) sorted by relevance

12

/dports/devel/emscripten/emscripten-2.0.3/tests/
H A Dtest_glfw_get_key_stuck.c107 emscripten_set_blur_callback(NULL, NULL, EM_TRUE, on_focuspocus); in main()
108 emscripten_set_focus_callback(NULL, NULL, EM_TRUE, on_focuspocus); in main()
109 emscripten_set_focusin_callback(NULL, NULL, EM_TRUE, on_focuspocus); in main()
110 emscripten_set_focusout_callback(NULL, NULL, EM_TRUE, on_focuspocus); in main()
H A Dgl_in_mainthread_after_pthread.cpp29 attr.explicitSwapControl = EM_TRUE; in ThreadMain()
104 attr.explicitSwapControl = EM_TRUE; in PollThreadExit()
H A Dgl_in_two_pthreads.cpp34 attr.explicitSwapControl = EM_TRUE; in thread_main()
78 attr.explicitSwapControl = EM_TRUE; in main()
H A Dgl_only_in_pthread.cpp29 attr.explicitSwapControl = EM_TRUE; in ThreadMain()
H A Dresize_offscreencanvas_from_main_thread.cpp42 attr.explicitSwapControl = EM_TRUE; in thread_main()
H A Dgl_in_pthread.cpp37 attr.explicitSwapControl = EM_TRUE; in ThreadMain()
H A Dcanvas_animate_resize.cpp126 attr.explicitSwapControl = EM_TRUE; in main()
/dports/shells/ion/ion-a8872014dbce730ccd00aaa722397dc394a52bf4/cargo-crates/winit-0.19.1/src/platform/emscripten/
H A Dmod.rs203 shift: (*event).shiftKey == ffi::EM_TRUE, in mouse_callback()
204 ctrl: (*event).ctrlKey == ffi::EM_TRUE, in mouse_callback()
205 alt: (*event).altKey == ffi::EM_TRUE, in mouse_callback()
206 logo: (*event).metaKey == ffi::EM_TRUE, in mouse_callback()
270 shift: (*event).shiftKey == ffi::EM_TRUE, in keyboard_callback()
271 ctrl: (*event).ctrlKey == ffi::EM_TRUE, in keyboard_callback()
272 alt: (*event).altKey == ffi::EM_TRUE, in keyboard_callback()
273 logo: (*event).metaKey == ffi::EM_TRUE, in keyboard_callback()
330 if touch.isChanged == ffi::EM_TRUE { in touch_callback()
358 ffi::emscripten_request_fullscreen(ptr::null(), ffi::EM_TRUE); in fullscreen_callback()
[all …]
/dports/games/dose-response/dose-response-179c326/cargo-crates/winit-0.19.4/src/platform/emscripten/
H A Dmod.rs203 shift: (*event).shiftKey == ffi::EM_TRUE, in mouse_callback()
204 ctrl: (*event).ctrlKey == ffi::EM_TRUE, in mouse_callback()
205 alt: (*event).altKey == ffi::EM_TRUE, in mouse_callback()
206 logo: (*event).metaKey == ffi::EM_TRUE, in mouse_callback()
270 shift: (*event).shiftKey == ffi::EM_TRUE, in keyboard_callback()
271 ctrl: (*event).ctrlKey == ffi::EM_TRUE, in keyboard_callback()
272 alt: (*event).altKey == ffi::EM_TRUE, in keyboard_callback()
273 logo: (*event).metaKey == ffi::EM_TRUE, in keyboard_callback()
330 if touch.isChanged == ffi::EM_TRUE { in touch_callback()
358 ffi::emscripten_request_fullscreen(ptr::null(), ffi::EM_TRUE); in fullscreen_callback()
[all …]
/dports/cad/opencascade/opencascade-7.6.0/src/ViewerTest/
H A DViewerTest_EventManager.cxx622 return aWindow->ProcessUiEvent (*aViewCtrl, theEventType, theEvent) ? EM_TRUE : EM_FALSE; in onResizeCallback()
662 return aWindow->ProcessMouseEvent (*aViewCtrl, theEventType, theEvent) ? EM_TRUE : EM_FALSE; in onWasmMouseCallback()
675 return aWindow->ProcessWheelEvent (*aViewCtrl, theEventType, theEvent) ? EM_TRUE : EM_FALSE; in onWasmWheelCallback()
688 return aWindow->ProcessTouchEvent (*aViewCtrl, theEventType, theEvent) ? EM_TRUE : EM_FALSE; in onWasmTouchCallback()
702 return EM_TRUE; in onWasmKeyCallback()
715 return aWindow->ProcessFocusEvent (*aViewCtrl, theEventType, theEvent) ? EM_TRUE : EM_FALSE; in onWasmFocusCallback()
763 const EM_BOOL toUseCapture = EM_TRUE; in SetupWindowCallbacks()
/dports/cad/opencascade/opencascade-7.6.0/samples/webgl/
H A DWasmOcctView.cpp184 const EM_BOOL toUseCapture = EM_TRUE; in initWindow()
481 return EM_TRUE; in onResizeEvent()
523 return aWindow->ProcessMouseEvent (*this, theEventType, theEvent) ? EM_TRUE : EM_FALSE; in onMouseEvent()
539 return aWindow->ProcessWheelEvent (*this, theEventType, theEvent) ? EM_TRUE : EM_FALSE; in onWheelEvent()
554 return aWindow->ProcessTouchEvent (*this, theEventType, theEvent) ? EM_TRUE : EM_FALSE; in onTouchEvent()
609 return aWindow->ProcessFocusEvent (*this, theEventType, theEvent) ? EM_TRUE : EM_FALSE; in onFocusEvent()
625 return aWindow->ProcessKeyEvent (*this, theEventType, theEvent) ? EM_TRUE : EM_FALSE; in onKeyDownEvent()
667 return aWindow->ProcessKeyEvent (*this, theEventType, theEvent) ? EM_TRUE : EM_FALSE; in onKeyUpEvent()
/dports/games/retroarch/RetroArch-1.9.7/input/drivers/
H A Drwebinput_input.c242 return EM_TRUE; in rwebinput_keyboard_cb()
258 return EM_TRUE; in rwebinput_keyboard_cb()
278 return EM_TRUE; in rwebinput_mouse_cb()
289 return EM_TRUE; in rwebinput_wheel_cb()
664 emscripten_request_pointerlock("#canvas", EM_TRUE); in rwebinput_grab_mouse()
/dports/cad/opencascade/opencascade-7.6.0/src/Wasm/
H A DWasm_Window.cxx273 if (theEvent->ctrlKey == EM_TRUE) { aFlags |= Aspect_VKeyFlags_CTRL; } in ProcessMouseEvent()
274 if (theEvent->shiftKey == EM_TRUE) { aFlags |= Aspect_VKeyFlags_SHIFT; } in ProcessMouseEvent()
275 if (theEvent->altKey == EM_TRUE) { aFlags |= Aspect_VKeyFlags_ALT; } in ProcessMouseEvent()
276 if (theEvent->metaKey == EM_TRUE) { aFlags |= Aspect_VKeyFlags_META; } in ProcessMouseEvent()
501 if (theEvent->repeat == EM_TRUE) in ProcessKeyEvent()
/dports/games/retroarch/RetroArch-1.9.7/input/drivers_joypad/
H A Drwebpad_joypad.c63 return EM_TRUE; in rwebpad_gamepad_cb()
206 return gamepad_state.connected == EM_TRUE; in rwebpad_joypad_query_pad()
/dports/devel/emscripten/emscripten-2.0.3/tests/pthread/
H A Dtest_pthread_mutex.cpp93 return EM_TRUE; in WaitToJoin()
/dports/devel/emscripten/emscripten-2.0.3/tests/minimal_webgl/
H A Dmain.cpp66 return EM_TRUE; in draw_frame()
/dports/devel/emscripten/emscripten-2.0.3/system/lib/websocket/
H A Dwebsocket_to_posix_socket.cpp165 return EM_TRUE; in bridge_socket_on_message()
179 return EM_TRUE; in bridge_socket_on_message()
186 return EM_TRUE; in bridge_socket_on_message()
195 return EM_TRUE; in bridge_socket_on_message()
206 return EM_TRUE; in bridge_socket_on_message()
/dports/archivers/zstd/zstd-1.5.0/build/single_file_libs/examples/
H A Demscripten.c235 return EM_TRUE; in initContext()
/dports/emulators/ppsspp/ppsspp-1.12.3/ext/zstd/build/single_file_libs/examples/
H A Demscripten.c235 return EM_TRUE; in initContext()
/dports/databases/percona57-server/percona-server-5.7.36-39/storage/rocksdb/third_party/zstd/contrib/single_file_decoder/examples/
H A Demscripten.c495 return EM_TRUE; in initContext()
/dports/databases/percona57-client/percona-server-5.7.36-39/storage/rocksdb/third_party/zstd/contrib/single_file_decoder/examples/
H A Demscripten.c495 return EM_TRUE; in initContext()
/dports/emulators/ppsspp-qt5/ppsspp-1.12.3/ext/zstd/build/single_file_libs/examples/
H A Demscripten.c235 return EM_TRUE;
/dports/sysutils/vector/vector-0.10.0/cargo-crates/zstd-sys-1.4.15+zstd.1.4.4/zstd/contrib/single_file_decoder/examples/
H A Demscripten.c495 return EM_TRUE; in initContext()
/dports/security/arti/arti-9d0ede26801cdb182daa85c3eb5f0058dc178eb6/cargo-crates/zstd-sys-1.5.0+zstd.1.4.9/zstd/contrib/single_file_libs/examples/
H A Demscripten.c235 return EM_TRUE; in initContext()
/dports/databases/percona57-pam-for-mysql/percona-server-5.7.36-39/storage/rocksdb/third_party/zstd/contrib/single_file_decoder/examples/
H A Demscripten.c495 return EM_TRUE; in initContext()

12