This commit is contained in:
Isuru Samarathunga
2025-09-07 21:37:36 +05:30
parent 77314b62b7
commit 450d6b4ecc
2 changed files with 3 additions and 5 deletions

View File

@ -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;

View File

@ -1,8 +1,6 @@
add_executable(IAMathTest imp/cpp/Main.cpp)
target_compile_options(IAMathTest PRIVATE
"-g"
"-O0"
"-D__IA_DEBUG=1"
)