diff options
author | Jason Sams <rjsams@android.com> | 2011-04-22 17:05:25 -0700 |
---|---|---|
committer | Stephen Hines <srhines@google.com> | 2011-04-25 16:09:48 -0700 |
commit | 6cc888e77e17ac522f75bf61403307de8ace2ef3 (patch) | |
tree | bcd815ba22f2165576399fa1cfcf24f828fc6f43 /libs | |
parent | 466e3a22db283958a1da71cc60a23ce3976a3659 (diff) | |
download | frameworks_base-6cc888e77e17ac522f75bf61403307de8ace2ef3.zip frameworks_base-6cc888e77e17ac522f75bf61403307de8ace2ef3.tar.gz frameworks_base-6cc888e77e17ac522f75bf61403307de8ace2ef3.tar.bz2 |
Start ICS header cleanup and finish type matrix.
Change-Id: If65f96f08c958d330862c543d85dd9d4a0f90e06
Diffstat (limited to 'libs')
-rw-r--r-- | libs/rs/scriptc/rs_types.rsh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libs/rs/scriptc/rs_types.rsh b/libs/rs/scriptc/rs_types.rsh index a010096..d9f4b4b 100644 --- a/libs/rs/scriptc/rs_types.rsh +++ b/libs/rs/scriptc/rs_types.rsh @@ -36,6 +36,10 @@ typedef float float2 __attribute__((ext_vector_type(2))); typedef float float3 __attribute__((ext_vector_type(3))); typedef float float4 __attribute__((ext_vector_type(4))); +typedef double double2 __attribute__((ext_vector_type(2))); +typedef double double3 __attribute__((ext_vector_type(3))); +typedef double double4 __attribute__((ext_vector_type(4))); + typedef uchar uchar2 __attribute__((ext_vector_type(2))); typedef uchar uchar3 __attribute__((ext_vector_type(3))); typedef uchar uchar4 __attribute__((ext_vector_type(4))); @@ -48,6 +52,10 @@ typedef uint uint2 __attribute__((ext_vector_type(2))); typedef uint uint3 __attribute__((ext_vector_type(3))); typedef uint uint4 __attribute__((ext_vector_type(4))); +typedef ulong ulong2 __attribute__((ext_vector_type(2))); +typedef ulong ulong3 __attribute__((ext_vector_type(3))); +typedef ulong ulong4 __attribute__((ext_vector_type(4))); + typedef char char2 __attribute__((ext_vector_type(2))); typedef char char3 __attribute__((ext_vector_type(3))); typedef char char4 __attribute__((ext_vector_type(4))); @@ -60,6 +68,9 @@ typedef int int2 __attribute__((ext_vector_type(2))); typedef int int3 __attribute__((ext_vector_type(3))); typedef int int4 __attribute__((ext_vector_type(4))); +typedef long long2 __attribute__((ext_vector_type(2))); +typedef long long3 __attribute__((ext_vector_type(3))); +typedef long long4 __attribute__((ext_vector_type(4))); typedef struct { float m[16]; |