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
+5
View File
@@ -155,3 +155,8 @@ destroy :: proc(t: ^Thread) {
t.unix_thread = {};
free(t);
}
yield :: proc() {
unix.pthread_yield()
}