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