Enable WebGL2 in web export, start fixing build
Will not yet compile
This commit is contained in:
parent
7b059965e8
commit
e06edc67c0
13 changed files with 40 additions and 62 deletions
|
|
@ -44,6 +44,14 @@ uint32_t atomic_conditional_increment( register uint32_t * pw ) {
|
|||
return *pw;
|
||||
}
|
||||
|
||||
uint32_t atomic_increment( register uint32_t * pw ) {
|
||||
|
||||
(*pw)++;
|
||||
|
||||
return *pw;
|
||||
|
||||
}
|
||||
|
||||
uint32_t atomic_decrement( register uint32_t * pw ) {
|
||||
|
||||
(*pw)--;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue