Stop using anonymous structs in RS.

Change-Id: I90344683939f2934f841031fd5339dbe91cc9e05
This commit is contained in:
Stephen Hines
2010-12-03 16:24:25 -08:00
parent 02047f7e88
commit d4aa7d22f8
2 changed files with 2 additions and 2 deletions

View File

@@ -21,7 +21,7 @@
#define TRANSFORM_ROTATE 2
#define TRANSFORM_SCALE 3
typedef struct __attribute__((packed, aligned(4))) {
typedef struct __attribute__((packed, aligned(4))) SgTransform {
rs_matrix4x4 globalMat;
rs_matrix4x4 localMat;

View File

@@ -14,7 +14,7 @@
#include "shared.rsh"
typedef struct {
typedef struct float3Struct{
float3 arr[2];
} float3Struct;