@@ -541,23 +541,23 @@ int64_t AMotionEvent_getEventTime(const AInputEvent* motion_event);
541
541
* For touch events on the screen, this is the delta that was added to the raw
542
542
* screen coordinates to adjust for the absolute position of the containing windows
543
543
* and views. */
544
- float AMotionEvent_getXOffset (const AInputEvent * motion_event );
544
+ float AMotionEvent_getXOffset (const AInputEvent * motion_event ) __NDK_FPABI__ ;
545
545
546
546
/* Get the precision of the Y coordinates being reported.
547
547
* For touch events on the screen, this is the delta that was added to the raw
548
548
* screen coordinates to adjust for the absolute position of the containing windows
549
549
* and views. */
550
- float AMotionEvent_getYOffset (const AInputEvent * motion_event );
550
+ float AMotionEvent_getYOffset (const AInputEvent * motion_event ) __NDK_FPABI__ ;
551
551
552
552
/* Get the precision of the X coordinates being reported.
553
553
* You can multiply this number with an X coordinate sample to find the
554
554
* actual hardware value of the X coordinate. */
555
- float AMotionEvent_getXPrecision (const AInputEvent * motion_event );
555
+ float AMotionEvent_getXPrecision (const AInputEvent * motion_event ) __NDK_FPABI__ ;
556
556
557
557
/* Get the precision of the Y coordinates being reported.
558
558
* You can multiply this number with a Y coordinate sample to find the
559
559
* actual hardware value of the Y coordinate. */
560
- float AMotionEvent_getYPrecision (const AInputEvent * motion_event );
560
+ float AMotionEvent_getYPrecision (const AInputEvent * motion_event ) __NDK_FPABI__ ;
561
561
562
562
/* Get the number of pointers of data contained in this event.
563
563
* Always >= 1. */
@@ -573,57 +573,57 @@ int32_t AMotionEvent_getPointerId(const AInputEvent* motion_event, size_t pointe
573
573
* For touch events on the screen, this is the original location of the event
574
574
* on the screen, before it had been adjusted for the containing window
575
575
* and views. */
576
- float AMotionEvent_getRawX (const AInputEvent * motion_event , size_t pointer_index );
576
+ float AMotionEvent_getRawX (const AInputEvent * motion_event , size_t pointer_index ) __NDK_FPABI__ ;
577
577
578
578
/* Get the original raw X coordinate of this event.
579
579
* For touch events on the screen, this is the original location of the event
580
580
* on the screen, before it had been adjusted for the containing window
581
581
* and views. */
582
- float AMotionEvent_getRawY (const AInputEvent * motion_event , size_t pointer_index );
582
+ float AMotionEvent_getRawY (const AInputEvent * motion_event , size_t pointer_index ) __NDK_FPABI__ ;
583
583
584
584
/* Get the current X coordinate of this event for the given pointer index.
585
585
* Whole numbers are pixels; the value may have a fraction for input devices
586
586
* that are sub-pixel precise. */
587
- float AMotionEvent_getX (const AInputEvent * motion_event , size_t pointer_index );
587
+ float AMotionEvent_getX (const AInputEvent * motion_event , size_t pointer_index ) __NDK_FPABI__ ;
588
588
589
589
/* Get the current Y coordinate of this event for the given pointer index.
590
590
* Whole numbers are pixels; the value may have a fraction for input devices
591
591
* that are sub-pixel precise. */
592
- float AMotionEvent_getY (const AInputEvent * motion_event , size_t pointer_index );
592
+ float AMotionEvent_getY (const AInputEvent * motion_event , size_t pointer_index ) __NDK_FPABI__ ;
593
593
594
594
/* Get the current pressure of this event for the given pointer index.
595
595
* The pressure generally ranges from 0 (no pressure at all) to 1 (normal pressure),
596
596
* although values higher than 1 may be generated depending on the calibration of
597
597
* the input device. */
598
- float AMotionEvent_getPressure (const AInputEvent * motion_event , size_t pointer_index );
598
+ float AMotionEvent_getPressure (const AInputEvent * motion_event , size_t pointer_index ) __NDK_FPABI__ ;
599
599
600
600
/* Get the current scaled value of the approximate size for the given pointer index.
601
601
* This represents some approximation of the area of the screen being
602
602
* pressed; the actual value in pixels corresponding to the
603
603
* touch is normalized with the device specific range of values
604
604
* and scaled to a value between 0 and 1. The value of size can be used to
605
605
* determine fat touch events. */
606
- float AMotionEvent_getSize (const AInputEvent * motion_event , size_t pointer_index );
606
+ float AMotionEvent_getSize (const AInputEvent * motion_event , size_t pointer_index ) __NDK_FPABI__ ;
607
607
608
608
/* Get the current length of the major axis of an ellipse that describes the touch area
609
609
* at the point of contact for the given pointer index. */
610
- float AMotionEvent_getTouchMajor (const AInputEvent * motion_event , size_t pointer_index );
610
+ float AMotionEvent_getTouchMajor (const AInputEvent * motion_event , size_t pointer_index ) __NDK_FPABI__ ;
611
611
612
612
/* Get the current length of the minor axis of an ellipse that describes the touch area
613
613
* at the point of contact for the given pointer index. */
614
- float AMotionEvent_getTouchMinor (const AInputEvent * motion_event , size_t pointer_index );
614
+ float AMotionEvent_getTouchMinor (const AInputEvent * motion_event , size_t pointer_index ) __NDK_FPABI__ ;
615
615
616
616
/* Get the current length of the major axis of an ellipse that describes the size
617
617
* of the approaching tool for the given pointer index.
618
618
* The tool area represents the estimated size of the finger or pen that is
619
619
* touching the device independent of its actual touch area at the point of contact. */
620
- float AMotionEvent_getToolMajor (const AInputEvent * motion_event , size_t pointer_index );
620
+ float AMotionEvent_getToolMajor (const AInputEvent * motion_event , size_t pointer_index ) __NDK_FPABI__ ;
621
621
622
622
/* Get the current length of the minor axis of an ellipse that describes the size
623
623
* of the approaching tool for the given pointer index.
624
624
* The tool area represents the estimated size of the finger or pen that is
625
625
* touching the device independent of its actual touch area at the point of contact. */
626
- float AMotionEvent_getToolMinor (const AInputEvent * motion_event , size_t pointer_index );
626
+ float AMotionEvent_getToolMinor (const AInputEvent * motion_event , size_t pointer_index ) __NDK_FPABI__ ;
627
627
628
628
/* Get the current orientation of the touch area and tool area in radians clockwise from
629
629
* vertical for the given pointer index.
@@ -633,11 +633,11 @@ float AMotionEvent_getToolMinor(const AInputEvent* motion_event, size_t pointer_
633
633
* indicates that the major axis of contact is oriented to the left.
634
634
* The full range is from -PI/2 radians (finger pointing fully left) to PI/2 radians
635
635
* (finger pointing fully right). */
636
- float AMotionEvent_getOrientation (const AInputEvent * motion_event , size_t pointer_index );
636
+ float AMotionEvent_getOrientation (const AInputEvent * motion_event , size_t pointer_index ) __NDK_FPABI__ ;
637
637
638
638
/* Get the value of the request axis for the given pointer index. */
639
639
float AMotionEvent_getAxisValue (const AInputEvent * motion_event ,
640
- int32_t axis , size_t pointer_index );
640
+ int32_t axis , size_t pointer_index ) __NDK_FPABI__ ;
641
641
642
642
/* Get the number of historical points in this event. These are movements that
643
643
* have occurred between this event and the previous event. This only applies
@@ -658,7 +658,7 @@ int64_t AMotionEvent_getHistoricalEventTime(const AInputEvent* motion_event,
658
658
* Whole numbers are pixels; the value may have a fraction for input devices
659
659
* that are sub-pixel precise. */
660
660
float AMotionEvent_getHistoricalRawX (const AInputEvent * motion_event , size_t pointer_index ,
661
- size_t history_index );
661
+ size_t history_index ) __NDK_FPABI__ ;
662
662
663
663
/* Get the historical raw Y coordinate of this event for the given pointer index that
664
664
* occurred between this event and the previous motion event.
@@ -668,29 +668,29 @@ float AMotionEvent_getHistoricalRawX(const AInputEvent* motion_event, size_t poi
668
668
* Whole numbers are pixels; the value may have a fraction for input devices
669
669
* that are sub-pixel precise. */
670
670
float AMotionEvent_getHistoricalRawY (const AInputEvent * motion_event , size_t pointer_index ,
671
- size_t history_index );
671
+ size_t history_index ) __NDK_FPABI__ ;
672
672
673
673
/* Get the historical X coordinate of this event for the given pointer index that
674
674
* occurred between this event and the previous motion event.
675
675
* Whole numbers are pixels; the value may have a fraction for input devices
676
676
* that are sub-pixel precise. */
677
677
float AMotionEvent_getHistoricalX (const AInputEvent * motion_event , size_t pointer_index ,
678
- size_t history_index );
678
+ size_t history_index ) __NDK_FPABI__ ;
679
679
680
680
/* Get the historical Y coordinate of this event for the given pointer index that
681
681
* occurred between this event and the previous motion event.
682
682
* Whole numbers are pixels; the value may have a fraction for input devices
683
683
* that are sub-pixel precise. */
684
684
float AMotionEvent_getHistoricalY (const AInputEvent * motion_event , size_t pointer_index ,
685
- size_t history_index );
685
+ size_t history_index ) __NDK_FPABI__ ;
686
686
687
687
/* Get the historical pressure of this event for the given pointer index that
688
688
* occurred between this event and the previous motion event.
689
689
* The pressure generally ranges from 0 (no pressure at all) to 1 (normal pressure),
690
690
* although values higher than 1 may be generated depending on the calibration of
691
691
* the input device. */
692
692
float AMotionEvent_getHistoricalPressure (const AInputEvent * motion_event , size_t pointer_index ,
693
- size_t history_index );
693
+ size_t history_index ) __NDK_FPABI__ ;
694
694
695
695
/* Get the current scaled value of the approximate size for the given pointer index that
696
696
* occurred between this event and the previous motion event.
@@ -700,35 +700,35 @@ float AMotionEvent_getHistoricalPressure(const AInputEvent* motion_event, size_t
700
700
* and scaled to a value between 0 and 1. The value of size can be used to
701
701
* determine fat touch events. */
702
702
float AMotionEvent_getHistoricalSize (const AInputEvent * motion_event , size_t pointer_index ,
703
- size_t history_index );
703
+ size_t history_index ) __NDK_FPABI__ ;
704
704
705
705
/* Get the historical length of the major axis of an ellipse that describes the touch area
706
706
* at the point of contact for the given pointer index that
707
707
* occurred between this event and the previous motion event. */
708
708
float AMotionEvent_getHistoricalTouchMajor (const AInputEvent * motion_event , size_t pointer_index ,
709
- size_t history_index );
709
+ size_t history_index ) __NDK_FPABI__ ;
710
710
711
711
/* Get the historical length of the minor axis of an ellipse that describes the touch area
712
712
* at the point of contact for the given pointer index that
713
713
* occurred between this event and the previous motion event. */
714
714
float AMotionEvent_getHistoricalTouchMinor (const AInputEvent * motion_event , size_t pointer_index ,
715
- size_t history_index );
715
+ size_t history_index ) __NDK_FPABI__ ;
716
716
717
717
/* Get the historical length of the major axis of an ellipse that describes the size
718
718
* of the approaching tool for the given pointer index that
719
719
* occurred between this event and the previous motion event.
720
720
* The tool area represents the estimated size of the finger or pen that is
721
721
* touching the device independent of its actual touch area at the point of contact. */
722
722
float AMotionEvent_getHistoricalToolMajor (const AInputEvent * motion_event , size_t pointer_index ,
723
- size_t history_index );
723
+ size_t history_index ) __NDK_FPABI__ ;
724
724
725
725
/* Get the historical length of the minor axis of an ellipse that describes the size
726
726
* of the approaching tool for the given pointer index that
727
727
* occurred between this event and the previous motion event.
728
728
* The tool area represents the estimated size of the finger or pen that is
729
729
* touching the device independent of its actual touch area at the point of contact. */
730
730
float AMotionEvent_getHistoricalToolMinor (const AInputEvent * motion_event , size_t pointer_index ,
731
- size_t history_index );
731
+ size_t history_index ) __NDK_FPABI__ ;
732
732
733
733
/* Get the historical orientation of the touch area and tool area in radians clockwise from
734
734
* vertical for the given pointer index that
@@ -740,12 +740,12 @@ float AMotionEvent_getHistoricalToolMinor(const AInputEvent* motion_event, size_
740
740
* The full range is from -PI/2 radians (finger pointing fully left) to PI/2 radians
741
741
* (finger pointing fully right). */
742
742
float AMotionEvent_getHistoricalOrientation (const AInputEvent * motion_event , size_t pointer_index ,
743
- size_t history_index );
743
+ size_t history_index ) __NDK_FPABI__ ;
744
744
745
745
/* Get the historical value of the request axis for the given pointer index
746
746
* that occurred between this event and the previous motion event. */
747
747
float AMotionEvent_getHistoricalAxisValue (const AInputEvent * motion_event ,
748
- int32_t axis , size_t pointer_index , size_t history_index );
748
+ int32_t axis , size_t pointer_index , size_t history_index ) __NDK_FPABI__ ;
749
749
750
750
751
751
/*
0 commit comments