1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37
   38
   39
   40
   41
   42
   43
   44
   45
   46
   47
   48
   49
   50
   51
   52
   53
   54
   55
   56
   57
   58
   59
   60
   61
   62
   63
   64
   65
   66
   67
   68
   69
   70
   71
   72
   73
   74
   75
   76
   77
   78
   79
   80
   81
   82
   83
   84
   85
   86
   87
   88
   89
   90
   91
   92
   93
   94
   95
   96
   97
   98
   99
  100
  101
  102
  103
  104
  105
  106
  107
  108
  109
  110
  111
  112
  113
  114
  115
  116
  117
  118
  119
  120
  121
  122
  123
  124
  125
  126
  127
  128
  129
  130
  131
  132
  133
  134
  135
  136
  137
  138
  139
  140
  141
  142
  143
  144
  145
  146
  147
  148
  149
  150
  151
  152
  153
  154
  155
  156
  157
  158
  159
  160
  161
  162
  163
  164
  165
  166
  167
  168
  169
  170
  171
  172
  173
  174
  175
  176
  177
  178
  179
  180
  181
  182
  183
  184
  185
  186
  187
  188
  189
  190
  191
  192
  193
  194
  195
  196
  197
  198
  199
  200
  201
  202
  203
  204
  205
  206
  207
  208
  209
  210
  211
  212
  213
  214
  215
  216
  217
  218
  219
  220
  221
  222
  223
  224
  225
  226
  227
  228
  229
  230
  231
  232
  233
  234
  235
  236
  237
  238
  239
  240
  241
  242
  243
  244
  245
  246
  247
  248
  249
  250
  251
  252
  253
  254
  255
  256
  257
  258
  259
  260
  261
  262
  263
  264
  265
  266
  267
  268
  269
  270
  271
  272
  273
  274
  275
  276
  277
  278
  279
  280
  281
  282
  283
  284
  285
  286
  287
  288
  289
  290
  291
  292
  293
  294
  295
  296
  297
  298
  299
  300
  301
  302
  303
  304
  305
  306
  307
  308
  309
  310
  311
  312
  313
  314
  315
  316
  317
  318
  319
  320
  321
  322
  323
  324
  325
  326
  327
  328
  329
  330
  331
  332
  333
  334
  335
  336
  337
  338
  339
  340
  341
  342
  343
  344
  345
  346
  347
  348
  349
  350
  351
  352
  353
  354
  355
  356
  357
  358
  359
  360
  361
  362
  363
  364
  365
  366
  367
  368
  369
  370
  371
  372
  373
  374
  375
  376
  377
  378
  379
  380
  381
  382
  383
  384
  385
  386
  387
  388
  389
  390
  391
  392
  393
  394
  395
  396
  397
  398
  399
  400
  401
  402
  403
  404
  405
  406
  407
  408
  409
  410
  411
  412
  413
  414
  415
  416
  417
  418
  419
  420
  421
  422
  423
  424
  425
  426
  427
  428
  429
  430
  431
  432
  433
  434
  435
  436
  437
  438
  439
  440
  441
  442
  443
  444
  445
  446
  447
  448
  449
  450
  451
  452
  453
  454
  455
  456
  457
  458
  459
  460
  461
  462
  463
  464
  465
  466
  467
  468
  469
  470
  471
  472
  473
  474
  475
  476
  477
  478
  479
  480
  481
  482
  483
  484
  485
  486
  487
  488
  489
  490
  491
  492
  493
  494
  495
  496
  497
  498
  499
  500
  501
  502
  503
  504
  505
  506
  507
  508
  509
  510
  511
  512
  513
  514
  515
  516
  517
  518
  519
  520
  521
  522
  523
  524
  525
  526
  527
  528
  529
  530
  531
  532
  533
  534
  535
  536
  537
  538
  539
  540
  541
  542
  543
  544
  545
  546
  547
  548
  549
  550
  551
  552
  553
  554
  555
  556
  557
  558
  559
  560
  561
  562
  563
  564
  565
  566
  567
  568
  569
  570
  571
  572
  573
  574
  575
  576
  577
  578
  579
  580
  581
  582
  583
  584
  585
  586
  587
  588
  589
  590
  591
  592
  593
  594
  595
  596
  597
  598
  599
  600
  601
  602
  603
  604
  605
  606
  607
  608
  609
  610
  611
  612
  613
  614
  615
  616
  617
  618
  619
  620
  621
  622
  623
  624
  625
  626
  627
  628
  629
  630
  631
  632
  633
  634
  635
  636
  637
  638
  639
  640
  641
  642
  643
  644
  645
  646
  647
  648
  649
  650
  651
  652
  653
  654
  655
  656
  657
  658
  659
  660
  661
  662
  663
  664
  665
  666
  667
  668
  669
  670
  671
  672
  673
  674
  675
  676
  677
  678
  679
  680
  681
  682
  683
  684
  685
  686
  687
  688
  689
  690
  691
  692
  693
  694
  695
  696
  697
  698
  699
  700
  701
  702
  703
  704
  705
  706
  707
  708
  709
  710
  711
  712
  713
  714
  715
  716
  717
  718
  719
  720
  721
  722
  723
  724
  725
  726
  727
  728
  729
  730
  731
  732
  733
  734
  735
  736
  737
  738
  739
  740
  741
  742
  743
  744
  745
  746
  747
  748
  749
  750
  751
  752
  753
  754
  755
  756
  757
  758
  759
  760
  761
  762
  763
  764
  765
  766
  767
  768
  769
  770
  771
  772
  773
  774
  775
  776
  777
  778
  779
  780
  781
  782
  783
  784
  785
  786
  787
  788
  789
  790
  791
  792
  793
  794
  795
  796
  797
  798
  799
  800
  801
  802
  803
  804
  805
  806
  807
  808
  809
  810
  811
  812
  813
  814
  815
  816
  817
  818
  819
  820
  821
  822
  823
  824
  825
  826
  827
  828
  829
  830
  831
  832
  833
  834
  835
  836
  837
  838
  839
  840
  841
  842
  843
  844
  845
  846
  847
  848
  849
  850
  851
  852
  853
  854
  855
  856
  857
  858
  859
  860
  861
  862
  863
  864
  865
  866
  867
  868
  869
  870
  871
  872
  873
  874
  875
  876
  877
  878
  879
  880
  881
  882
  883
  884
  885
  886
  887
  888
  889
  890
  891
  892
  893
  894
  895
  896
  897
  898
  899
  900
  901
  902
  903
  904
  905
  906
  907
  908
  909
  910
  911
  912
  913
  914
  915
  916
  917
  918
  919
  920
  921
  922
  923
  924
  925
  926
  927
  928
  929
  930
  931
  932
  933
  934
  935
  936
  937
  938
  939
  940
  941
  942
  943
  944
  945
  946
  947
  948
  949
  950
  951
  952
  953
  954
  955
  956
  957
  958
  959
  960
  961
  962
  963
  964
  965
  966
  967
  968
  969
  970
  971
  972
  973
  974
  975
  976
  977
  978
  979
  980
  981
  982
  983
  984
  985
  986
  987
  988
  989
  990
  991
  992
  993
  994
  995
  996
  997
  998
  999
 1000

content / test / data / gpu / webgl1_conformance_linux_runtimes.json [blame]

