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
+8 -7
View File
@@ -178,14 +178,15 @@ enum ProcTag {
enum ProcCallingConvention {
ProcCC_Invalid = 0,
ProcCC_Odin,
ProcCC_Contextless,
ProcCC_Pure,
ProcCC_CDecl,
ProcCC_StdCall,
ProcCC_FastCall,
ProcCC_Odin = 1,
ProcCC_Contextless = 2,
ProcCC_Pure = 3,
ProcCC_CDecl = 4,
ProcCC_StdCall = 5,
ProcCC_FastCall = 6,
ProcCC_None,
ProcCC_None = 7,
ProcCC_PureNone = 8,
ProcCC_MAX,