summaryrefslogtreecommitdiffstats
path: root/libs/rs/rsUtils.h
diff options
context:
space:
mode:
authorJason Sams <rjsams@android.com>2010-06-09 14:26:16 -0700
committerJason Sams <rjsams@android.com>2010-06-09 14:26:16 -0700
commit96d719c91708fda5abc0442fcf6d275584d2cad6 (patch)
tree411ffcd541428e2faa0e16cbc02ccee67a2a4fb3 /libs/rs/rsUtils.h
parentcbe4a73fef42602f68c698462ecc2e4b358d91b6 (diff)
downloadframeworks_base-96d719c91708fda5abc0442fcf6d275584d2cad6.zip
frameworks_base-96d719c91708fda5abc0442fcf6d275584d2cad6.tar.gz
frameworks_base-96d719c91708fda5abc0442fcf6d275584d2cad6.tar.bz2
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
Diffstat (limited to 'libs/rs/rsUtils.h')
-rw-r--r--libs/rs/rsUtils.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/libs/rs/rsUtils.h b/libs/rs/rsUtils.h
index b0eb520..0a37a5b 100644
--- a/libs/rs/rsUtils.h
+++ b/libs/rs/rsUtils.h
@@ -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];