OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:createInputObject
(Results
1 - 8
of
8
) sorted by null
/external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/includes/SDL/
SDLInputManager.h
50
/** @copydoc InputManager::
createInputObject
*/
51
Object*
createInputObject
( Type iType, bool bufferMode );
/external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/includes/
OISInputManager.h
112
Object*
createInputObject
( Type iType, bool bufferMode, const std::string &vendor = "");
/external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/src/SDL/
SDLInputManager.cpp
85
Object* SDLInputManager::
createInputObject
( Type iType, bool bufferMode )
/external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/
com.badlogic.gdx.controllers.desktop.ois.Ois.cpp
85
return (jlong)static_cast<OIS::JoyStick*>(inputManager->
createInputObject
(OIS::OISJoyStick, true));
/external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/Win32/SDL/SdlDemo/
SdlDemo.cpp
167
gKeyboard = static_cast<Keyboard*>(im->
createInputObject
(OISKeyboard, false));
170
gMouse = static_cast<Mouse*>(im->
createInputObject
(OISMouse, false));
/external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/demos/
OISConsole.cpp
352
g_kb = (Keyboard*)g_InputManager->
createInputObject
( OISKeyboard, true );
355
g_m = (Mouse*)g_InputManager->
createInputObject
( OISMouse, true );
367
g_joys[i] = (JoyStick*)g_InputManager->
createInputObject
( OISJoyStick, true );
FFConsoleDemo.cpp
300
JoyStick* pJoy = (JoyStick*)pInputMgr->
createInputObject
( OISJoyStick, true );
858
_pKeyboard = (Keyboard*)_pInputMgr->
createInputObject
( OISKeyboard, true );
/external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/src/
OISInputManager.cpp
198
Object* InputManager::
createInputObject
( Type iType, bool bufferMode, const std::string &vendor )
Completed in 410 milliseconds