-updated tests:
*updated build scripts *removed tls variables from code (needed to support WebAssembly) *some mmutils tweaks *some fixes *pthread TLS thread ID implementation -added Atomic file (reimplementation of atomics templates for emscripten) -added emscripten support to ecs.std
This commit is contained in:
parent
46de0f6adb
commit
946fbf2934
18 changed files with 443 additions and 229 deletions
2
demos/external/sources/glad/gl/loader.d
vendored
2
demos/external/sources/glad/gl/loader.d
vendored
|
|
@ -109,7 +109,7 @@ bool gladLoadGL() {
|
|||
return status;
|
||||
}
|
||||
|
||||
static struct GLVersion { static int major = 0; static int minor = 0; }
|
||||
__gshared struct GLVersion { __gshared int major = 0; __gshared int minor = 0; }
|
||||
private extern(C) char* strstr(const(char)*, const(char)*) @nogc;
|
||||
private extern(C) int strcmp(const(char)*, const(char)*) @nogc;
|
||||
private extern(C) int strncmp(const(char)*, const(char)*, size_t) @nogc;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue