[DEBUG] vompile back android
This commit is contained in:
parent
1727bb769b
commit
32bdfd4ea6
@ -442,7 +442,7 @@ class AndroidContext : public gale::Context {
|
|||||||
GALE_VERBOSE("ANDROID_SetKeyboard [BEGIN]");
|
GALE_VERBOSE("ANDROID_SetKeyboard [BEGIN]");
|
||||||
OS_setKeyboard(m_guiKeyBoardSpecialKeyMode,
|
OS_setKeyboard(m_guiKeyBoardSpecialKeyMode,
|
||||||
gale::key::keyboard::character,
|
gale::key::keyboard::character,
|
||||||
(_isDown==true?gale::key::status::down:gale::key::status_up),
|
(_isDown==true?gale::key::status::down:gale::key::status::up),
|
||||||
_isARepeateKey,
|
_isARepeateKey,
|
||||||
_myChar);
|
_myChar);
|
||||||
GALE_VERBOSE("ANDROID_SetKeyboard [END]");
|
GALE_VERBOSE("ANDROID_SetKeyboard [END]");
|
||||||
@ -452,7 +452,7 @@ class AndroidContext : public gale::Context {
|
|||||||
GALE_VERBOSE("ANDROID_systemKeyboradEvent [BEGIN]");
|
GALE_VERBOSE("ANDROID_systemKeyboradEvent [BEGIN]");
|
||||||
OS_setKeyboard(m_guiKeyBoardSpecialKeyMode,
|
OS_setKeyboard(m_guiKeyBoardSpecialKeyMode,
|
||||||
_key,
|
_key,
|
||||||
(_isDown==true?gale::key::status::down:gale::key::status_up));
|
(_isDown==true?gale::key::status::down:gale::key::status::up));
|
||||||
GALE_VERBOSE("ANDROID_systemKeyboradEvent [END]");
|
GALE_VERBOSE("ANDROID_systemKeyboradEvent [END]");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -464,7 +464,7 @@ class AndroidContext : public gale::Context {
|
|||||||
m_guiKeyBoardSpecialKeyMode.update(move, _isDown);
|
m_guiKeyBoardSpecialKeyMode.update(move, _isDown);
|
||||||
OS_setKeyboard(m_guiKeyBoardSpecialKeyMode,
|
OS_setKeyboard(m_guiKeyBoardSpecialKeyMode,
|
||||||
move,
|
move,
|
||||||
(_isDown==true?gale::key::status::down:gale::key::status_up),
|
(_isDown==true?gale::key::status::down:gale::key::status::up),
|
||||||
_isARepeateKey);
|
_isARepeateKey);
|
||||||
GALE_VERBOSE("ANDROID_SetKeyboardMove [END]");
|
GALE_VERBOSE("ANDROID_SetKeyboardMove [END]");
|
||||||
}
|
}
|
||||||
@ -723,7 +723,7 @@ extern "C" {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
s_listInstance[_id]->OS_SetInput(gale::key::type::finger,
|
s_listInstance[_id]->OS_SetInput(gale::key::type::finger,
|
||||||
(_isDown==true?gale::key::status::down:gale::key::status_up),
|
(_isDown==true?gale::key::status::down:gale::key::status::up),
|
||||||
_pointerID+1,
|
_pointerID+1,
|
||||||
vec2(_x,_y));
|
vec2(_x,_y));
|
||||||
}
|
}
|
||||||
@ -764,7 +764,7 @@ extern "C" {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
s_listInstance[_id]->OS_SetInput(gale::key::type::mouse,
|
s_listInstance[_id]->OS_SetInput(gale::key::type::mouse,
|
||||||
(_isDown==true?gale::key::status::down:gale::key::status_up),
|
(_isDown==true?gale::key::status::down:gale::key::status::up),
|
||||||
_pointerID+1,
|
_pointerID+1,
|
||||||
vec2(_x,_y));
|
vec2(_x,_y));
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user