public virtual void enqueue(int touchID, String phase, float globalX, float globalY, float pressure, float width, float height)
 {
     mQueue.unshift(touchID, phase, globalX, globalY, pressure, width, height);
     if (mCtrlDown && getSimulateMultitouch() && touchID == 0)
     {
         mTouchMarker.moveMarker(globalX, globalY, mShiftDown);
         mQueue.unshift(new AsArray(1, phase, mTouchMarker.getMockX(), mTouchMarker.getMockY()));
     }
 }