summaryrefslogtreecommitdiffstats
path: root/libs/rs
diff options
context:
space:
mode:
authorAlex Sakhartchouk <alexst@google.com>2010-08-11 10:04:21 -0700
committerAlex Sakhartchouk <alexst@google.com>2010-08-11 10:04:21 -0700
commita919112f4a68c5a929c68b0838011cdd55f8dca7 (patch)
tree999ce810b6c138309c70ee7aeb2adc298816b59b /libs/rs
parent0dde1f89a434fef356e12fbbbc3a322dfae3bb0d (diff)
downloadframeworks_base-a919112f4a68c5a929c68b0838011cdd55f8dca7.zip
frameworks_base-a919112f4a68c5a929c68b0838011cdd55f8dca7.tar.gz
frameworks_base-a919112f4a68c5a929c68b0838011cdd55f8dca7.tar.bz2
Renaming stucts back.
Change-Id: Ic9315c7fb2e03d0e88a07ae2361836d35106ab4b
Diffstat (limited to 'libs/rs')
-rw-r--r--libs/rs/scriptc/rs_types.rsh8
1 files changed, 4 insertions, 4 deletions
diff --git a/libs/rs/scriptc/rs_types.rsh b/libs/rs/scriptc/rs_types.rsh
index 489b034..ddae7eb 100644
--- a/libs/rs/scriptc/rs_types.rsh
+++ b/libs/rs/scriptc/rs_types.rsh
@@ -55,19 +55,19 @@ typedef int int3 __attribute__((ext_vector_type(3)));
typedef int int4 __attribute__((ext_vector_type(4)));
-typedef struct rs_matrix4x4_s {
+typedef struct {
float m[16];
} rs_matrix4x4;
-typedef struct rs_matrix3x3_s {
+typedef struct {
float m[9];
} rs_matrix3x3;
-typedef struct rs_matrix2x2_s {
+typedef struct {
float m[4];
} rs_matrix2x2;
-typedef struct rs_quaternion_s {
+typedef struct {
float w, x, y, z;
} rs_quaternion;