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

Commit 96d719c9 authored by Jason Sams's avatar Jason Sams
Browse files

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.

Change-Id: I957758be7e900a1c55eff9cb5aeb16fa636bd9a0
parent cbe4a73f
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];