Update math and math/linalg; add "pure_none" calling convention

This commit is contained in:
gingerBill
2020-09-10 15:00:19 +01:00
parent 7e625f6ee7
commit c1149dbdee
14 changed files with 1422 additions and 360 deletions
+7 -3
View File
@@ -29,9 +29,13 @@ Calling_Convention :: enum u8 {
Invalid = 0,
Odin = 1,
Contextless = 2,
C = 3,
Std = 4,
Fast = 5,
Pure = 3,
CDecl = 4,
Std_Call = 5,
Fast_Call = 6,
None = 7,
Pure_None = 8,
}
Type_Info_Enum_Value :: distinct i64;