Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c3db34e5 authored by Jason Sams's avatar Jason Sams Committed by Android (Google) Code Review
Browse files

Merge "Remove float8/16 from RS type list. We will not have time to work...

Merge "Remove float8/16 from RS type list. We will not have time to work through ABI issues for these types on arm for our ship date.  Can be re-added later."
parents dfda2adc 96d719c9
Loading
Loading
Loading
Loading
+0 −12
Original line number Diff line number Diff line
@@ -50,8 +50,6 @@ namespace renderscript {

typedef float rsvF_2 __attribute__ ((vector_size (8)));
typedef float rsvF_4 __attribute__ ((vector_size (16)));
typedef float rsvF_8 __attribute__ ((vector_size (32)));
typedef float rsvF_16 __attribute__ ((vector_size (64)));
typedef uint8_t rsvU8_4 __attribute__ ((vector_size (4)));

union float2 {
@@ -64,16 +62,6 @@ union float4 {
    float f[4];
};

union float8 {
    rsvF_8 v;
    float f[8];
};

union float16 {
    rsvF_16 v;
    float f[16];
};

union uchar4 {
    rsvU8_4 v;
    uint8_t f[4];