File tree 8 files changed +16
-0
lines changed
example_effects/superpowered
example_guitardistortion/superpowered
example_timestretching/superpowered
8 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -123,6 +123,7 @@ class SuperpoweredGlue {
123
123
let strings = [ ] ;
124
124
for ( let index = arguments . length - 1 ; index > 0 ; index -- ) {
125
125
if ( arguments [ index ] . array != undefined ) arguments [ index ] = arguments [ index ] . array . byteOffset ;
126
+ else if ( arguments [ index ] . __pointer__ != undefined ) arguments [ index ] = arguments [ index ] . __pointer__ ;
126
127
else if ( typeof arguments [ index ] == 'string' ) {
127
128
arguments [ index ] = this . __glue__ . toWASMString ( arguments [ index ] ) ;
128
129
strings . push ( arguments [ index ] ) ;
@@ -145,6 +146,7 @@ class SuperpoweredGlue {
145
146
let strings = [ ] ;
146
147
for ( let index = arguments . length - 1 ; index >= 0 ; index -- ) {
147
148
if ( arguments [ index ] . array != undefined ) arguments [ index ] = arguments [ index ] . array . byteOffset ;
149
+ else if ( arguments [ index ] . __pointer__ != undefined ) arguments [ index ] = arguments [ index ] . __pointer__ ;
148
150
else if ( typeof arguments [ index ] == 'string' ) {
149
151
arguments [ index ] = this . glue . toWASMString ( arguments [ index ] ) ;
150
152
strings . push ( arguments [ index ] ) ;
Original file line number Diff line number Diff line change @@ -123,6 +123,7 @@ class SuperpoweredGlue {
123
123
let strings = [ ] ;
124
124
for ( let index = arguments . length - 1 ; index > 0 ; index -- ) {
125
125
if ( arguments [ index ] . array != undefined ) arguments [ index ] = arguments [ index ] . array . byteOffset ;
126
+ else if ( arguments [ index ] . __pointer__ != undefined ) arguments [ index ] = arguments [ index ] . __pointer__ ;
126
127
else if ( typeof arguments [ index ] == 'string' ) {
127
128
arguments [ index ] = this . __glue__ . toWASMString ( arguments [ index ] ) ;
128
129
strings . push ( arguments [ index ] ) ;
@@ -145,6 +146,7 @@ class SuperpoweredGlue {
145
146
let strings = [ ] ;
146
147
for ( let index = arguments . length - 1 ; index >= 0 ; index -- ) {
147
148
if ( arguments [ index ] . array != undefined ) arguments [ index ] = arguments [ index ] . array . byteOffset ;
149
+ else if ( arguments [ index ] . __pointer__ != undefined ) arguments [ index ] = arguments [ index ] . __pointer__ ;
148
150
else if ( typeof arguments [ index ] == 'string' ) {
149
151
arguments [ index ] = this . glue . toWASMString ( arguments [ index ] ) ;
150
152
strings . push ( arguments [ index ] ) ;
Original file line number Diff line number Diff line change @@ -123,6 +123,7 @@ class SuperpoweredGlue {
123
123
let strings = [ ] ;
124
124
for ( let index = arguments . length - 1 ; index > 0 ; index -- ) {
125
125
if ( arguments [ index ] . array != undefined ) arguments [ index ] = arguments [ index ] . array . byteOffset ;
126
+ else if ( arguments [ index ] . __pointer__ != undefined ) arguments [ index ] = arguments [ index ] . __pointer__ ;
126
127
else if ( typeof arguments [ index ] == 'string' ) {
127
128
arguments [ index ] = this . __glue__ . toWASMString ( arguments [ index ] ) ;
128
129
strings . push ( arguments [ index ] ) ;
@@ -145,6 +146,7 @@ class SuperpoweredGlue {
145
146
let strings = [ ] ;
146
147
for ( let index = arguments . length - 1 ; index >= 0 ; index -- ) {
147
148
if ( arguments [ index ] . array != undefined ) arguments [ index ] = arguments [ index ] . array . byteOffset ;
149
+ else if ( arguments [ index ] . __pointer__ != undefined ) arguments [ index ] = arguments [ index ] . __pointer__ ;
148
150
else if ( typeof arguments [ index ] == 'string' ) {
149
151
arguments [ index ] = this . glue . toWASMString ( arguments [ index ] ) ;
150
152
strings . push ( arguments [ index ] ) ;
Original file line number Diff line number Diff line change @@ -123,6 +123,7 @@ class SuperpoweredGlue {
123
123
let strings = [ ] ;
124
124
for ( let index = arguments . length - 1 ; index > 0 ; index -- ) {
125
125
if ( arguments [ index ] . array != undefined ) arguments [ index ] = arguments [ index ] . array . byteOffset ;
126
+ else if ( arguments [ index ] . __pointer__ != undefined ) arguments [ index ] = arguments [ index ] . __pointer__ ;
126
127
else if ( typeof arguments [ index ] == 'string' ) {
127
128
arguments [ index ] = this . __glue__ . toWASMString ( arguments [ index ] ) ;
128
129
strings . push ( arguments [ index ] ) ;
@@ -145,6 +146,7 @@ class SuperpoweredGlue {
145
146
let strings = [ ] ;
146
147
for ( let index = arguments . length - 1 ; index >= 0 ; index -- ) {
147
148
if ( arguments [ index ] . array != undefined ) arguments [ index ] = arguments [ index ] . array . byteOffset ;
149
+ else if ( arguments [ index ] . __pointer__ != undefined ) arguments [ index ] = arguments [ index ] . __pointer__ ;
148
150
else if ( typeof arguments [ index ] == 'string' ) {
149
151
arguments [ index ] = this . glue . toWASMString ( arguments [ index ] ) ;
150
152
strings . push ( arguments [ index ] ) ;
Original file line number Diff line number Diff line change @@ -123,6 +123,7 @@ class SuperpoweredGlue {
123
123
let strings = [ ] ;
124
124
for ( let index = arguments . length - 1 ; index > 0 ; index -- ) {
125
125
if ( arguments [ index ] . array != undefined ) arguments [ index ] = arguments [ index ] . array . byteOffset ;
126
+ else if ( arguments [ index ] . __pointer__ != undefined ) arguments [ index ] = arguments [ index ] . __pointer__ ;
126
127
else if ( typeof arguments [ index ] == 'string' ) {
127
128
arguments [ index ] = this . __glue__ . toWASMString ( arguments [ index ] ) ;
128
129
strings . push ( arguments [ index ] ) ;
@@ -145,6 +146,7 @@ class SuperpoweredGlue {
145
146
let strings = [ ] ;
146
147
for ( let index = arguments . length - 1 ; index >= 0 ; index -- ) {
147
148
if ( arguments [ index ] . array != undefined ) arguments [ index ] = arguments [ index ] . array . byteOffset ;
149
+ else if ( arguments [ index ] . __pointer__ != undefined ) arguments [ index ] = arguments [ index ] . __pointer__ ;
148
150
else if ( typeof arguments [ index ] == 'string' ) {
149
151
arguments [ index ] = this . glue . toWASMString ( arguments [ index ] ) ;
150
152
strings . push ( arguments [ index ] ) ;
Original file line number Diff line number Diff line change @@ -123,6 +123,7 @@ class SuperpoweredGlue {
123
123
let strings = [ ] ;
124
124
for ( let index = arguments . length - 1 ; index > 0 ; index -- ) {
125
125
if ( arguments [ index ] . array != undefined ) arguments [ index ] = arguments [ index ] . array . byteOffset ;
126
+ else if ( arguments [ index ] . __pointer__ != undefined ) arguments [ index ] = arguments [ index ] . __pointer__ ;
126
127
else if ( typeof arguments [ index ] == 'string' ) {
127
128
arguments [ index ] = this . __glue__ . toWASMString ( arguments [ index ] ) ;
128
129
strings . push ( arguments [ index ] ) ;
@@ -145,6 +146,7 @@ class SuperpoweredGlue {
145
146
let strings = [ ] ;
146
147
for ( let index = arguments . length - 1 ; index >= 0 ; index -- ) {
147
148
if ( arguments [ index ] . array != undefined ) arguments [ index ] = arguments [ index ] . array . byteOffset ;
149
+ else if ( arguments [ index ] . __pointer__ != undefined ) arguments [ index ] = arguments [ index ] . __pointer__ ;
148
150
else if ( typeof arguments [ index ] == 'string' ) {
149
151
arguments [ index ] = this . glue . toWASMString ( arguments [ index ] ) ;
150
152
strings . push ( arguments [ index ] ) ;
Original file line number Diff line number Diff line change @@ -123,6 +123,7 @@ class SuperpoweredGlue {
123
123
let strings = [ ] ;
124
124
for ( let index = arguments . length - 1 ; index > 0 ; index -- ) {
125
125
if ( arguments [ index ] . array != undefined ) arguments [ index ] = arguments [ index ] . array . byteOffset ;
126
+ else if ( arguments [ index ] . __pointer__ != undefined ) arguments [ index ] = arguments [ index ] . __pointer__ ;
126
127
else if ( typeof arguments [ index ] == 'string' ) {
127
128
arguments [ index ] = this . __glue__ . toWASMString ( arguments [ index ] ) ;
128
129
strings . push ( arguments [ index ] ) ;
@@ -145,6 +146,7 @@ class SuperpoweredGlue {
145
146
let strings = [ ] ;
146
147
for ( let index = arguments . length - 1 ; index >= 0 ; index -- ) {
147
148
if ( arguments [ index ] . array != undefined ) arguments [ index ] = arguments [ index ] . array . byteOffset ;
149
+ else if ( arguments [ index ] . __pointer__ != undefined ) arguments [ index ] = arguments [ index ] . __pointer__ ;
148
150
else if ( typeof arguments [ index ] == 'string' ) {
149
151
arguments [ index ] = this . glue . toWASMString ( arguments [ index ] ) ;
150
152
strings . push ( arguments [ index ] ) ;
Original file line number Diff line number Diff line change @@ -123,6 +123,7 @@ class SuperpoweredGlue {
123
123
let strings = [ ] ;
124
124
for ( let index = arguments . length - 1 ; index > 0 ; index -- ) {
125
125
if ( arguments [ index ] . array != undefined ) arguments [ index ] = arguments [ index ] . array . byteOffset ;
126
+ else if ( arguments [ index ] . __pointer__ != undefined ) arguments [ index ] = arguments [ index ] . __pointer__ ;
126
127
else if ( typeof arguments [ index ] == 'string' ) {
127
128
arguments [ index ] = this . __glue__ . toWASMString ( arguments [ index ] ) ;
128
129
strings . push ( arguments [ index ] ) ;
@@ -145,6 +146,7 @@ class SuperpoweredGlue {
145
146
let strings = [ ] ;
146
147
for ( let index = arguments . length - 1 ; index >= 0 ; index -- ) {
147
148
if ( arguments [ index ] . array != undefined ) arguments [ index ] = arguments [ index ] . array . byteOffset ;
149
+ else if ( arguments [ index ] . __pointer__ != undefined ) arguments [ index ] = arguments [ index ] . __pointer__ ;
148
150
else if ( typeof arguments [ index ] == 'string' ) {
149
151
arguments [ index ] = this . glue . toWASMString ( arguments [ index ] ) ;
150
152
strings . push ( arguments [ index ] ) ;
You can’t perform that action at this time.
0 commit comments