-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
28
demos/external/sources/glad/gl/funcs.d
vendored
28
demos/external/sources/glad/gl/funcs.d
vendored
|
|
@ -2,20 +2,20 @@ module glad.gl.funcs;
|
|||
|
||||
|
||||
private import glad.gl.types;
|
||||
bool GL_VERSION_1_0;
|
||||
bool GL_VERSION_1_1;
|
||||
bool GL_VERSION_1_2;
|
||||
bool GL_VERSION_1_3;
|
||||
bool GL_VERSION_1_4;
|
||||
bool GL_VERSION_1_5;
|
||||
bool GL_VERSION_2_0;
|
||||
bool GL_VERSION_2_1;
|
||||
bool GL_VERSION_3_0;
|
||||
bool GL_VERSION_3_1;
|
||||
bool GL_VERSION_3_2;
|
||||
bool GL_VERSION_3_3;
|
||||
bool GL_ES_VERSION_2_0;
|
||||
bool GL_ES_VERSION_3_0;
|
||||
__gshared bool GL_VERSION_1_0;
|
||||
__gshared bool GL_VERSION_1_1;
|
||||
__gshared bool GL_VERSION_1_2;
|
||||
__gshared bool GL_VERSION_1_3;
|
||||
__gshared bool GL_VERSION_1_4;
|
||||
__gshared bool GL_VERSION_1_5;
|
||||
__gshared bool GL_VERSION_2_0;
|
||||
__gshared bool GL_VERSION_2_1;
|
||||
__gshared bool GL_VERSION_3_0;
|
||||
__gshared bool GL_VERSION_3_1;
|
||||
__gshared bool GL_VERSION_3_2;
|
||||
__gshared bool GL_VERSION_3_3;
|
||||
__gshared bool GL_ES_VERSION_2_0;
|
||||
__gshared bool GL_ES_VERSION_3_0;
|
||||
nothrow @nogc extern(System) {
|
||||
alias fp_glCullFace = void function(GLenum);
|
||||
alias fp_glFrontFace = void function(GLenum);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue