Add thread.Pool with example in demo.odin; Update linalg to support handness changes for projection matrices

This commit is contained in:
gingerBill
2020-01-02 15:07:12 +00:00
parent 16a7c55334
commit 3bd00fd6b7
8 changed files with 244 additions and 43 deletions
+3 -3
View File
@@ -1,6 +1,6 @@
package thread;
package thread
import "core:runtime";
import "core:runtime"
Thread_Proc :: #type proc(^Thread);
@@ -12,4 +12,4 @@ Thread :: struct {
init_context: runtime.Context,
use_init_context: bool,
}
}