File tree Expand file tree Collapse file tree 3 files changed +27685
-29189
lines changed
Expand file tree Collapse file tree 3 files changed +27685
-29189
lines changed Original file line number Diff line number Diff line change @@ -963,7 +963,7 @@ class Benchmark {
963963 this . preloads = Object . entries ( this . plan . preload ?? { } ) ;
964964 }
965965
966- scoreIdentifiers ( ) {
966+ scoreIdentifiers ( ) {
967967 const ids = Object . keys ( this . allScores ( ) ) . map ( name => this . scoreIdentifier ( name ) ) ;
968968 return ids ;
969969 }
@@ -2257,7 +2257,7 @@ let BENCHMARKS = [
22572257 "./WSL/WTrapError.js" ,
22582258 "./WSL/WTypeError.js" ,
22592259 "./WSL/WhileLoop.js" ,
2260- "./WSL/WrapChecker.js" ,
2260+ "./WSL/WrapChecker.js" ,
22612261 "./WSL/Test.js" ,
22622262 ] ,
22632263 tags : [ "Default" , "WSL" ] ,
@@ -2395,7 +2395,7 @@ for (const benchmark of BENCHMARKS) {
23952395 throw new Error ( `Duplicate benchmark with name "${ name } }"` ) ;
23962396 else
23972397 benchmarksByName . set ( name , benchmark ) ;
2398-
2398+
23992399 for ( const tag of benchmark . tags ) {
24002400 if ( benchmarksByTag . has ( tag ) )
24012401 benchmarksByTag . get ( tag ) . push ( benchmark ) ;
Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ const canvas = {
5353 createTexture ( ) { } ,
5454 bindTexture ( ) { } ,
5555 texImage2D ( ) { } ,
56+ texImage3D ( ) { } ,
5657 texParameteri ( ) { } ,
5758 uniform1i ( ) { } ,
5859 uniform1f ( ) { } ,
@@ -71,6 +72,7 @@ const canvas = {
7172 cullFace ( ) { } ,
7273 getContextAttributes ( ) { } ,
7374 createBuffer ( ) { } ,
75+ createFramebuffer ( ) { } ,
7476 bindBuffer ( ) { } ,
7577 bufferData ( ) { } ,
7678 createProgram ( ) { } ,
@@ -88,6 +90,9 @@ const canvas = {
8890 getProgramParameter ( ) { } ,
8991 deleteShader ( ) { } ,
9092 colorMask ( ) { } ,
93+ stencilMask ( ) { } ,
94+ createVertexArray ( ) { } ,
95+ bindVertexArray ( ) { } ,
9196 drawElements ( ) { } ,
9297 lineWidth ( ) { } ,
9398 drawArrays ( ) { } ,
You can’t perform that action at this time.
0 commit comments