Home
last modified time | relevance | path

Searched refs:glfwKey (Results 1 – 9 of 9) sorted by relevance

/dports/graphics/anttweakbar/AntTweakBar/src/
H A DTwEventGLFW.c41 int TW_CALL TwEventKeyGLFW(int glfwKey, int glfwAction) in TwEventKeyGLFW() argument
48 switch( glfwKey ) in TwEventKeyGLFW()
66 switch( glfwKey ) in TwEventKeyGLFW()
89 if( (mod&TW_KMOD_CTRL) && glfwKey>0 && glfwKey<GLFW_KEY_SPECIAL ) // CTRL cases in TwEventKeyGLFW()
90 handled = TwKeyPressed(glfwKey, mod); in TwEventKeyGLFW()
91 else if( glfwKey>=GLFW_KEY_SPECIAL ) in TwEventKeyGLFW()
95 if( glfwKey>=GLFW_KEY_F1 && glfwKey<=GLFW_KEY_F15 ) in TwEventKeyGLFW()
97 else if( testkp && glfwKey>=GLFW_KEY_KP_0 && glfwKey<=GLFW_KEY_KP_9 ) in TwEventKeyGLFW()
98 k = '0' + (glfwKey-GLFW_KEY_KP_0); in TwEventKeyGLFW()
101 switch( glfwKey ) in TwEventKeyGLFW()
[all …]
/dports/graphics/cegui/cegui-0.8.7/samples_framework/src/
H A DCEGuiGLFW2SharedBase.cpp121 CEGUI::Key::Scan CEGuiGLFWSharedBase::GlfwToCeguiKey(int glfwKey) in GlfwToCeguiKey() argument
123 switch(glfwKey) in GlfwToCeguiKey()
H A DCEGuiGLFW3SharedBase.cpp124 CEGUI::Key::Scan CEGuiGLFWSharedBase::GlfwToCeguiKey(int glfwKey) in GlfwToCeguiKey() argument
126 switch(glfwKey) in GlfwToCeguiKey()
/dports/graphics/cegui/cegui-0.8.7/samples_framework/include/
H A DCEGuiGLFWSharedBase.h91 static CEGUI::Key::Scan GlfwToCeguiKey(int glfwKey);
/dports/graphics/cegui/cegui-0.8.7/application_templates/
H A Dglfw3.cpp66 CEGUI::Key::Scan toCEGUIKey(int glfwKey) in toCEGUIKey() argument
68 switch (glfwKey) in toCEGUIKey()
/dports/graphics/freetype-gl/freetype-gl-647b062/windows/AntTweakBar/include/
H A DAntTweakBar.h303 TW_API int TW_CDECL_CALL TwEventKeyGLFWcdecl(int glfwKey, int glfwAction);
314 TW_API int TW_CALL TwEventKeyGLFW(int glfwKey, int glfwAction);
/dports/graphics/anttweakbar/AntTweakBar/include/
H A DAntTweakBar.h307 TW_API int TW_CDECL_CALL TwEventKeyGLFWcdecl(int glfwKey, int glfwAction);
318 TW_API int TW_CALL TwEventKeyGLFW(int glfwKey, int glfwAction);
/dports/graphics/anttweakbar/AntTweakBar/examples/
H A DTwAdvanced1.cpp556 void GLFWCALL OnKey(int glfwKey, int glfwAction) in OnKey() argument
558 if( !TwEventKeyGLFW(glfwKey, glfwAction) ) // Send event to AntTweakBar in OnKey()
560 if( glfwKey==GLFW_KEY_ESC && glfwAction==GLFW_PRESS ) // Want to quit? in OnKey()
/dports/graphics/glfw2/glfw-2.7.9/lib/carbon/
H A Dcarbon_window.c35 #define _glfwTestModifier( modifierMask, glfwKey ) \ argument
38 _glfwInputKey( glfwKey, (modifiers & modifierMask ? GLFW_PRESS : GLFW_RELEASE) ); \