{
  "times": {
    "WebglExtension_ANGLE_instanced_arrays": 0.2969,
    "WebglExtension_EXT_blend_minmax": 0.2423,
    "WebglExtension_EXT_color_buffer_half_float": 0.4286,
    "WebglExtension_EXT_disjoint_timer_query": 0.2248,
    "WebglExtension_EXT_float_blend": 0.4709,
    "WebglExtension_EXT_frag_depth": 0.4266,
    "WebglExtension_EXT_sRGB": 0.3275,
    "WebglExtension_EXT_shader_texture_lod": 0.3885,
    "WebglExtension_EXT_texture_compression_bptc": 0.2136,
    "WebglExtension_EXT_texture_compression_rgtc": 0.397,
    "WebglExtension_EXT_texture_filter_anisotropic": 0.4553,
    "WebglExtension_KHR_parallel_shader_compile": 0.1382,
    "WebglExtension_OES_element_index_uint": 0.2133,
    "WebglExtension_OES_fbo_render_mipmap": 0.308,
    "WebglExtension_OES_standard_derivatives": 0.2101,
    "WebglExtension_OES_texture_float": 0.1573,
    "WebglExtension_OES_texture_float_linear": 0.1539,
    "WebglExtension_OES_texture_half_float": 0.1569,
    "WebglExtension_OES_texture_half_float_linear": 0.3391,
    "WebglExtension_OES_vertex_array_object": 0.1392,
    "WebglExtension_TestCoverage": 0.161,
    "WebglExtension_WEBGL_color_buffer_float": 0.1449,
    "WebglExtension_WEBGL_compressed_texture_astc": 0,
    "WebglExtension_WEBGL_compressed_texture_etc": 0,
    "WebglExtension_WEBGL_compressed_texture_etc1": 0,
    "WebglExtension_WEBGL_compressed_texture_pvrtc": 0,
    "WebglExtension_WEBGL_compressed_texture_s3tc": 0.1472,
    "WebglExtension_WEBGL_compressed_texture_s3tc_srgb": 0,
    "WebglExtension_WEBGL_debug_renderer_info": 0.1383,
    "WebglExtension_WEBGL_debug_shaders": 0.1471,
    "WebglExtension_WEBGL_depth_texture": 0.1371,
    "WebglExtension_WEBGL_draw_buffers": 0.1361,
    "WebglExtension_WEBGL_lose_context": 0.1321,
    "WebglExtension_WEBGL_multi_draw": 0.1293,
    "WebglExtension_WEBGL_video_texture": 0.1494,
    "WebglExtension_WEBGL_webcodecs_video_frame": 0,
    "conformance/attribs/gl-bindAttribLocation-aliasing.html": 0.257,
    "conformance/attribs/gl-bindAttribLocation-matrix.html": 0.3246,
    "conformance/attribs/gl-bindAttribLocation-nonexistent-attribute.html": 0.1676,
    "conformance/attribs/gl-bindAttribLocation-repeated.html": 0.1678,
    "conformance/attribs/gl-disabled-vertex-attrib-update.html": 0.1547,
    "conformance/attribs/gl-disabled-vertex-attrib.html": 0.4619,
    "conformance/attribs/gl-enable-vertex-attrib.html": 0.1745,
    "conformance/attribs/gl-matrix-attributes.html": 0.437,
    "conformance/attribs/gl-vertex-attrib-context-switch.html": 0.5083,
    "conformance/attribs/gl-vertex-attrib-render.html": 0.2149,
    "conformance/attribs/gl-vertex-attrib-unconsumed-out-of-bounds.html": 0.3087,
    "conformance/attribs/gl-vertex-attrib-zero-issues.html": 0.1553,
    "conformance/attribs/gl-vertex-attrib.html": 0.4083,
    "conformance/attribs/gl-vertexattribpointer-offsets.html": 0.3292,
    "conformance/attribs/gl-vertexattribpointer.html": 0.2205,
    "conformance/buffers/buffer-bind-test.html": 0.2066,
    "conformance/buffers/buffer-data-and-buffer-sub-data.html": 0.1745,
    "conformance/buffers/buffer-data-array-buffer-delete.html": 2.0699,
    "conformance/buffers/buffer-data-dynamic-delay.html": 0.3652,
    "conformance/buffers/buffer-uninitialized.html": 0.2588,
    "conformance/buffers/element-array-buffer-delete-recreate.html": 0.1729,
    "conformance/buffers/index-validation-copies-indices.html": 0.0738,
    "conformance/buffers/index-validation-crash-with-buffer-sub-data.html": 0.0536,
    "conformance/buffers/index-validation-large-buffer.html": 0.2914,
    "conformance/buffers/index-validation-verifies-too-many-indices.html": 0.0769,
    "conformance/buffers/index-validation-with-resized-buffer.html": 0.2092,
    "conformance/buffers/index-validation.html": 0.2402,
    "conformance/buffers/vertex-buffer-updated-after-draw.html": 0.1201,
    "conformance/canvas/buffer-offscreen-test.html": 0.3021,
    "conformance/canvas/buffer-preserve-test.html": 0.9078,
    "conformance/canvas/canvas-test.html": 0.3847,
    "conformance/canvas/canvas-zero-size.html": 0.2243,
    "conformance/canvas/draw-static-webgl-to-multiple-canvas-test.html": 0.6828,
    "conformance/canvas/draw-webgl-to-canvas-test.html": 0.5156,
    "conformance/canvas/drawingbuffer-hd-dpi-test.html": 0.5655,
    "conformance/canvas/drawingbuffer-static-canvas-test.html": 0.2099,
    "conformance/canvas/drawingbuffer-test.html": 0.2133,
    "conformance/canvas/framebuffer-bindings-affected-by-to-data-url.html": 0.1391,
    "conformance/canvas/framebuffer-bindings-unaffected-on-resize.html": 0.1129,
    "conformance/canvas/rapid-resizing.html": 2.3895,
    "conformance/canvas/render-after-resize-test.html": 0.2727,
    "conformance/canvas/texture-bindings-unaffected-on-resize.html": 0.261,
    "conformance/canvas/to-data-url-after-composite.html": 0.1468,
    "conformance/canvas/to-data-url-test.html": 0.6462,
    "conformance/canvas/viewport-unchanged-upon-resize.html": 0.2635,
    "conformance/canvas/webgl-to-2d-canvas.html": 0.5181,
    "conformance/context/constants-and-properties.html": 0.0576,
    "conformance/context/context-attribute-preserve-drawing-buffer-antialias.html": 0.4739,
    "conformance/context/context-attribute-preserve-drawing-buffer.html": 0.6023,
    "conformance/context/context-attributes-alpha-depth-stencil-antialias.html": 0.9401,
    "conformance/context/context-creation-and-destruction.html": 0.8262,
    "conformance/context/context-creation.html": 1.029,
    "conformance/context/context-eviction-with-garbage-collection.html": 1.3104,
    "conformance/context/context-hidden-alpha.html": 0.2306,
    "conformance/context/context-lost-restored.html": 0.3908,
    "conformance/context/context-lost.html": 0.1368,
    "conformance/context/context-no-alpha-fbo-with-alpha.html": 0.1419,
    "conformance/context/context-release-upon-reload.html": 1.8768,
    "conformance/context/context-release-with-workers.html": 1.7655,
    "conformance/context/context-size-change.html": 0.1178,
    "conformance/context/context-type-test.html": 0.1013,
    "conformance/context/deleted-object-behavior.html": 0.2997,
    "conformance/context/incorrect-context-object-behaviour.html": 0.3318,
    "conformance/context/methods.html": 0.0998,
    "conformance/context/premultiplyalpha-test.html": 0.646,
    "conformance/context/user-defined-properties-on-context.html": 0.0945,
    "conformance/context/zero-sized-canvas.html": 0.0856,
    "conformance/extensions/angle-instanced-arrays-out-of-bounds.html": 0.7766,
    "conformance/extensions/angle-instanced-arrays.html": 1.9551,
    "conformance/extensions/ext-blend-minmax.html": 0.1229,
    "conformance/extensions/ext-color-buffer-half-float.html": 0.19,
    "conformance/extensions/ext-disjoint-timer-query.html": 4.8802,
    "conformance/extensions/ext-float-blend.html": 0.1308,
    "conformance/extensions/ext-frag-depth.html": 0.4067,
    "conformance/extensions/ext-polygon-offset-clamp.html": 0.1014,
    "conformance/extensions/ext-sRGB.html": 0.3586,
    "conformance/extensions/ext-shader-texture-lod.html": 0.4349,
    "conformance/extensions/ext-texture-compression-bptc.html": 0.4398,
    "conformance/extensions/ext-texture-compression-rgtc.html": 0.1695,
    "conformance/extensions/ext-texture-filter-anisotropic.html": 0.1385,
    "conformance/extensions/get-extension.html": 0.2461,
    "conformance/extensions/khr-parallel-shader-compile.html": 10.4966,
    "conformance/extensions/oes-element-index-uint.html": 0.4032,
    "conformance/extensions/oes-fbo-render-mipmap.html": 0.1019,
    "conformance/extensions/oes-standard-derivatives.html": 0.5593,
    "conformance/extensions/oes-texture-float-linear.html": 0.3378,
    "conformance/extensions/oes-texture-float-with-canvas.html": 0.496,
    "conformance/extensions/oes-texture-float-with-image-data.html": 0.2649,
    "conformance/extensions/oes-texture-float-with-image.html": 0.2304,
    "conformance/extensions/oes-texture-float-with-video.html": 2.4586,
    "conformance/extensions/oes-texture-float.html": 0.5462,
    "conformance/extensions/oes-texture-half-float-linear.html": 0.3306,
    "conformance/extensions/oes-texture-half-float-with-canvas.html": 1.2911,
    "conformance/extensions/oes-texture-half-float-with-image-data.html": 0.3967,
    "conformance/extensions/oes-texture-half-float-with-image.html": 0.2967,
    "conformance/extensions/oes-texture-half-float-with-video.html": 2.3597,
    "conformance/extensions/oes-texture-half-float.html": 0.4352,
    "conformance/extensions/oes-vertex-array-object-bufferData.html": 0.0956,
    "conformance/extensions/oes-vertex-array-object.html": 0.3985,
    "conformance/extensions/s3tc-and-rgtc.html": 1.1299,
    "conformance/extensions/webgl-compressed-texture-astc.html": 0.2262,
    "conformance/extensions/webgl-compressed-texture-etc.html": 0.1021,
    "conformance/extensions/webgl-compressed-texture-etc1.html": 0.1129,
    "conformance/extensions/webgl-compressed-texture-pvrtc.html": 0.2666,
    "conformance/extensions/webgl-compressed-texture-s3tc-srgb.html": 0.6059,
    "conformance/extensions/webgl-compressed-texture-size-limit.html": 2.7659,
    "conformance/extensions/webgl-debug-renderer-info.html": 0.2714,
    "conformance/extensions/webgl-debug-shaders.html": 0.2949,
    "conformance/extensions/webgl-depth-texture.html": 0.3796,
    "conformance/extensions/webgl-draw-buffers-broadcast-return.html": 0.1331,
    "conformance/extensions/webgl-draw-buffers-framebuffer-unsupported.html": 0.1779,
    "conformance/extensions/webgl-draw-buffers-max-draw-buffers.html": 0.2067,
    "conformance/extensions/webgl-draw-buffers.html": 0.6658,
    "conformance/extensions/webgl-multi-draw.html": 3.3099,
    "conformance/glsl/bugs/angle-ambiguous-function-call.html": 0.1137,
    "conformance/glsl/bugs/angle-constructor-invalid-parameters.html": 0.2525,
    "conformance/glsl/bugs/angle-d3d11-compiler-error.html": 0.2577,
    "conformance/glsl/bugs/angle-dx-variable-bug.html": 0.0668,
    "conformance/glsl/bugs/array-of-struct-with-int-first-position.html": 0.1118,
    "conformance/glsl/bugs/assign-to-swizzled-twice-in-function.html": 0.0944,
    "conformance/glsl/bugs/bool-type-cast-bug-int-float.html": 0.1688,
    "conformance/glsl/bugs/character-set.html": 0.3656,
    "conformance/glsl/bugs/compare-loop-index-to-uniform.html": 0.1399,
    "conformance/glsl/bugs/complex-glsl-does-not-crash.html": 1.3271,
    "conformance/glsl/bugs/compound-assignment-type-combination.html": 0.9262,
    "conformance/glsl/bugs/conditional-discard-in-loop.html": 0.279,
    "conformance/glsl/bugs/conditional-discard-optimization.html": 0.1174,
    "conformance/glsl/bugs/conditional-texture-fetch.html": 0.2524,
    "conformance/glsl/bugs/constant-precision-qualifier.html": 0.323,
    "conformance/glsl/bugs/essl3-shaders-with-webgl1.html": 0.471,
    "conformance/glsl/bugs/floor-div-cos-should-not-truncate.html": 0.3151,
    "conformance/glsl/bugs/floored-division-accuracy.html": 0.2438,
    "conformance/glsl/bugs/fragcoord-linking-bug.html": 0.165,
    "conformance/glsl/bugs/gl-fragcoord-multisampling-bug.html": 0.4969,
    "conformance/glsl/bugs/global-invariant-does-not-leak-across-shaders.html": 0.1913,
    "conformance/glsl/bugs/if-return-and-elseif.html": 0.1452,
    "conformance/glsl/bugs/in-parameter-passed-as-inout-argument-and-global.html": 0.2944,
    "conformance/glsl/bugs/init-array-with-loop.html": 0.1815,
    "conformance/glsl/bugs/invariant-does-not-leak-across-shaders.html": 0.2864,
    "conformance/glsl/bugs/logic-inside-block-without-braces.html": 0.3793,
    "conformance/glsl/bugs/long-expressions-should-not-crash.html": 0.6861,
    "conformance/glsl/bugs/loop-if-loop-gradient.html": 0.1524,
    "conformance/glsl/bugs/modulo-arithmetic-accuracy.html": 0.1679,
    "conformance/glsl/bugs/multiplication-assignment.html": 0.1963,
    "conformance/glsl/bugs/nested-functions-should-not-crash.html": 0.2399,
    "conformance/glsl/bugs/nested-loops-with-break-and-continue.html": 0.2592,
    "conformance/glsl/bugs/nested-sequence-operator.html": 0.2335,
    "conformance/glsl/bugs/pow-of-small-constant-in-user-defined-function.html": 0.3188,
    "conformance/glsl/bugs/pow-with-constant-exponent-should-not-crash.html": 0.2219,
    "conformance/glsl/bugs/qualcomm-crash.html": 0.1745,
    "conformance/glsl/bugs/qualcomm-loop-with-continue-crash.html": 0.1618,
    "conformance/glsl/bugs/sampler-array-struct-function-arg.html": 0.3247,
    "conformance/glsl/bugs/sampler-array-using-loop-index.html": 0.2895,
    "conformance/glsl/bugs/sampler-struct-function-arg.html": 0.2648,
    "conformance/glsl/bugs/sequence-operator-evaluation-order.html": 0.2731,
    "conformance/glsl/bugs/sketchfab-lighting-shader-crash.html": 0.2346,
    "conformance/glsl/bugs/struct-constructor-highp-bug.html": 0.2385,
    "conformance/glsl/bugs/struct-with-single-member-constructor.html": 0.2043,
    "conformance/glsl/bugs/temp-expressions-should-not-crash.html": 1.1258,
    "conformance/glsl/bugs/unary-minus-operator-float-bug.html": 0.1969,
    "conformance/glsl/bugs/undefined-index-should-not-crash.html": 0.221,
    "conformance/glsl/bugs/uniforms-should-not-lose-values.html": 0.2135,
    "conformance/glsl/bugs/varying-arrays-should-not-be-reversed.html": 0.264,
    "conformance/glsl/bugs/vector-matrix-constructor-scalarization.html": 0.271,
    "conformance/glsl/bugs/vector-scalar-arithmetic-inside-loop-complex.html": 0.2212,
    "conformance/glsl/bugs/vector-scalar-arithmetic-inside-loop.html": 0.3297,
    "conformance/glsl/constructors/glsl-construct-bvec2.html": 0.6172,
    "conformance/glsl/constructors/glsl-construct-bvec3.html": 0.6888,
    "conformance/glsl/constructors/glsl-construct-bvec4.html": 0.7816,
    "conformance/glsl/constructors/glsl-construct-ivec2.html": 0.3574,
    "conformance/glsl/constructors/glsl-construct-ivec3.html": 0.5528,
    "conformance/glsl/constructors/glsl-construct-ivec4.html": 0.7221,
    "conformance/glsl/constructors/glsl-construct-mat2.html": 0.4809,
    "conformance/glsl/constructors/glsl-construct-mat3.html": 0.3891,
    "conformance/glsl/constructors/glsl-construct-mat4.html": 0.3118,
    "conformance/glsl/constructors/glsl-construct-vec-mat-corner-cases.html": 0.2786,
    "conformance/glsl/constructors/glsl-construct-vec-mat-index.html": 0.2184,
    "conformance/glsl/constructors/glsl-construct-vec2.html": 0.4702,
    "conformance/glsl/constructors/glsl-construct-vec3.html": 0.515,
    "conformance/glsl/constructors/glsl-construct-vec4.html": 0.6462,
    "conformance/glsl/functions/glsl-function-abs.html": 0.4089,
    "conformance/glsl/functions/glsl-function-acos.html": 0.3234,
    "conformance/glsl/functions/glsl-function-asin.html": 0.3963,
    "conformance/glsl/functions/glsl-function-atan-xy.html": 0.4749,
    "conformance/glsl/functions/glsl-function-atan.html": 0.3593,
    "conformance/glsl/functions/glsl-function-ceil.html": 0.4955,
    "conformance/glsl/functions/glsl-function-clamp-float.html": 0.3726,
    "conformance/glsl/functions/glsl-function-clamp-gentype.html": 0.3164,
    "conformance/glsl/functions/glsl-function-cos.html": 0.3554,
    "conformance/glsl/functions/glsl-function-cross.html": 0.257,
    "conformance/glsl/functions/glsl-function-distance.html": 0.4701,
    "conformance/glsl/functions/glsl-function-dot.html": 0.3808,
    "conformance/glsl/functions/glsl-function-faceforward.html": 0.3143,
    "conformance/glsl/functions/glsl-function-floor.html": 0.3908,
    "conformance/glsl/functions/glsl-function-fract.html": 0.4132,
    "conformance/glsl/functions/glsl-function-length.html": 0.3915,
    "conformance/glsl/functions/glsl-function-max-float.html": 0.4322,
    "conformance/glsl/functions/glsl-function-max-gentype.html": 0.4733,
    "conformance/glsl/functions/glsl-function-min-float.html": 0.4052,
    "conformance/glsl/functions/glsl-function-min-gentype.html": 0.4995,
    "conformance/glsl/functions/glsl-function-mix-float.html": 0.3799,
    "conformance/glsl/functions/glsl-function-mix-gentype.html": 0.3825,
    "conformance/glsl/functions/glsl-function-mod-float.html": 0.3931,
    "conformance/glsl/functions/glsl-function-mod-gentype.html": 0.4193,
    "conformance/glsl/functions/glsl-function-normalize.html": 0.3927,
    "conformance/glsl/functions/glsl-function-reflect.html": 0.4049,
    "conformance/glsl/functions/glsl-function-sign.html": 0.4372,
    "conformance/glsl/functions/glsl-function-sin.html": 0.3562,
    "conformance/glsl/functions/glsl-function-smoothstep-float.html": 0.3563,
    "conformance/glsl/functions/glsl-function-smoothstep-gentype.html": 0.394,
    "conformance/glsl/functions/glsl-function-step-float.html": 0.3933,
    "conformance/glsl/functions/glsl-function-step-gentype.html": 0.3917,
    "conformance/glsl/functions/glsl-function.html": 0.3971,
    "conformance/glsl/implicit/add_int_float.vert.html": 0.1795,
    "conformance/glsl/implicit/add_int_mat2.vert.html": 0.1958,
    "conformance/glsl/implicit/add_int_mat3.vert.html": 0.2163,
    "conformance/glsl/implicit/add_int_mat4.vert.html": 0.2228,
    "conformance/glsl/implicit/add_int_vec2.vert.html": 0.0972,
    "conformance/glsl/implicit/add_int_vec3.vert.html": 0.0881,
    "conformance/glsl/implicit/add_int_vec4.vert.html": 0.1102,
    "conformance/glsl/implicit/add_ivec2_vec2.vert.html": 0.1089,
    "conformance/glsl/implicit/add_ivec3_vec3.vert.html": 0.1969,
    "conformance/glsl/implicit/add_ivec4_vec4.vert.html": 0.2127,
    "conformance/glsl/implicit/assign_int_to_float.vert.html": 0.1192,
    "conformance/glsl/implicit/assign_ivec2_to_vec2.vert.html": 0.1969,
    "conformance/glsl/implicit/assign_ivec3_to_vec3.vert.html": 0.1044,
    "conformance/glsl/implicit/assign_ivec4_to_vec4.vert.html": 0.1098,
    "conformance/glsl/implicit/construct_struct.vert.html": 0.1998,
    "conformance/glsl/implicit/divide_int_float.vert.html": 0.1015,
    "conformance/glsl/implicit/divide_int_mat2.vert.html": 0.0921,
    "conformance/glsl/implicit/divide_int_mat3.vert.html": 0.0807,
    "conformance/glsl/implicit/divide_int_mat4.vert.html": 0.0996,
    "conformance/glsl/implicit/divide_int_vec2.vert.html": 0.0863,
    "conformance/glsl/implicit/divide_int_vec3.vert.html": 0.0821,
    "conformance/glsl/implicit/divide_int_vec4.vert.html": 0.1009,
    "conformance/glsl/implicit/divide_ivec2_vec2.vert.html": 0.1128,
    "conformance/glsl/implicit/divide_ivec3_vec3.vert.html": 0.1123,
    "conformance/glsl/implicit/divide_ivec4_vec4.vert.html": 0.0964,
    "conformance/glsl/implicit/equal_int_float.vert.html": 0.0952,
    "conformance/glsl/implicit/equal_ivec2_vec2.vert.html": 0.0936,
    "conformance/glsl/implicit/equal_ivec3_vec3.vert.html": 0.08,
    "conformance/glsl/implicit/equal_ivec4_vec4.vert.html": 0.1146,
    "conformance/glsl/implicit/function_int_float.vert.html": 0.1098,
    "conformance/glsl/implicit/function_ivec2_vec2.vert.html": 0.0805,
    "conformance/glsl/implicit/function_ivec3_vec3.vert.html": 0.1005,
    "conformance/glsl/implicit/function_ivec4_vec4.vert.html": 0.107,
    "conformance/glsl/implicit/greater_than.vert.html": 0.0976,
    "conformance/glsl/implicit/greater_than_equal.vert.html": 0.0966,
    "conformance/glsl/implicit/less_than.vert.html": 0.0832,
    "conformance/glsl/implicit/less_than_equal.vert.html": 0.1043,
    "conformance/glsl/implicit/multiply_int_float.vert.html": 0.0858,
    "conformance/glsl/implicit/multiply_int_mat2.vert.html": 0.1125,
    "conformance/glsl/implicit/multiply_int_mat3.vert.html": 0.0956,
    "conformance/glsl/implicit/multiply_int_mat4.vert.html": 0.094,
    "conformance/glsl/implicit/multiply_int_vec2.vert.html": 0.0883,
    "conformance/glsl/implicit/multiply_int_vec3.vert.html": 0.0961,
    "conformance/glsl/implicit/multiply_int_vec4.vert.html": 0.0863,
    "conformance/glsl/implicit/multiply_ivec2_vec2.vert.html": 0.1035,
    "conformance/glsl/implicit/multiply_ivec3_vec3.vert.html": 0.113,
    "conformance/glsl/implicit/multiply_ivec4_vec4.vert.html": 0.1069,
    "conformance/glsl/implicit/not_equal_int_float.vert.html": 0.0973,
    "conformance/glsl/implicit/not_equal_ivec2_vec2.vert.html": 0.1015,
    "conformance/glsl/implicit/not_equal_ivec3_vec3.vert.html": 0.0923,
    "conformance/glsl/implicit/not_equal_ivec4_vec4.vert.html": 0.0968,
    "conformance/glsl/implicit/subtract_int_float.vert.html": 0.0945,
    "conformance/glsl/implicit/subtract_int_mat2.vert.html": 0.113,
    "conformance/glsl/implicit/subtract_int_mat3.vert.html": 0.0955,
    "conformance/glsl/implicit/subtract_int_mat4.vert.html": 0.0982,
    "conformance/glsl/implicit/subtract_int_vec2.vert.html": 0.0811,
    "conformance/glsl/implicit/subtract_int_vec3.vert.html": 0.0944,
    "conformance/glsl/implicit/subtract_int_vec4.vert.html": 0.0975,
    "conformance/glsl/implicit/subtract_ivec2_vec2.vert.html": 0.0975,
    "conformance/glsl/implicit/subtract_ivec3_vec3.vert.html": 0.0982,
    "conformance/glsl/implicit/subtract_ivec4_vec4.vert.html": 0.0977,
    "conformance/glsl/implicit/ternary_int_float.vert.html": 0.0968,
    "conformance/glsl/implicit/ternary_ivec2_vec2.vert.html": 0.1146,
    "conformance/glsl/implicit/ternary_ivec3_vec3.vert.html": 0.084,
    "conformance/glsl/implicit/ternary_ivec4_vec4.vert.html": 0.0949,
    "conformance/glsl/literals/float_literal.vert.html": 0.1018,
    "conformance/glsl/literals/literal_precision.html": 0.0905,
    "conformance/glsl/literals/overflow_leak.vert.html": 0.1047,
    "conformance/glsl/matrices/glsl-mat3-construction.html": 0.1691,
    "conformance/glsl/matrices/glsl-mat4-to-mat3.html": 0.1671,
    "conformance/glsl/matrices/matrix-compound-multiply.html": 0.13,
    "conformance/glsl/misc/attrib-location-length-limits.html": 0.1179,
    "conformance/glsl/misc/boolean_precision.html": 0.0999,
    "conformance/glsl/misc/const-variable-initialization.html": 1.048,
    "conformance/glsl/misc/embedded-struct-definitions-forbidden.html": 0.2049,
    "conformance/glsl/misc/empty-declaration.html": 0.217,
    "conformance/glsl/misc/empty_main.vert.html": 0.2592,
    "conformance/glsl/misc/expression-list-in-declarator-initializer.html": 0.3835,
    "conformance/glsl/misc/fragcolor-fragdata-invariant.html": 0.2174,
    "conformance/glsl/misc/gl_position_unset.vert.html": 0.2096,
    "conformance/glsl/misc/global-variable-init.html": 0.1535,
    "conformance/glsl/misc/glsl-function-nodes.html": 0.5045,
    "conformance/glsl/misc/glsl-long-variable-names.html": 0.1728,
    "conformance/glsl/misc/glsl-vertex-branch.html": 0.4706,
    "conformance/glsl/misc/large-loop-compile.html": 0.7385,
    "conformance/glsl/misc/local-variable-shadowing-outer-function.html": 0.2559,
    "conformance/glsl/misc/non-ascii-comments.vert.html": 0.2005,
    "conformance/glsl/misc/non-ascii.vert.html": 0.3046,
    "conformance/glsl/misc/re-compile-re-link.html": 0.3709,
    "conformance/glsl/misc/sampler-operand.html": 0.1917,
    "conformance/glsl/misc/sequence-operator-returns-constant.html": 0.2802,
    "conformance/glsl/misc/shader-precision-format-obeyed.html": 0.3086,
    "conformance/glsl/misc/shader-struct-scope.html": 0.3254,
    "conformance/glsl/misc/shader-uniform-packing-restrictions.html": 1.9374,
    "conformance/glsl/misc/shader-varying-packing-restrictions.html": 0.2789,
    "conformance/glsl/misc/shader-with-256-character-define.html": 0.2566,
    "conformance/glsl/misc/shader-with-256-character-identifier.frag.html": 0.2458,
    "conformance/glsl/misc/shader-with-257-character-define.html": 0.1364,
    "conformance/glsl/misc/shader-with-257-character-identifier.frag.html": 0.0665,
    "conformance/glsl/misc/shader-with-_webgl-identifier.vert.html": 0.191,
    "conformance/glsl/misc/shader-with-arbitrary-indexing.frag.html": 0.312,
    "conformance/glsl/misc/shader-with-arbitrary-indexing.vert.html": 0.3098,
    "conformance/glsl/misc/shader-with-array-of-structs-containing-arrays.html": 0.2616,
    "conformance/glsl/misc/shader-with-array-of-structs-uniform.html": 0.1089,
    "conformance/glsl/misc/shader-with-attrib-array.vert.html": 0.1072,
    "conformance/glsl/misc/shader-with-attrib-struct.vert.html": 0.2149,
    "conformance/glsl/misc/shader-with-clipvertex.vert.html": 0.1021,
    "conformance/glsl/misc/shader-with-comma-assignment.html": 0.0991,
    "conformance/glsl/misc/shader-with-comma-conditional-assignment.html": 0.1614,
    "conformance/glsl/misc/shader-with-comma-separated-variable-declarations.html": 0.1123,
    "conformance/glsl/misc/shader-with-conditional-scoping-negative.html": 0.094,
    "conformance/glsl/misc/shader-with-conditional-scoping.html": 0.0759,
    "conformance/glsl/misc/shader-with-default-precision.frag.html": 0.289,
    "conformance/glsl/misc/shader-with-default-precision.vert.html": 0.2752,
    "conformance/glsl/misc/shader-with-dfdx-no-ext.frag.html": 0.2372,
    "conformance/glsl/misc/shader-with-dfdx.frag.html": 0.3072,
    "conformance/glsl/misc/shader-with-do-loop.html": 0.2118,
    "conformance/glsl/misc/shader-with-error-directive.html": 0.0902,
    "conformance/glsl/misc/shader-with-explicit-int-cast.vert.html": 0.2486,
    "conformance/glsl/misc/shader-with-float-return-value.frag.html": 0.1812,
    "conformance/glsl/misc/shader-with-for-loop.html": 0.2189,
    "conformance/glsl/misc/shader-with-for-scoping.html": 0.2118,
    "conformance/glsl/misc/shader-with-frag-depth.frag.html": 0.1002,
    "conformance/glsl/misc/shader-with-function-recursion.frag.html": 0.0806,
    "conformance/glsl/misc/shader-with-function-scoped-struct.html": 0.1175,
    "conformance/glsl/misc/shader-with-functional-scoping.html": 0.1003,
    "conformance/glsl/misc/shader-with-glcolor.vert.html": 0.1853,
    "conformance/glsl/misc/shader-with-gles-1.frag.html": 0.1908,
    "conformance/glsl/misc/shader-with-gles-symbol.frag.html": 0.3279,
    "conformance/glsl/misc/shader-with-global-variable-precision-mismatch.html": 0.0911,
    "conformance/glsl/misc/shader-with-glprojectionmatrix.vert.html": 0.087,
    "conformance/glsl/misc/shader-with-hex-int-constant-macro.html": 0.1095,
    "conformance/glsl/misc/shader-with-implicit-vec3-to-vec4-cast.vert.html": 0.1125,
    "conformance/glsl/misc/shader-with-include.vert.html": 0.1024,
    "conformance/glsl/misc/shader-with-int-return-value.frag.html": 0.0948,
    "conformance/glsl/misc/shader-with-invalid-identifier.frag.html": 0.2828,
    "conformance/glsl/misc/shader-with-ivec2-return-value.frag.html": 0.0868,
    "conformance/glsl/misc/shader-with-ivec3-return-value.frag.html": 0.0713,
    "conformance/glsl/misc/shader-with-ivec4-return-value.frag.html": 0.2284,
    "conformance/glsl/misc/shader-with-limited-indexing.frag.html": 0.1007,
    "conformance/glsl/misc/shader-with-long-line.html": 0.0957,
    "conformance/glsl/misc/shader-with-non-ascii-error.frag.html": 0.2092,
    "conformance/glsl/misc/shader-with-non-reserved-words-1-of-8.html": 2.6885,
    "conformance/glsl/misc/shader-with-non-reserved-words-2-of-8.html": 2.5202,
    "conformance/glsl/misc/shader-with-non-reserved-words-3-of-8.html": 2.7806,
    "conformance/glsl/misc/shader-with-non-reserved-words-4-of-8.html": 2.6206,
    "conformance/glsl/misc/shader-with-non-reserved-words-5-of-8.html": 1.3708,
    "conformance/glsl/misc/shader-with-non-reserved-words-6-of-8.html": 1.7587,
    "conformance/glsl/misc/shader-with-non-reserved-words-7-of-8.html": 2.6575,
    "conformance/glsl/misc/shader-with-non-reserved-words-8-of-8.html": 1.0853,
    "conformance/glsl/misc/shader-with-precision.frag.html": 0.2239,
    "conformance/glsl/misc/shader-with-preprocessor-whitespace.html": 0.1243,
    "conformance/glsl/misc/shader-with-quoted-error.frag.html": 0.2863,
    "conformance/glsl/misc/shader-with-reserved-words.html": 3.2106,
    "conformance/glsl/misc/shader-with-short-circuiting-operators.html": 0.4163,
    "conformance/glsl/misc/shader-with-similar-uniform-array-names.html": 0.2378,
    "conformance/glsl/misc/shader-with-too-many-uniforms.html": 0.4124,
    "conformance/glsl/misc/shader-with-two-initializer-types.html": 0.0883,
    "conformance/glsl/misc/shader-with-undefined-preprocessor-symbol.frag.html": 0.256,
    "conformance/glsl/misc/shader-with-uniform-in-loop-condition.vert.html": 0.2232,
    "conformance/glsl/misc/shader-with-vec2-return-value.frag.html": 0.3159,
    "conformance/glsl/misc/shader-with-vec3-return-value.frag.html": 0.2093,
    "conformance/glsl/misc/shader-with-vec4-return-value.frag.html": 0.2166,
    "conformance/glsl/misc/shader-with-vec4-vec3-vec4-conditional.html": 0.194,
    "conformance/glsl/misc/shader-with-version-100.frag.html": 0.1229,
    "conformance/glsl/misc/shader-with-version-100.vert.html": 0.2966,
    "conformance/glsl/misc/shader-with-version-120.vert.html": 0.103,
    "conformance/glsl/misc/shader-with-version-130.vert.html": 0.2011,
    "conformance/glsl/misc/shader-with-webgl-identifier.vert.html": 0.1901,
    "conformance/glsl/misc/shader-with-while-loop.html": 0.2376,
    "conformance/glsl/misc/shader-without-precision.frag.html": 0.0767,
    "conformance/glsl/misc/shaders-with-constant-expression-loop-conditions.html": 0.2588,
    "conformance/glsl/misc/shaders-with-invariance.html": 0.1483,
    "conformance/glsl/misc/shaders-with-mis-matching-uniforms.html": 0.1741,
    "conformance/glsl/misc/shaders-with-mis-matching-varyings.html": 0.1096,
    "conformance/glsl/misc/shaders-with-missing-varyings.html": 0.1941,
    "conformance/glsl/misc/shaders-with-name-conflicts.html": 0.2469,
    "conformance/glsl/misc/shaders-with-uniform-structs.html": 0.1238,
    "conformance/glsl/misc/shaders-with-varyings.html": 0.2548,
    "conformance/glsl/misc/shared.html": 0.2239,
    "conformance/glsl/misc/struct-as-inout-parameter.html": 0.2692,
    "conformance/glsl/misc/struct-as-out-parameter.html": 0.1272,
    "conformance/glsl/misc/struct-assign.html": 0.1341,
    "conformance/glsl/misc/struct-equals.html": 0.1397,
    "conformance/glsl/misc/struct-mixed-array-declarators.html": 0.5027,
    "conformance/glsl/misc/struct-nesting-exceeds-maximum.html": 0.1967,
    "conformance/glsl/misc/struct-nesting-of-variable-names.html": 1.4059,
    "conformance/glsl/misc/struct-nesting-under-maximum.html": 0.1967,
    "conformance/glsl/misc/struct-specifiers-in-uniforms.html": 0.3395,
    "conformance/glsl/misc/struct-unary-operators.html": 0.2005,
    "conformance/glsl/misc/ternary-operator-on-arrays.html": 0.1829,
    "conformance/glsl/misc/ternary-operators-in-global-initializers.html": 0.3499,
    "conformance/glsl/misc/ternary-operators-in-initializers.html": 0.364,
    "conformance/glsl/misc/uniform-location-length-limits.html": 0.1924,
    "conformance/glsl/misc/uninitialized-local-global-variables.html": 0.219,
    "conformance/glsl/preprocessor/comments.html": 0.3034,
    "conformance/glsl/preprocessor/macro-expansion-tricky.html": 0.0987,
    "conformance/glsl/reserved/_webgl_field.vert.html": 0.2091,
    "conformance/glsl/reserved/_webgl_function.vert.html": 0.2105,
    "conformance/glsl/reserved/_webgl_struct.vert.html": 0.1388,
    "conformance/glsl/reserved/_webgl_variable.vert.html": 0.2484,
    "conformance/glsl/reserved/webgl_field.vert.html": 0.1059,
    "conformance/glsl/reserved/webgl_function.vert.html": 0.0976,
    "conformance/glsl/reserved/webgl_struct.vert.html": 0.0854,
    "conformance/glsl/reserved/webgl_variable.vert.html": 0.1002,
    "conformance/glsl/samplers/glsl-function-texture2d-bias.html": 0.2697,
    "conformance/glsl/samplers/glsl-function-texture2dlod.html": 0.1552,
    "conformance/glsl/samplers/glsl-function-texture2dproj.html": 0.2057,
    "conformance/glsl/samplers/glsl-function-texture2dprojlod.html": 0.9316,
    "conformance/glsl/variables/gl-fragcoord-xy-values.html": 0.114,
    "conformance/glsl/variables/gl-fragcoord.html": 0.0985,
    "conformance/glsl/variables/gl-fragdata-and-fragcolor.html": 0.1182,
    "conformance/glsl/variables/gl-frontfacing.html": 0.1179,
    "conformance/glsl/variables/gl-pointcoord.html": 0.2157,
    "conformance/glsl/variables/glsl-built-ins.html": 0.3738,
    "conformance/limits/gl-line-width.html": 0.1903,
    "conformance/limits/gl-max-texture-dimensions.html": 0.1238,
    "conformance/limits/gl-min-attribs.html": 0.2195,
    "conformance/limits/gl-min-textures.html": 0.2035,
    "conformance/limits/gl-min-uniforms.html": 0.2213,
    "conformance/misc/bad-arguments-test.html": 0.1041,
    "conformance/misc/boolean-argument-conversion.html": 0.1571,
    "conformance/misc/delayed-drawing.html": 1.1481,
    "conformance/misc/error-reporting.html": 0.2114,
    "conformance/misc/expando-loss.html": 0.312,
    "conformance/misc/functions-returning-strings.html": 0.1816,
    "conformance/misc/hint.html": 0.1426,
    "conformance/misc/instanceof-test.html": 0.2471,
    "conformance/misc/invalid-passed-params.html": 0.2572,
    "conformance/misc/is-object.html": 0.2409,
    "conformance/misc/null-object-behaviour.html": 0.1101,
    "conformance/misc/object-deletion-behaviour.html": 0.3204,
    "conformance/misc/shader-precision-format.html": 0.1802,
    "conformance/misc/type-conversion-test.html": 0.1709,
    "conformance/misc/uninitialized-test.html": 0.3361,
    "conformance/misc/webgl-specific-stencil-settings.html": 0.7605,
    "conformance/misc/webgl-specific.html": 0.0972,
    "conformance/more/conformance/constants.html": 0.1221,
    "conformance/more/conformance/getContext.html": 0.1293,
    "conformance/more/conformance/methods.html": 0.1046,
    "conformance/more/conformance/quickCheckAPI-A.html": 0.1675,
    "conformance/more/conformance/quickCheckAPI-B1.html": 0.1617,
    "conformance/more/conformance/quickCheckAPI-B2.html": 0.1213,
    "conformance/more/conformance/quickCheckAPI-B3.html": 0.1312,
    "conformance/more/conformance/quickCheckAPI-B4.html": 0.113,
    "conformance/more/conformance/quickCheckAPI-C.html": 0.128,
    "conformance/more/conformance/quickCheckAPI-D_G.html": 0.3336,
    "conformance/more/conformance/quickCheckAPI-G_I.html": 0.3127,
    "conformance/more/conformance/quickCheckAPI-L_S.html": 0.1254,
    "conformance/more/conformance/quickCheckAPI-S_V.html": 0.1299,
    "conformance/more/conformance/webGLArrays.html": 0.1249,
    "conformance/more/functions/bindBuffer.html": 0.1009,
    "conformance/more/functions/bindBufferBadArgs.html": 0.1114,
    "conformance/more/functions/bindFramebufferLeaveNonZero.html": 0.0943,
    "conformance/more/functions/bufferData.html": 0.1093,
    "conformance/more/functions/bufferDataBadArgs.html": 0.1085,
    "conformance/more/functions/bufferSubData.html": 0.1381,
    "conformance/more/functions/bufferSubDataBadArgs.html": 0.1107,
    "conformance/more/functions/copyTexImage2D.html": 0.124,
    "conformance/more/functions/copyTexImage2DBadArgs.html": 0.113,
    "conformance/more/functions/copyTexSubImage2D.html": 0.1289,
    "conformance/more/functions/copyTexSubImage2DBadArgs.html": 0.1151,
    "conformance/more/functions/deleteBufferBadArgs.html": 0.1033,
    "conformance/more/functions/drawArrays.html": 0.2689,
    "conformance/more/functions/drawElements.html": 0.1143,
    "conformance/more/functions/isTests.html": 0.2128,
    "conformance/more/functions/isTestsBadArgs.html": 0.0975,
    "conformance/more/functions/readPixels.html": 0.2432,
    "conformance/more/functions/readPixelsBadArgs.html": 0.3628,
    "conformance/more/functions/texImage2D.html": 0.1019,
    "conformance/more/functions/texImage2DBadArgs.html": 0.1076,
    "conformance/more/functions/texImage2DHTML.html": 0.2214,
    "conformance/more/functions/texImage2DHTMLBadArgs.html": 0.2934,
    "conformance/more/functions/texSubImage2D.html": 0.1057,
    "conformance/more/functions/texSubImage2DBadArgs.html": 0.26,
    "conformance/more/functions/texSubImage2DHTML.html": 0.4586,
    "conformance/more/functions/texSubImage2DHTMLBadArgs.html": 0.126,
    "conformance/more/functions/uniformMatrix.html": 0.1383,
    "conformance/more/functions/uniformMatrixBadArgs.html": 0.1237,
    "conformance/more/functions/uniformf.html": 0.2775,
    "conformance/more/functions/uniformfArrayLen1.html": 0.1162,
    "conformance/more/functions/uniformfBadArgs.html": 0.1191,
    "conformance/more/functions/uniformi.html": 0.1289,
    "conformance/more/functions/uniformiBadArgs.html": 0.1292,
    "conformance/more/functions/vertexAttrib.html": 0.2549,
    "conformance/more/functions/vertexAttribBadArgs.html": 0.2035,
    "conformance/more/functions/vertexAttribPointer.html": 0.3044,
    "conformance/more/functions/vertexAttribPointerBadArgs.html": 0.1451,
    "conformance/more/glsl/arrayOutOfBounds.html": 0.2734,
    "conformance/more/glsl/uniformOutOfBounds.html": 0.3227,
    "conformance/offscreencanvas/context-attribute-preserve-drawing-buffer.html": 0.7779,
    "conformance/offscreencanvas/context-creation-worker.html": 0.1953,
    "conformance/offscreencanvas/context-creation.html": 0.1932,
    "conformance/offscreencanvas/context-lost-restored-worker.html": 0.1446,
    "conformance/offscreencanvas/context-lost-restored.html": 0.3385,
    "conformance/offscreencanvas/context-lost-worker.html": 0.1109,
    "conformance/offscreencanvas/context-lost.html": 0.3271,
    "conformance/offscreencanvas/methods-worker.html": 0.095,
    "conformance/offscreencanvas/methods.html": 0.1943,
    "conformance/offscreencanvas/offscreencanvas-resize.html": 0.0769,
    "conformance/offscreencanvas/offscreencanvas-timer-query.html": 0.1079,
    "conformance/offscreencanvas/offscreencanvas-transfer-image-bitmap.html": 0.1294,
    "conformance/ogles/GL/abs/abs_001_to_006.html": 0.6576,
    "conformance/ogles/GL/acos/acos_001_to_006.html": 0.9103,
    "conformance/ogles/GL/all/all_001_to_004.html": 0.5124,
    "conformance/ogles/GL/any/any_001_to_004.html": 0.5081,
    "conformance/ogles/GL/array/array_001_to_006.html": 0.6374,
    "conformance/ogles/GL/asin/asin_001_to_006.html": 0.8928,
    "conformance/ogles/GL/atan/atan_001_to_008.html": 0.9268,
    "conformance/ogles/GL/atan/atan_009_to_012.html": 0.9588,
    "conformance/ogles/GL/biConstants/biConstants_001_to_008.html": 0.878,
    "conformance/ogles/GL/biConstants/biConstants_009_to_016.html": 0.7356,
    "conformance/ogles/GL/biuDepthRange/biuDepthRange_001_to_002.html": 0.4628,
    "conformance/ogles/GL/build/build_001_to_008.html": 0.3367,
    "conformance/ogles/GL/build/build_009_to_016.html": 0.2486,
    "conformance/ogles/GL/build/build_017_to_024.html": 0.2668,
    "conformance/ogles/GL/build/build_025_to_032.html": 0.2884,
    "conformance/ogles/GL/build/build_033_to_040.html": 0.253,
    "conformance/ogles/GL/build/build_041_to_048.html": 0.2261,
    "conformance/ogles/GL/build/build_049_to_056.html": 0.224,
    "conformance/ogles/GL/build/build_057_to_064.html": 0.2529,
    "conformance/ogles/GL/build/build_065_to_072.html": 0.1197,
    "conformance/ogles/GL/build/build_073_to_080.html": 0.4203,
    "conformance/ogles/GL/build/build_081_to_088.html": 0.4249,
    "conformance/ogles/GL/build/build_089_to_096.html": 0.4123,
    "conformance/ogles/GL/build/build_097_to_104.html": 0.3627,
    "conformance/ogles/GL/build/build_105_to_112.html": 0.1374,
    "conformance/ogles/GL/build/build_113_to_120.html": 0.2584,
    "conformance/ogles/GL/build/build_121_to_128.html": 0.1302,
    "conformance/ogles/GL/build/build_129_to_136.html": 0.2242,
    "conformance/ogles/GL/build/build_137_to_144.html": 0.1526,
    "conformance/ogles/GL/build/build_145_to_152.html": 0.2491,
    "conformance/ogles/GL/build/build_153_to_160.html": 0.1302,
    "conformance/ogles/GL/build/build_161_to_168.html": 0.1545,
    "conformance/ogles/GL/build/build_169_to_176.html": 0.2249,
    "conformance/ogles/GL/build/build_177_to_178.html": 0.2217,
    "conformance/ogles/GL/built_in_varying_array_out_of_bounds/built_in_varying_array_out_of_bounds_001_to_001.html": 0.1226,
    "conformance/ogles/GL/ceil/ceil_001_to_006.html": 0.6282,
    "conformance/ogles/GL/clamp/clamp_001_to_006.html": 0.6887,
    "conformance/ogles/GL/control_flow/control_flow_001_to_008.html": 0.5869,
    "conformance/ogles/GL/control_flow/control_flow_009_to_010.html": 0.3423,
    "conformance/ogles/GL/cos/cos_001_to_006.html": 0.8728,
    "conformance/ogles/GL/cross/cross_001_to_002.html": 0.3358,
    "conformance/ogles/GL/default/default_001_to_001.html": 0.1804,
    "conformance/ogles/GL/degrees/degrees_001_to_006.html": 0.6116,
    "conformance/ogles/GL/discard/discard_001_to_002.html": 0.3432,
    "conformance/ogles/GL/distance/distance_001_to_006.html": 0.7824,
    "conformance/ogles/GL/dot/dot_001_to_006.html": 0.7078,
    "conformance/ogles/GL/equal/equal_001_to_008.html": 0.8367,
    "conformance/ogles/GL/equal/equal_009_to_012.html": 0.491,
    "conformance/ogles/GL/exp/exp_001_to_008.html": 0.9352,
    "conformance/ogles/GL/exp/exp_009_to_012.html": 0.6499,
    "conformance/ogles/GL/exp2/exp2_001_to_008.html": 0.864,
    "conformance/ogles/GL/exp2/exp2_009_to_012.html": 0.7147,
    "conformance/ogles/GL/faceforward/faceforward_001_to_006.html": 1.0016,
    "conformance/ogles/GL/floor/floor_001_to_006.html": 0.7956,
    "conformance/ogles/GL/fract/fract_001_to_006.html": 0.851,
    "conformance/ogles/GL/functions/functions_001_to_008.html": 0.7415,
    "conformance/ogles/GL/functions/functions_009_to_016.html": 0.5581,
    "conformance/ogles/GL/functions/functions_017_to_024.html": 0.6399,
    "conformance/ogles/GL/functions/functions_025_to_032.html": 0.5914,
    "conformance/ogles/GL/functions/functions_033_to_040.html": 0.6588,
    "conformance/ogles/GL/functions/functions_041_to_048.html": 0.6399,
    "conformance/ogles/GL/functions/functions_049_to_056.html": 0.5568,
    "conformance/ogles/GL/functions/functions_057_to_064.html": 0.6927,
    "conformance/ogles/GL/functions/functions_065_to_072.html": 0.6249,
    "conformance/ogles/GL/functions/functions_073_to_080.html": 0.7459,
    "conformance/ogles/GL/functions/functions_081_to_088.html": 0.7141,
    "conformance/ogles/GL/functions/functions_089_to_096.html": 0.7602,
    "conformance/ogles/GL/functions/functions_097_to_104.html": 0.7795,
    "conformance/ogles/GL/functions/functions_105_to_112.html": 0.6195,
    "conformance/ogles/GL/functions/functions_113_to_120.html": 0.629,
    "conformance/ogles/GL/functions/functions_121_to_126.html": 0.5308,
    "conformance/ogles/GL/gl_FragCoord/gl_FragCoord_001_to_003.html": 0.3678,
    "conformance/ogles/GL/gl_FrontFacing/gl_FrontFacing_001_to_001.html": 0.2537,
    "conformance/ogles/GL/greaterThan/greaterThan_001_to_008.html": 0.8542,
    "conformance/ogles/GL/greaterThanEqual/greaterThanEqual_001_to_008.html": 0.8339,
    "conformance/ogles/GL/inversesqrt/inversesqrt_001_to_006.html": 0.6943,
    "conformance/ogles/GL/length/length_001_to_006.html": 0.6855,
    "conformance/ogles/GL/lessThan/lessThan_001_to_008.html": 0.864,
    "conformance/ogles/GL/lessThanEqual/lessThanEqual_001_to_008.html": 0.7779,
    "conformance/ogles/GL/log/log_001_to_008.html": 0.9595,
    "conformance/ogles/GL/log/log_009_to_012.html": 0.8166,
    "conformance/ogles/GL/log2/log2_001_to_008.html": 0.8576,
    "conformance/ogles/GL/log2/log2_009_to_012.html": 0.721,
    "conformance/ogles/GL/mat/mat_001_to_008.html": 0.6239,
    "conformance/ogles/GL/mat/mat_009_to_016.html": 0.6159,
    "conformance/ogles/GL/mat/mat_017_to_024.html": 0.5733,
    "conformance/ogles/GL/mat/mat_025_to_032.html": 0.767,
    "conformance/ogles/GL/mat/mat_033_to_040.html": 0.6892,
    "conformance/ogles/GL/mat/mat_041_to_046.html": 0.5284,
    "conformance/ogles/GL/mat3/mat3_001_to_006.html": 0.4926,
    "conformance/ogles/GL/matrixCompMult/matrixCompMult_001_to_004.html": 0.5162,
    "conformance/ogles/GL/max/max_001_to_006.html": 0.695,
    "conformance/ogles/GL/min/min_001_to_006.html": 0.7112,
    "conformance/ogles/GL/mix/mix_001_to_006.html": 0.6774,
    "conformance/ogles/GL/mod/mod_001_to_008.html": 0.8796,
    "conformance/ogles/GL/normalize/normalize_001_to_006.html": 0.7923,
    "conformance/ogles/GL/not/not_001_to_004.html": 0.5483,
    "conformance/ogles/GL/notEqual/notEqual_001_to_008.html": 0.8545,
    "conformance/ogles/GL/notEqual/notEqual_009_to_012.html": 0.6584,
    "conformance/ogles/GL/operators/operators_001_to_008.html": 0.6339,
    "conformance/ogles/GL/operators/operators_009_to_016.html": 0.6094,
    "conformance/ogles/GL/operators/operators_017_to_024.html": 0.5951,
    "conformance/ogles/GL/operators/operators_025_to_026.html": 0.3183,
    "conformance/ogles/GL/pow/pow_001_to_008.html": 0.6931,
    "conformance/ogles/GL/pow/pow_009_to_016.html": 0.8501,
    "conformance/ogles/GL/pow/pow_017_to_024.html": 1.0247,
    "conformance/ogles/GL/radians/radians_001_to_006.html": 0.7054,
    "conformance/ogles/GL/reflect/reflect_001_to_006.html": 0.8778,
    "conformance/ogles/GL/refract/refract_001_to_006.html": 0.9315,
    "conformance/ogles/GL/sign/sign_001_to_006.html": 0.7724,
    "conformance/ogles/GL/sin/sin_001_to_006.html": 0.8389,
    "conformance/ogles/GL/smoothstep/smoothstep_001_to_006.html": 0.7355,
    "conformance/ogles/GL/sqrt/sqrt_001_to_006.html": 0.6794,
    "conformance/ogles/GL/step/step_001_to_006.html": 0.6409,
    "conformance/ogles/GL/struct/struct_001_to_008.html": 0.8256,
    "conformance/ogles/GL/struct/struct_009_to_016.html": 0.8456,
    "conformance/ogles/GL/struct/struct_017_to_024.html": 0.7532,
    "conformance/ogles/GL/struct/struct_025_to_032.html": 0.7421,
    "conformance/ogles/GL/struct/struct_033_to_040.html": 0.8022,
    "conformance/ogles/GL/struct/struct_041_to_048.html": 0.8319,
    "conformance/ogles/GL/struct/struct_049_to_056.html": 0.7039,
    "conformance/ogles/GL/swizzlers/swizzlers_001_to_008.html": 0.8307,
    "conformance/ogles/GL/swizzlers/swizzlers_009_to_016.html": 0.9481,
    "conformance/ogles/GL/swizzlers/swizzlers_017_to_024.html": 0.9155,
    "conformance/ogles/GL/swizzlers/swizzlers_025_to_032.html": 0.817,
    "conformance/ogles/GL/swizzlers/swizzlers_033_to_040.html": 0.897,
    "conformance/ogles/GL/swizzlers/swizzlers_041_to_048.html": 0.9005,
    "conformance/ogles/GL/swizzlers/swizzlers_049_to_056.html": 0.8053,
    "conformance/ogles/GL/swizzlers/swizzlers_057_to_064.html": 0.8085,
    "conformance/ogles/GL/swizzlers/swizzlers_065_to_072.html": 0.8318,
    "conformance/ogles/GL/swizzlers/swizzlers_073_to_080.html": 0.8791,
    "conformance/ogles/GL/swizzlers/swizzlers_081_to_088.html": 0.8302,
    "conformance/ogles/GL/swizzlers/swizzlers_089_to_096.html": 0.9337,
    "conformance/ogles/GL/swizzlers/swizzlers_097_to_104.html": 0.8694,
    "conformance/ogles/GL/swizzlers/swizzlers_105_to_112.html": 0.7991,
    "conformance/ogles/GL/swizzlers/swizzlers_113_to_120.html": 0.764,
    "conformance/ogles/GL/tan/tan_001_to_006.html": 0.8023,
    "conformance/ogles/GL/vec/vec_001_to_008.html": 0.6099,
    "conformance/ogles/GL/vec/vec_009_to_016.html": 0.6116,
    "conformance/ogles/GL/vec/vec_017_to_018.html": 0.3443,
    "conformance/ogles/GL/vec3/vec3_001_to_008.html": 0.5501,
    "conformance/programs/get-active-test.html": 0.3172,
    "conformance/programs/gl-bind-attrib-location-long-names-test.html": 0.2219,
    "conformance/programs/gl-bind-attrib-location-test.html": 0.2176,
    "conformance/programs/gl-get-active-attribute.html": 0.2268,
    "conformance/programs/gl-get-active-uniform.html": 0.2899,
    "conformance/programs/gl-getshadersource.html": 0.1814,
    "conformance/programs/gl-shader-test.html": 0.2064,
    "conformance/programs/invalid-UTF-16.html": 0.0781,
    "conformance/programs/program-handling.html": 0.2004,
    "conformance/programs/program-infolog.html": 0.0922,
    "conformance/programs/program-test.html": 0.4608,
    "conformance/programs/use-program-crash-with-discard-in-fragment-shader.html": 0.3485,
    "conformance/reading/fbo-remains-unchanged-after-read-pixels.html": 0.2874,
    "conformance/reading/read-pixels-pack-alignment.html": 0.4125,
    "conformance/reading/read-pixels-test.html": 0.4606,
    "conformance/renderbuffers/depth-renderbuffer-initialization.html": 0.285,
    "conformance/renderbuffers/feedback-loop.html": 0.1867,
    "conformance/renderbuffers/framebuffer-object-attachment.html": 0.4344,
    "conformance/renderbuffers/framebuffer-state-restoration.html": 0.2295,
    "conformance/renderbuffers/framebuffer-test.html": 0.1932,
    "conformance/renderbuffers/renderbuffer-initialization.html": 0.3006,
    "conformance/renderbuffers/stencil-renderbuffer-initialization.html": 0.1533,
    "conformance/rendering/bind-framebuffer-flush-bug.html": 0.2177,
    "conformance/rendering/blending.html": 0.3703,
    "conformance/rendering/canvas-alpha-bug.html": 0.1941,
    "conformance/rendering/clear-after-copyTexImage2D.html": 0.119,
    "conformance/rendering/clear-default-framebuffer-with-scissor-test.html": 0.13,
    "conformance/rendering/clipping-wide-points.html": 0.1345,
    "conformance/rendering/color-mask-preserved-during-implicit-clears.html": 1.5529,
    "conformance/rendering/color-mask-should-not-affect-antialiased-framebuffer-resolution.html": 0.1123,
    "conformance/rendering/culling.html": 0.2453,
    "conformance/rendering/default-texture-draw-bug.html": 0.3034,
    "conformance/rendering/draw-arrays-out-of-bounds.html": 0.2843,
    "conformance/rendering/draw-elements-out-of-bounds.html": 0.1239,
    "conformance/rendering/draw-webgl-to-canvas-2d-repeatedly.html": 0.2487,
    "conformance/rendering/draw-with-changing-start-vertex-bug.html": 0.1308,
    "conformance/rendering/framebuffer-switch.html": 0.0783,
    "conformance/rendering/framebuffer-texture-clear.html": 0.1884,
    "conformance/rendering/framebuffer-texture-switch.html": 0.1274,
    "conformance/rendering/gl-clear.html": 0.2429,
    "conformance/rendering/gl-drawarrays.html": 0.1627,
    "conformance/rendering/gl-drawelements.html": 0.3077,
    "conformance/rendering/gl-scissor-canvas-dimensions.html": 0.1457,
    "conformance/rendering/gl-scissor-fbo-test.html": 0.2739,
    "conformance/rendering/gl-scissor-test.html": 0.1244,
    "conformance/rendering/gl-viewport-test.html": 0.32,
    "conformance/rendering/line-loop-tri-fan.html": 0.0987,
    "conformance/rendering/line-rendering-quality.html": 0.1115,
    "conformance/rendering/many-draw-calls.html": 1.737,
    "conformance/rendering/more-than-65536-indices.html": 0.1361,
    "conformance/rendering/multisample-corruption.html": 2.8174,
    "conformance/rendering/negative-one-index.html": 0.1202,
    "conformance/rendering/out-of-bounds-array-buffers.html": 0.1961,
    "conformance/rendering/out-of-bounds-index-buffers.html": 0.0994,
    "conformance/rendering/point-no-attributes.html": 0.1007,
    "conformance/rendering/point-size.html": 0.1846,
    "conformance/rendering/point-specific-shader-variables.html": 0.3093,
    "conformance/rendering/point-with-gl-pointcoord-in-fragment-shader.html": 0.2395,
    "conformance/rendering/polygon-offset.html": 0.3033,
    "conformance/rendering/preservedrawingbuffer-leak.html": 0.9963,
    "conformance/rendering/rendering-sampling-feedback-loop.html": 0.2191,
    "conformance/rendering/rendering-stencil-large-viewport.html": 0.2232,
    "conformance/rendering/scissor-rect-repeated-rendering.html": 0.3296,
    "conformance/rendering/simple.html": 0.1594,
    "conformance/rendering/texture-switch-performance.html": 0,
    "conformance/rendering/triangle.html": 0.1902,
    "conformance/state/fb-attach-implicit-target-assignment.html": 0.1946,
    "conformance/state/gl-enable-enum-test.html": 0.3665,
    "conformance/state/gl-enum-tests.html": 0.1263,
    "conformance/state/gl-get-calls.html": 0.1159,
    "conformance/state/gl-geterror.html": 0.2147,
    "conformance/state/gl-getstring.html": 0.1965,
    "conformance/state/gl-initial-state.html": 0.0931,
    "conformance/state/gl-object-get-calls.html": 7.3715,
    "conformance/state/state-uneffected-after-compositing.html": 0.2149,
    "conformance/textures/canvas/tex-2d-alpha-alpha-unsigned_byte.html": 0.942,
    "conformance/textures/canvas/tex-2d-luminance-luminance-unsigned_byte.html": 1.1588,
    "conformance/textures/canvas/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.9073,
    "conformance/textures/canvas/tex-2d-rgb-rgb-unsigned_byte.html": 2.7318,
    "conformance/textures/canvas/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.8064,
    "conformance/textures/canvas/tex-2d-rgba-rgba-unsigned_byte.html": 2.1993,
    "conformance/textures/canvas/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 1.104,
    "conformance/textures/canvas/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 1.0238,
    "conformance/textures/canvas_sub_rectangle/tex-2d-alpha-alpha-unsigned_byte.html": 0.0479,
    "conformance/textures/canvas_sub_rectangle/tex-2d-luminance-luminance-unsigned_byte.html": 0.0727,
    "conformance/textures/canvas_sub_rectangle/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.0572,
    "conformance/textures/canvas_sub_rectangle/tex-2d-rgb-rgb-unsigned_byte.html": 0.0489,
    "conformance/textures/canvas_sub_rectangle/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.0594,
    "conformance/textures/canvas_sub_rectangle/tex-2d-rgba-rgba-unsigned_byte.html": 0.0581,
    "conformance/textures/canvas_sub_rectangle/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.0653,
    "conformance/textures/canvas_sub_rectangle/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.0489,
    "conformance/textures/image/tex-2d-alpha-alpha-unsigned_byte.html": 0.3183,
    "conformance/textures/image/tex-2d-luminance-luminance-unsigned_byte.html": 0.4086,
    "conformance/textures/image/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.2156,
    "conformance/textures/image/tex-2d-rgb-rgb-unsigned_byte.html": 0.1419,
    "conformance/textures/image/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.2324,
    "conformance/textures/image/tex-2d-rgba-rgba-unsigned_byte.html": 0.1631,
    "conformance/textures/image/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.1581,
    "conformance/textures/image/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.2502,
    "conformance/textures/image_bitmap_from_blob/tex-2d-alpha-alpha-unsigned_byte.html": 0.2504,
    "conformance/textures/image_bitmap_from_blob/tex-2d-luminance-luminance-unsigned_byte.html": 0.3789,
    "conformance/textures/image_bitmap_from_blob/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.2884,
    "conformance/textures/image_bitmap_from_blob/tex-2d-rgb-rgb-unsigned_byte.html": 0.4294,
    "conformance/textures/image_bitmap_from_blob/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.2377,
    "conformance/textures/image_bitmap_from_blob/tex-2d-rgba-rgba-unsigned_byte.html": 0.2391,
    "conformance/textures/image_bitmap_from_blob/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.4997,
    "conformance/textures/image_bitmap_from_blob/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.4192,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-alpha-alpha-unsigned_byte.html": 0.5028,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-luminance-luminance-unsigned_byte.html": 0.5309,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.5016,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-rgb-rgb-unsigned_byte.html": 0.5692,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.3396,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-rgba-rgba-unsigned_byte.html": 0.4943,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.5492,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.3029,
    "conformance/textures/image_bitmap_from_image/tex-2d-alpha-alpha-unsigned_byte.html": 0.1831,
    "conformance/textures/image_bitmap_from_image/tex-2d-luminance-luminance-unsigned_byte.html": 0.1625,
    "conformance/textures/image_bitmap_from_image/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.1811,
    "conformance/textures/image_bitmap_from_image/tex-2d-rgb-rgb-unsigned_byte.html": 0.1743,
    "conformance/textures/image_bitmap_from_image/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.1923,
    "conformance/textures/image_bitmap_from_image/tex-2d-rgba-rgba-unsigned_byte.html": 0.1891,
    "conformance/textures/image_bitmap_from_image/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.2863,
    "conformance/textures/image_bitmap_from_image/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.1765,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-alpha-alpha-unsigned_byte.html": 0.1745,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-luminance-luminance-unsigned_byte.html": 0.1706,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.1698,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-rgb-rgb-unsigned_byte.html": 0.1814,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.1721,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-rgba-rgba-unsigned_byte.html": 0.1942,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.1514,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.1368,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-alpha-alpha-unsigned_byte.html": 0.1347,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-luminance-luminance-unsigned_byte.html": 0.1463,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.1686,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-rgb-rgb-unsigned_byte.html": 0.1728,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.1567,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-rgba-rgba-unsigned_byte.html": 0.1667,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.1519,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.1443,
    "conformance/textures/image_bitmap_from_video/tex-2d-alpha-alpha-unsigned_byte.html": 0.8303,
    "conformance/textures/image_bitmap_from_video/tex-2d-luminance-luminance-unsigned_byte.html": 0.8009,
    "conformance/textures/image_bitmap_from_video/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.5351,
    "conformance/textures/image_bitmap_from_video/tex-2d-rgb-rgb-unsigned_byte.html": 0.5867,
    "conformance/textures/image_bitmap_from_video/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.592,
    "conformance/textures/image_bitmap_from_video/tex-2d-rgba-rgba-unsigned_byte.html": 0.5719,
    "conformance/textures/image_bitmap_from_video/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.4996,
    "conformance/textures/image_bitmap_from_video/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.6832,
    "conformance/textures/image_data/tex-2d-alpha-alpha-unsigned_byte.html": 0.3401,
    "conformance/textures/image_data/tex-2d-luminance-luminance-unsigned_byte.html": 0.3566,
    "conformance/textures/image_data/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.15,
    "conformance/textures/image_data/tex-2d-rgb-rgb-unsigned_byte.html": 0.2186,
    "conformance/textures/image_data/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.1616,
    "conformance/textures/image_data/tex-2d-rgba-rgba-unsigned_byte.html": 0.2525,
    "conformance/textures/image_data/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.2591,
    "conformance/textures/image_data/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.1563,
    "conformance/textures/misc/canvas-teximage-after-multiple-drawimages.html": 0.1356,
    "conformance/textures/misc/compressed-tex-image.html": 0.0983,
    "conformance/textures/misc/copy-tex-image-2d-formats.html": 0.3367,
    "conformance/textures/misc/copy-tex-image-and-sub-image-2d.html": 0.2604,
    "conformance/textures/misc/copy-tex-image-crash.html": 0.0816,
    "conformance/textures/misc/copytexsubimage2d-large-partial-copy-corruption.html": 0.1582,
    "conformance/textures/misc/copytexsubimage2d-subrects.html": 0.0813,
    "conformance/textures/misc/cube-incomplete-fbo.html": 0.08,
    "conformance/textures/misc/cube-map-uploads-out-of-order.html": 1.0952,
    "conformance/textures/misc/default-texture.html": 0.0832,
    "conformance/textures/misc/exif-orientation.html": 0.654,
    "conformance/textures/misc/format-filterable-renderable.html": 0.1236,
    "conformance/textures/misc/gl-get-tex-parameter.html": 0.1091,
    "conformance/textures/misc/gl-pixelstorei.html": 0.111,
    "conformance/textures/misc/gl-teximage.html": 0.1934,
    "conformance/textures/misc/mipmap-fbo.html": 0.0845,
    "conformance/textures/misc/origin-clean-conformance-offscreencanvas.html": 0.109,
    "conformance/textures/misc/origin-clean-conformance.html": 0.085,
    "conformance/textures/misc/png-image-types.html": 0.3002,
    "conformance/textures/misc/tex-image-and-sub-image-2d-with-array-buffer-view.html": 0.8638,
    "conformance/textures/misc/tex-image-and-uniform-binding-bugs.html": 0.1376,
    "conformance/textures/misc/tex-image-canvas-corruption.html": 0.3613,
    "conformance/textures/misc/tex-image-webgl.html": 0.0983,
    "conformance/textures/misc/tex-image-with-format-and-type.html": 0.3605,
    "conformance/textures/misc/tex-image-with-invalid-data.html": 0.0848,
    "conformance/textures/misc/tex-input-validation.html": 0.1738,
    "conformance/textures/misc/tex-sub-image-2d-bad-args.html": 0.1192,
    "conformance/textures/misc/tex-sub-image-2d.html": 0.297,
    "conformance/textures/misc/tex-video-using-tex-unit-non-zero.html": 0.5078,
    "conformance/textures/misc/texparameter-test.html": 0.1835,
    "conformance/textures/misc/texture-active-bind-2.html": 0.0934,
    "conformance/textures/misc/texture-active-bind.html": 0.1218,
    "conformance/textures/misc/texture-attachment-formats.html": 0.106,
    "conformance/textures/misc/texture-clear.html": 0.086,
    "conformance/textures/misc/texture-complete.html": 0.0873,
    "conformance/textures/misc/texture-copying-and-deletion.html": 1.0923,
    "conformance/textures/misc/texture-copying-feedback-loops.html": 0.197,
    "conformance/textures/misc/texture-corner-case-videos.html": 0.41,
    "conformance/textures/misc/texture-cube-as-fbo-attachment.html": 0.1826,
    "conformance/textures/misc/texture-draw-with-2d-and-cube.html": 0.2382,
    "conformance/textures/misc/texture-fakeblack.html": 0.0975,
    "conformance/textures/misc/texture-formats-test.html": 0.1277,
    "conformance/textures/misc/texture-hd-dpi.html": 0.1403,
    "conformance/textures/misc/texture-mips.html": 0.1098,
    "conformance/textures/misc/texture-npot-video.html": 0.1586,
    "conformance/textures/misc/texture-npot.html": 0.1726,
    "conformance/textures/misc/texture-size-cube-maps.html": 0.4493,
    "conformance/textures/misc/texture-size-limit.html": 0.2386,
    "conformance/textures/misc/texture-size.html": 0.5837,
    "conformance/textures/misc/texture-srgb-upload.html": 0.5318,
    "conformance/textures/misc/texture-sub-image-cube-maps.html": 0.1052,
    "conformance/textures/misc/texture-transparent-pixels-initialized.html": 0.2889,
    "conformance/textures/misc/texture-upload-cube-maps.html": 0.0952,
    "conformance/textures/misc/texture-upload-size.html": 0.4811,
    "conformance/textures/misc/texture-video-transparent.html": 2.422,
    "conformance/textures/misc/texture-with-flip-y-and-premultiply-alpha.html": 0.264,
    "conformance/textures/misc/upload-from-srcset-with-empty-data.html": 0.1025,
    "conformance/textures/misc/video-rotation.html": 0.6247,
    "conformance/textures/svg_image/tex-2d-alpha-alpha-unsigned_byte.html": 0.1749,
    "conformance/textures/svg_image/tex-2d-luminance-luminance-unsigned_byte.html": 0.1311,
    "conformance/textures/svg_image/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.2659,
    "conformance/textures/svg_image/tex-2d-rgb-rgb-unsigned_byte.html": 0.1288,
    "conformance/textures/svg_image/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.1377,
    "conformance/textures/svg_image/tex-2d-rgba-rgba-unsigned_byte.html": 0.1876,
    "conformance/textures/svg_image/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.1658,
    "conformance/textures/svg_image/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.1263,
    "conformance/textures/video/tex-2d-alpha-alpha-unsigned_byte.html": 0.965,
    "conformance/textures/video/tex-2d-luminance-luminance-unsigned_byte.html": 1.0063,
    "conformance/textures/video/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 1.0734,
    "conformance/textures/video/tex-2d-rgb-rgb-unsigned_byte.html": 0.9435,
    "conformance/textures/video/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.955,
    "conformance/textures/video/tex-2d-rgba-rgba-unsigned_byte.html": 1.0539,
    "conformance/textures/video/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 1.0167,
    "conformance/textures/video/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.9228,
    "conformance/textures/webgl_canvas/tex-2d-alpha-alpha-unsigned_byte.html": 1.1701,
    "conformance/textures/webgl_canvas/tex-2d-luminance-luminance-unsigned_byte.html": 1.3262,
    "conformance/textures/webgl_canvas/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 1.237,
    "conformance/textures/webgl_canvas/tex-2d-rgb-rgb-unsigned_byte.html": 3.1557,
    "conformance/textures/webgl_canvas/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 1.2074,
    "conformance/textures/webgl_canvas/tex-2d-rgba-rgba-unsigned_byte.html": 3.4167,
    "conformance/textures/webgl_canvas/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 1.3033,
    "conformance/textures/webgl_canvas/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 1.3226,
    "conformance/typedarrays/array-buffer-crash.html": 0.0526,
    "conformance/typedarrays/array-buffer-view-crash.html": 0.0649,
    "conformance/typedarrays/array-large-array-tests.html": 0.2094,
    "conformance/typedarrays/array-unit-tests.html": 0.0842,
    "conformance/typedarrays/data-view-crash.html": 0.0455,
    "conformance/typedarrays/data-view-test.html": 0.1124,
    "conformance/typedarrays/typed-arrays-in-workers.html": 0.0888,
    "conformance/uniforms/gl-get-uniform-non-current-program.html": 0.0893,
    "conformance/uniforms/gl-uniform-arrays.html": 0.1176,
    "conformance/uniforms/gl-uniform-bool.html": 0.2449,
    "conformance/uniforms/gl-uniformmatrix4fv.html": 0.0625,
    "conformance/uniforms/gl-unknown-uniform.html": 0.0748,
    "conformance/uniforms/no-over-optimization-on-uniform-array-00.html": 0.4909,
    "conformance/uniforms/no-over-optimization-on-uniform-array-01.html": 0.6526,
    "conformance/uniforms/no-over-optimization-on-uniform-array-02.html": 0.6462,
    "conformance/uniforms/no-over-optimization-on-uniform-array-03.html": 0.7265,
    "conformance/uniforms/no-over-optimization-on-uniform-array-04.html": 0.7754,
    "conformance/uniforms/no-over-optimization-on-uniform-array-05.html": 0.777,
    "conformance/uniforms/no-over-optimization-on-uniform-array-06.html": 0.7929,
    "conformance/uniforms/no-over-optimization-on-uniform-array-07.html": 0.5654,
    "conformance/uniforms/no-over-optimization-on-uniform-array-08.html": 0.8208,
    "conformance/uniforms/no-over-optimization-on-uniform-array-09.html": 0.5017,
    "conformance/uniforms/no-over-optimization-on-uniform-array-10.html": 0.8269,
    "conformance/uniforms/no-over-optimization-on-uniform-array-11.html": 0.8634,
    "conformance/uniforms/no-over-optimization-on-uniform-array-12.html": 0.7253,
    "conformance/uniforms/no-over-optimization-on-uniform-array-13.html": 0.86,
    "conformance/uniforms/no-over-optimization-on-uniform-array-14.html": 0.7387,
    "conformance/uniforms/no-over-optimization-on-uniform-array-15.html": 0.6781,
    "conformance/uniforms/no-over-optimization-on-uniform-array-16.html": 0.79,
    "conformance/uniforms/no-over-optimization-on-uniform-array-17.html": 0.7417,
    "conformance/uniforms/null-uniform-location.html": 0.3115,
    "conformance/uniforms/out-of-bounds-uniform-array-access.html": 2.4193,
    "conformance/uniforms/uniform-default-values.html": 1.4403,
    "conformance/uniforms/uniform-location.html": 0.2618,
    "conformance/uniforms/uniform-samplers-test.html": 14.0746,
    "conformance/uniforms/uniform-values-per-program.html": 0.9067,
    "deqp/data/gles2/shaders/conditionals.html": 1.0069,
    "deqp/data/gles2/shaders/constant_expressions.html": 1.0037,
    "deqp/data/gles2/shaders/constants.html": 2.1605,
    "deqp/data/gles2/shaders/conversions_matrix_combine.html": 3.0596,
    "deqp/data/gles2/shaders/conversions_matrix_to_matrix.html": 0.8884,
    "deqp/data/gles2/shaders/conversions_scalar_to_matrix.html": 0.9897,
    "deqp/data/gles2/shaders/conversions_scalar_to_scalar.html": 0.9804,
    "deqp/data/gles2/shaders/conversions_scalar_to_vector.html": 2.6756,
    "deqp/data/gles2/shaders/conversions_vector_combine.html": 9.0164,
    "deqp/data/gles2/shaders/conversions_vector_illegal.html": 0.5472,
    "deqp/data/gles2/shaders/conversions_vector_to_scalar.html": 2.3701,
    "deqp/data/gles2/shaders/conversions_vector_to_vector.html": 3.9743,
    "deqp/data/gles2/shaders/declarations.html": 0.317,
    "deqp/data/gles2/shaders/fragdata.html": 0.2535,
    "deqp/data/gles2/shaders/functions.html": 6.5026,
    "deqp/data/gles2/shaders/invalid_texture_functions.html": 0.2321,
    "deqp/data/gles2/shaders/keywords.html": 1.4395,
    "deqp/data/gles2/shaders/linkage.html": 1.5254,
    "deqp/data/gles2/shaders/preprocessor.html": 8.525,
    "deqp/data/gles2/shaders/qualification_order.html": 0.6367,
    "deqp/data/gles2/shaders/reserved_operators.html": 0.2604,
    "deqp/data/gles2/shaders/scoping.html": 1.3013,
    "deqp/data/gles2/shaders/swizzles_bvec2.html": 1.7101,
    "deqp/data/gles2/shaders/swizzles_bvec3.html": 3.2462,
    "deqp/data/gles2/shaders/swizzles_bvec4.html": 4.491,
    "deqp/data/gles2/shaders/swizzles_ivec2.html": 1.9614,
    "deqp/data/gles2/shaders/swizzles_ivec3.html": 3.6585,
    "deqp/data/gles2/shaders/swizzles_ivec4.html": 4.5606,
    "deqp/data/gles2/shaders/swizzles_vec2.html": 1.8434,
    "deqp/data/gles2/shaders/swizzles_vec3.html": 2.8601,
    "deqp/data/gles2/shaders/swizzles_vec4.html": 4.7282
  }
}