HF
This commit is contained in:
@ -28,7 +28,7 @@ namespace ia::iam
|
||||
_value_type Data[2];
|
||||
};
|
||||
struct {
|
||||
_value_type X{}, Y{};
|
||||
_value_type X, Y;
|
||||
};
|
||||
struct {
|
||||
_value_type U, V;
|
||||
@ -85,7 +85,7 @@ namespace ia::iam
|
||||
_value_type Data[3];
|
||||
};
|
||||
struct {
|
||||
_value_type X{}, Y{}, Z{};
|
||||
_value_type X, Y, Z;
|
||||
};
|
||||
struct {
|
||||
_value_type R, G, B;
|
||||
@ -142,7 +142,7 @@ namespace ia::iam
|
||||
_value_type Data[4];
|
||||
};
|
||||
struct {
|
||||
_value_type X{}, Y{}, Z{}, W{};
|
||||
_value_type X, Y, Z, W;
|
||||
};
|
||||
struct {
|
||||
_value_type R, G, B, A;
|
||||
|
||||
@ -1,8 +1,6 @@
|
||||
add_executable(IAMathTest imp/cpp/Main.cpp)
|
||||
|
||||
target_compile_options(IAMathTest PRIVATE
|
||||
"-g"
|
||||
"-O0"
|
||||
"-D__IA_DEBUG=1"
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user