Skip to content

Commit

Permalink
use css size for touch normalisation
Browse files Browse the repository at this point in the history
  • Loading branch information
Daft-Freak committed Sep 13, 2016
1 parent 1096f32 commit be08cc6
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/video/emscripten/SDL_emscriptenevents.c
Expand Up @@ -374,12 +374,15 @@ Emscripten_HandleTouch(int eventType, const EmscriptenTouchEvent *touchEvent, vo
{
SDL_WindowData *window_data = userData;
int i;
double client_w, client_h;

SDL_TouchID deviceId = 1;
if (SDL_AddTouch(deviceId, "") < 0) {
return 0;
}

emscripten_get_element_css_size(NULL, &client_w, &client_h);

for (i = 0; i < touchEvent->numTouches; i++) {
SDL_FingerID id;
float x, y;
Expand All @@ -388,8 +391,8 @@ Emscripten_HandleTouch(int eventType, const EmscriptenTouchEvent *touchEvent, vo
continue;

id = touchEvent->touches[i].identifier;
x = touchEvent->touches[i].canvasX / (float)window_data->windowed_width;
y = touchEvent->touches[i].canvasY / (float)window_data->windowed_height;
x = touchEvent->touches[i].canvasX / client_w;
y = touchEvent->touches[i].canvasY / client_h;

if (eventType == EMSCRIPTEN_EVENT_TOUCHSTART) {
if (!window_data->finger_touching) {
Expand Down

0 comments on commit be08cc6

Please sign in to comment.