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

Commit d4aa7d22 authored by Stephen Hines's avatar Stephen Hines
Browse files

Stop using anonymous structs in RS.

Change-Id: I90344683939f2934f841031fd5339dbe91cc9e05
parent 02047f7e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;

+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@

#include "shared.rsh"

typedef struct {
typedef struct float3Struct{
    float3 arr[2];
} float3Struct;