change float4 to double4

This commit is contained in:
Nick Fisher
2024-09-20 14:01:02 +08:00
parent 3cf4790148
commit 204f8204f1

View File

@@ -75,11 +75,11 @@ extern "C"
typedef struct TMaterialKey TMaterialKey;
typedef struct {
float x;
float y;
float z;
float w;
} float4;
double x;
double y;
double z;
double w;
} double4;
typedef struct {
double col1[4];