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_android_runtimes.json [blame]

{
  "times": {
    "WebglExtension_ANGLE_instanced_arrays": 0.5138,
    "WebglExtension_EXT_blend_minmax": 0.622,
    "WebglExtension_EXT_color_buffer_half_float": 0.3993,
    "WebglExtension_EXT_disjoint_timer_query": 0,
    "WebglExtension_EXT_float_blend": 0,
    "WebglExtension_EXT_frag_depth": 0,
    "WebglExtension_EXT_sRGB": 0.2917,
    "WebglExtension_EXT_shader_texture_lod": 0,
    "WebglExtension_EXT_texture_compression_bptc": 0,
    "WebglExtension_EXT_texture_compression_rgtc": 0,
    "WebglExtension_EXT_texture_filter_anisotropic": 0.5874,
    "WebglExtension_KHR_parallel_shader_compile": 0.6279,
    "WebglExtension_OES_element_index_uint": 0.3913,
    "WebglExtension_OES_fbo_render_mipmap": 0.2564,
    "WebglExtension_OES_standard_derivatives": 0.296,
    "WebglExtension_OES_texture_float": 0.587,
    "WebglExtension_OES_texture_float_linear": 0.5115,
    "WebglExtension_OES_texture_half_float": 0.3391,
    "WebglExtension_OES_texture_half_float_linear": 0.2679,
    "WebglExtension_OES_vertex_array_object": 0.3244,
    "WebglExtension_TestCoverage": 0.2707,
    "WebglExtension_WEBGL_color_buffer_float": 0.314,
    "WebglExtension_WEBGL_compressed_texture_astc": 0.2647,
    "WebglExtension_WEBGL_compressed_texture_etc": 0.2509,
    "WebglExtension_WEBGL_compressed_texture_etc1": 0.2535,
    "WebglExtension_WEBGL_compressed_texture_pvrtc": 0,
    "WebglExtension_WEBGL_compressed_texture_s3tc": 0,
    "WebglExtension_WEBGL_compressed_texture_s3tc_srgb": 0,
    "WebglExtension_WEBGL_debug_renderer_info": 0.3099,
    "WebglExtension_WEBGL_debug_shaders": 0.3299,
    "WebglExtension_WEBGL_depth_texture": 0.2572,
    "WebglExtension_WEBGL_draw_buffers": 0,
    "WebglExtension_WEBGL_lose_context": 0.2959,
    "WebglExtension_WEBGL_multi_draw": 0.3529,
    "WebglExtension_WEBGL_video_texture": 0,
    "WebglExtension_WEBGL_webcodecs_video_frame": 0.3427,
    "conformance/attribs/gl-bindAttribLocation-aliasing.html": 0.5815,
    "conformance/attribs/gl-bindAttribLocation-matrix.html": 0.6555,
    "conformance/attribs/gl-bindAttribLocation-nonexistent-attribute.html": 0.4067,
    "conformance/attribs/gl-bindAttribLocation-repeated.html": 0.4001,
    "conformance/attribs/gl-disabled-vertex-attrib-update.html": 0.4503,
    "conformance/attribs/gl-disabled-vertex-attrib.html": 0.4546,
    "conformance/attribs/gl-enable-vertex-attrib.html": 0.4004,
    "conformance/attribs/gl-matrix-attributes.html": 0.7692,
    "conformance/attribs/gl-vertex-attrib-context-switch.html": 0.2823,
    "conformance/attribs/gl-vertex-attrib-render.html": 0.2938,
    "conformance/attribs/gl-vertex-attrib-unconsumed-out-of-bounds.html": 0.3488,
    "conformance/attribs/gl-vertex-attrib-zero-issues.html": 0.475,
    "conformance/attribs/gl-vertex-attrib.html": 1.0151,
    "conformance/attribs/gl-vertexattribpointer-offsets.html": 0.6685,
    "conformance/attribs/gl-vertexattribpointer.html": 0.7459,
    "conformance/buffers/buffer-bind-test.html": 0.3202,
    "conformance/buffers/buffer-data-and-buffer-sub-data.html": 0.3458,
    "conformance/buffers/buffer-data-array-buffer-delete.html": 2.298,
    "conformance/buffers/buffer-data-dynamic-delay.html": 0.433,
    "conformance/buffers/buffer-uninitialized.html": 0.5017,
    "conformance/buffers/element-array-buffer-delete-recreate.html": 0.3056,
    "conformance/buffers/index-validation-copies-indices.html": 0.5092,
    "conformance/buffers/index-validation-crash-with-buffer-sub-data.html": 0.2178,
    "conformance/buffers/index-validation-large-buffer.html": 0.3101,
    "conformance/buffers/index-validation-verifies-too-many-indices.html": 0.3508,
    "conformance/buffers/index-validation-with-resized-buffer.html": 0.3286,
    "conformance/buffers/index-validation.html": 0.4063,
    "conformance/buffers/vertex-buffer-updated-after-draw.html": 0.2689,
    "conformance/canvas/buffer-offscreen-test.html": 0.381,
    "conformance/canvas/buffer-preserve-test.html": 1.0531,
    "conformance/canvas/canvas-test.html": 0.4734,
    "conformance/canvas/canvas-zero-size.html": 0.4527,
    "conformance/canvas/draw-static-webgl-to-multiple-canvas-test.html": 1.3289,
    "conformance/canvas/draw-webgl-to-canvas-test.html": 0.9514,
    "conformance/canvas/drawingbuffer-hd-dpi-test.html": 0.5079,
    "conformance/canvas/drawingbuffer-static-canvas-test.html": 0.4412,
    "conformance/canvas/drawingbuffer-test.html": 0.3616,
    "conformance/canvas/framebuffer-bindings-affected-by-to-data-url.html": 0.3664,
    "conformance/canvas/framebuffer-bindings-unaffected-on-resize.html": 0.3913,
    "conformance/canvas/rapid-resizing.html": 2.3006,
    "conformance/canvas/render-after-resize-test.html": 6.9015,
    "conformance/canvas/texture-bindings-unaffected-on-resize.html": 0.3349,
    "conformance/canvas/to-data-url-after-composite.html": 0.4179,
    "conformance/canvas/to-data-url-test.html": 1.3059,
    "conformance/canvas/viewport-unchanged-upon-resize.html": 0.3333,
    "conformance/canvas/webgl-to-2d-canvas.html": 0.3902,
    "conformance/context/constants-and-properties.html": 0.2264,
    "conformance/context/context-attribute-preserve-drawing-buffer-antialias.html": 0.4585,
    "conformance/context/context-attribute-preserve-drawing-buffer.html": 0.5015,
    "conformance/context/context-attributes-alpha-depth-stencil-antialias.html": 0.9773,
    "conformance/context/context-creation-and-destruction.html": 1.7736,
    "conformance/context/context-creation.html": 1.8566,
    "conformance/context/context-eviction-with-garbage-collection.html": 1.6782,
    "conformance/context/context-hidden-alpha.html": 0.4879,
    "conformance/context/context-lost-restored.html": 0.4481,
    "conformance/context/context-lost.html": 0.3565,
    "conformance/context/context-no-alpha-fbo-with-alpha.html": 0.3235,
    "conformance/context/context-release-upon-reload.html": 3.647,
    "conformance/context/context-release-with-workers.html": 3.3632,
    "conformance/context/context-size-change.html": 0.2714,
    "conformance/context/context-type-test.html": 0.4567,
    "conformance/context/deleted-object-behavior.html": 0.5059,
    "conformance/context/incorrect-context-object-behaviour.html": 0.5727,
    "conformance/context/methods.html": 0.3344,
    "conformance/context/premultiplyalpha-test.html": 0.89,
    "conformance/context/user-defined-properties-on-context.html": 0.2969,
    "conformance/context/zero-sized-canvas.html": 0.2959,
    "conformance/extensions/angle-instanced-arrays-out-of-bounds.html": 6.602,
    "conformance/extensions/angle-instanced-arrays.html": 2.0158,
    "conformance/extensions/ext-blend-minmax.html": 0.4176,
    "conformance/extensions/ext-color-buffer-half-float.html": 5.7353,
    "conformance/extensions/ext-disjoint-timer-query.html": 0.3096,
    "conformance/extensions/ext-float-blend.html": 0.3962,
    "conformance/extensions/ext-frag-depth.html": 0.7504,
    "conformance/extensions/ext-polygon-offset-clamp.html": 0.3349,
    "conformance/extensions/ext-sRGB.html": 0.3426,
    "conformance/extensions/ext-shader-texture-lod.html": 0.3347,
    "conformance/extensions/ext-texture-compression-bptc.html": 0.3982,
    "conformance/extensions/ext-texture-compression-rgtc.html": 0.3683,
    "conformance/extensions/ext-texture-filter-anisotropic.html": 0.3443,
    "conformance/extensions/get-extension.html": 0.7036,
    "conformance/extensions/khr-parallel-shader-compile.html": 10.1906,
    "conformance/extensions/oes-element-index-uint.html": 0.8439,
    "conformance/extensions/oes-fbo-render-mipmap.html": 0.2967,
    "conformance/extensions/oes-standard-derivatives.html": 0.8576,
    "conformance/extensions/oes-texture-float-linear.html": 0.8432,
    "conformance/extensions/oes-texture-float-with-canvas.html": 1.5679,
    "conformance/extensions/oes-texture-float-with-image-data.html": 0.505,
    "conformance/extensions/oes-texture-float-with-image.html": 0.5678,
    "conformance/extensions/oes-texture-float-with-video.html": 1.8478,
    "conformance/extensions/oes-texture-float.html": 0.486,
    "conformance/extensions/oes-texture-half-float-linear.html": 0.8549,
    "conformance/extensions/oes-texture-half-float-with-canvas.html": 1.5605,
    "conformance/extensions/oes-texture-half-float-with-image-data.html": 0.5867,
    "conformance/extensions/oes-texture-half-float-with-image.html": 0.543,
    "conformance/extensions/oes-texture-half-float-with-video.html": 1.7591,
    "conformance/extensions/oes-texture-half-float.html": 0.6441,
    "conformance/extensions/oes-vertex-array-object-bufferData.html": 0.3441,
    "conformance/extensions/oes-vertex-array-object.html": 0.4693,
    "conformance/extensions/s3tc-and-rgtc.html": 0.3922,
    "conformance/extensions/webgl-compressed-texture-astc.html": 5.1657,
    "conformance/extensions/webgl-compressed-texture-etc.html": 0.4116,
    "conformance/extensions/webgl-compressed-texture-etc1.html": 0.2468,
    "conformance/extensions/webgl-compressed-texture-pvrtc.html": 0.2289,
    "conformance/extensions/webgl-compressed-texture-s3tc-srgb.html": 0.3283,
    "conformance/extensions/webgl-compressed-texture-size-limit.html": 0.257,
    "conformance/extensions/webgl-debug-renderer-info.html": 0.2698,
    "conformance/extensions/webgl-debug-shaders.html": 0.3806,
    "conformance/extensions/webgl-depth-texture.html": 0.4876,
    "conformance/extensions/webgl-draw-buffers-broadcast-return.html": 0.2531,
    "conformance/extensions/webgl-draw-buffers-framebuffer-unsupported.html": 0.2163,
    "conformance/extensions/webgl-draw-buffers-max-draw-buffers.html": 0.3368,
    "conformance/extensions/webgl-draw-buffers.html": 0.3574,
    "conformance/extensions/webgl-multi-draw.html": 3.1513,
    "conformance/glsl/bugs/angle-ambiguous-function-call.html": 0.3584,
    "conformance/glsl/bugs/angle-constructor-invalid-parameters.html": 0.327,
    "conformance/glsl/bugs/angle-d3d11-compiler-error.html": 0.3058,
    "conformance/glsl/bugs/angle-dx-variable-bug.html": 0.2352,
    "conformance/glsl/bugs/array-of-struct-with-int-first-position.html": 0.3615,
    "conformance/glsl/bugs/assign-to-swizzled-twice-in-function.html": 0.3533,
    "conformance/glsl/bugs/bool-type-cast-bug-int-float.html": 0.4544,
    "conformance/glsl/bugs/character-set.html": 0.4123,
    "conformance/glsl/bugs/compare-loop-index-to-uniform.html": 0.2983,
    "conformance/glsl/bugs/complex-glsl-does-not-crash.html": 2.2265,
    "conformance/glsl/bugs/compound-assignment-type-combination.html": 1.6411,
    "conformance/glsl/bugs/conditional-discard-in-loop.html": 0.3882,
    "conformance/glsl/bugs/conditional-discard-optimization.html": 0.3009,
    "conformance/glsl/bugs/conditional-texture-fetch.html": 0.3104,
    "conformance/glsl/bugs/constant-precision-qualifier.html": 0.4027,
    "conformance/glsl/bugs/essl3-shaders-with-webgl1.html": 0.2903,
    "conformance/glsl/bugs/floor-div-cos-should-not-truncate.html": 0.3944,
    "conformance/glsl/bugs/floored-division-accuracy.html": 0.3223,
    "conformance/glsl/bugs/fragcoord-linking-bug.html": 0.2489,
    "conformance/glsl/bugs/gl-fragcoord-multisampling-bug.html": 0.3093,
    "conformance/glsl/bugs/global-invariant-does-not-leak-across-shaders.html": 0.2263,
    "conformance/glsl/bugs/if-return-and-elseif.html": 0.2253,
    "conformance/glsl/bugs/in-parameter-passed-as-inout-argument-and-global.html": 0.2575,
    "conformance/glsl/bugs/init-array-with-loop.html": 0.2608,
    "conformance/glsl/bugs/invariant-does-not-leak-across-shaders.html": 0.2351,
    "conformance/glsl/bugs/logic-inside-block-without-braces.html": 0.2475,
    "conformance/glsl/bugs/long-expressions-should-not-crash.html": 1.4118,
    "conformance/glsl/bugs/loop-if-loop-gradient.html": 0.3285,
    "conformance/glsl/bugs/modulo-arithmetic-accuracy.html": 0.2938,
    "conformance/glsl/bugs/multiplication-assignment.html": 0.2252,
    "conformance/glsl/bugs/nested-functions-should-not-crash.html": 0.7333,
    "conformance/glsl/bugs/nested-loops-with-break-and-continue.html": 0.3488,
    "conformance/glsl/bugs/nested-sequence-operator.html": 0.3159,
    "conformance/glsl/bugs/pow-of-small-constant-in-user-defined-function.html": 0.3092,
    "conformance/glsl/bugs/pow-with-constant-exponent-should-not-crash.html": 0.3189,
    "conformance/glsl/bugs/qualcomm-crash.html": 0.2609,
    "conformance/glsl/bugs/qualcomm-loop-with-continue-crash.html": 0.223,
    "conformance/glsl/bugs/sampler-array-struct-function-arg.html": 0.3563,
    "conformance/glsl/bugs/sampler-array-using-loop-index.html": 0.2537,
    "conformance/glsl/bugs/sampler-struct-function-arg.html": 0.2501,
    "conformance/glsl/bugs/sequence-operator-evaluation-order.html": 0.3262,
    "conformance/glsl/bugs/sketchfab-lighting-shader-crash.html": 0.311,
    "conformance/glsl/bugs/struct-constructor-highp-bug.html": 0.3183,
    "conformance/glsl/bugs/struct-with-single-member-constructor.html": 0.2466,
    "conformance/glsl/bugs/temp-expressions-should-not-crash.html": 1.5456,
    "conformance/glsl/bugs/unary-minus-operator-float-bug.html": 0.2425,
    "conformance/glsl/bugs/undefined-index-should-not-crash.html": 0.2773,
    "conformance/glsl/bugs/uniforms-should-not-lose-values.html": 0.3399,
    "conformance/glsl/bugs/varying-arrays-should-not-be-reversed.html": 0.2609,
    "conformance/glsl/bugs/vector-matrix-constructor-scalarization.html": 0.4439,
    "conformance/glsl/bugs/vector-scalar-arithmetic-inside-loop-complex.html": 0.3007,
    "conformance/glsl/bugs/vector-scalar-arithmetic-inside-loop.html": 0.2911,
    "conformance/glsl/constructors/glsl-construct-bvec2.html": 0.7489,
    "conformance/glsl/constructors/glsl-construct-bvec3.html": 0.9856,
    "conformance/glsl/constructors/glsl-construct-bvec4.html": 1.2446,
    "conformance/glsl/constructors/glsl-construct-ivec2.html": 0.7788,
    "conformance/glsl/constructors/glsl-construct-ivec3.html": 1.0493,
    "conformance/glsl/constructors/glsl-construct-ivec4.html": 1.2025,
    "conformance/glsl/constructors/glsl-construct-mat2.html": 0.9466,
    "conformance/glsl/constructors/glsl-construct-mat3.html": 0.6771,
    "conformance/glsl/constructors/glsl-construct-mat4.html": 0.6626,
    "conformance/glsl/constructors/glsl-construct-vec-mat-corner-cases.html": 0.3179,
    "conformance/glsl/constructors/glsl-construct-vec-mat-index.html": 0.3302,
    "conformance/glsl/constructors/glsl-construct-vec2.html": 0.793,
    "conformance/glsl/constructors/glsl-construct-vec3.html": 1.1483,
    "conformance/glsl/constructors/glsl-construct-vec4.html": 1.2352,
    "conformance/glsl/functions/glsl-function-abs.html": 0.737,
    "conformance/glsl/functions/glsl-function-acos.html": 0.7047,
    "conformance/glsl/functions/glsl-function-asin.html": 0.6306,
    "conformance/glsl/functions/glsl-function-atan-xy.html": 0.6415,
    "conformance/glsl/functions/glsl-function-atan.html": 0.6817,
    "conformance/glsl/functions/glsl-function-ceil.html": 0.7285,
    "conformance/glsl/functions/glsl-function-clamp-float.html": 0.7279,
    "conformance/glsl/functions/glsl-function-clamp-gentype.html": 0.6931,
    "conformance/glsl/functions/glsl-function-cos.html": 0.6109,
    "conformance/glsl/functions/glsl-function-cross.html": 0.3836,
    "conformance/glsl/functions/glsl-function-distance.html": 0.694,
    "conformance/glsl/functions/glsl-function-dot.html": 0.7437,
    "conformance/glsl/functions/glsl-function-faceforward.html": 0.7083,
    "conformance/glsl/functions/glsl-function-floor.html": 0.6818,
    "conformance/glsl/functions/glsl-function-fract.html": 0.7545,
    "conformance/glsl/functions/glsl-function-length.html": 0.6796,
    "conformance/glsl/functions/glsl-function-max-float.html": 0.7002,
    "conformance/glsl/functions/glsl-function-max-gentype.html": 0.7403,
    "conformance/glsl/functions/glsl-function-min-float.html": 0.7369,
    "conformance/glsl/functions/glsl-function-min-gentype.html": 0.679,
    "conformance/glsl/functions/glsl-function-mix-float.html": 0.6777,
    "conformance/glsl/functions/glsl-function-mix-gentype.html": 0.6776,
    "conformance/glsl/functions/glsl-function-mod-float.html": 0.7489,
    "conformance/glsl/functions/glsl-function-mod-gentype.html": 0.7028,
    "conformance/glsl/functions/glsl-function-normalize.html": 0.7014,
    "conformance/glsl/functions/glsl-function-reflect.html": 0.7504,
    "conformance/glsl/functions/glsl-function-sign.html": 0.759,
    "conformance/glsl/functions/glsl-function-sin.html": 0.626,
    "conformance/glsl/functions/glsl-function-smoothstep-float.html": 0.6231,
    "conformance/glsl/functions/glsl-function-smoothstep-gentype.html": 0.7089,
    "conformance/glsl/functions/glsl-function-step-float.html": 0.7462,
    "conformance/glsl/functions/glsl-function-step-gentype.html": 0.6815,
    "conformance/glsl/functions/glsl-function.html": 0.6826,
    "conformance/glsl/implicit/add_int_float.vert.html": 0.2449,
    "conformance/glsl/implicit/add_int_mat2.vert.html": 0.2283,
    "conformance/glsl/implicit/add_int_mat3.vert.html": 0.2462,
    "conformance/glsl/implicit/add_int_mat4.vert.html": 0.2666,
    "conformance/glsl/implicit/add_int_vec2.vert.html": 0.2463,
    "conformance/glsl/implicit/add_int_vec3.vert.html": 0.2573,
    "conformance/glsl/implicit/add_int_vec4.vert.html": 0.2522,
    "conformance/glsl/implicit/add_ivec2_vec2.vert.html": 0.2975,
    "conformance/glsl/implicit/add_ivec3_vec3.vert.html": 0.4308,
    "conformance/glsl/implicit/add_ivec4_vec4.vert.html": 0.2706,
    "conformance/glsl/implicit/assign_int_to_float.vert.html": 0.2476,
    "conformance/glsl/implicit/assign_ivec2_to_vec2.vert.html": 0.2558,
    "conformance/glsl/implicit/assign_ivec3_to_vec3.vert.html": 0.2708,
    "conformance/glsl/implicit/assign_ivec4_to_vec4.vert.html": 0.2918,
    "conformance/glsl/implicit/construct_struct.vert.html": 0.2593,
    "conformance/glsl/implicit/divide_int_float.vert.html": 0.2517,
    "conformance/glsl/implicit/divide_int_mat2.vert.html": 0.3968,
    "conformance/glsl/implicit/divide_int_mat3.vert.html": 0.2599,
    "conformance/glsl/implicit/divide_int_mat4.vert.html": 0.2703,
    "conformance/glsl/implicit/divide_int_vec2.vert.html": 0.2766,
    "conformance/glsl/implicit/divide_int_vec3.vert.html": 0.3298,
    "conformance/glsl/implicit/divide_int_vec4.vert.html": 0.3179,
    "conformance/glsl/implicit/divide_ivec2_vec2.vert.html": 0.2629,
    "conformance/glsl/implicit/divide_ivec3_vec3.vert.html": 0.2917,
    "conformance/glsl/implicit/divide_ivec4_vec4.vert.html": 0.2561,
    "conformance/glsl/implicit/equal_int_float.vert.html": 0.3333,
    "conformance/glsl/implicit/equal_ivec2_vec2.vert.html": 0.2676,
    "conformance/glsl/implicit/equal_ivec3_vec3.vert.html": 0.3255,
    "conformance/glsl/implicit/equal_ivec4_vec4.vert.html": 0.2335,
    "conformance/glsl/implicit/function_int_float.vert.html": 0.3225,
    "conformance/glsl/implicit/function_ivec2_vec2.vert.html": 0.2788,
    "conformance/glsl/implicit/function_ivec3_vec3.vert.html": 0.2377,
    "conformance/glsl/implicit/function_ivec4_vec4.vert.html": 0.2452,
    "conformance/glsl/implicit/greater_than.vert.html": 0.2447,
    "conformance/glsl/implicit/greater_than_equal.vert.html": 0.2576,
    "conformance/glsl/implicit/less_than.vert.html": 0.3028,
    "conformance/glsl/implicit/less_than_equal.vert.html": 0.2409,
    "conformance/glsl/implicit/multiply_int_float.vert.html": 0.2518,
    "conformance/glsl/implicit/multiply_int_mat2.vert.html": 0.3005,
    "conformance/glsl/implicit/multiply_int_mat3.vert.html": 0.2441,
    "conformance/glsl/implicit/multiply_int_mat4.vert.html": 0.2664,
    "conformance/glsl/implicit/multiply_int_vec2.vert.html": 0.3361,
    "conformance/glsl/implicit/multiply_int_vec3.vert.html": 0.2731,
    "conformance/glsl/implicit/multiply_int_vec4.vert.html": 0.2812,
    "conformance/glsl/implicit/multiply_ivec2_vec2.vert.html": 0.3115,
    "conformance/glsl/implicit/multiply_ivec3_vec3.vert.html": 0.3166,
    "conformance/glsl/implicit/multiply_ivec4_vec4.vert.html": 0.3077,
    "conformance/glsl/implicit/not_equal_int_float.vert.html": 0.2387,
    "conformance/glsl/implicit/not_equal_ivec2_vec2.vert.html": 0.3231,
    "conformance/glsl/implicit/not_equal_ivec3_vec3.vert.html": 0.3215,
    "conformance/glsl/implicit/not_equal_ivec4_vec4.vert.html": 0.2393,
    "conformance/glsl/implicit/subtract_int_float.vert.html": 0.2743,
    "conformance/glsl/implicit/subtract_int_mat2.vert.html": 0.2494,
    "conformance/glsl/implicit/subtract_int_mat3.vert.html": 0.2474,
    "conformance/glsl/implicit/subtract_int_mat4.vert.html": 0.3052,
    "conformance/glsl/implicit/subtract_int_vec2.vert.html": 0.3148,
    "conformance/glsl/implicit/subtract_int_vec3.vert.html": 0.231,
    "conformance/glsl/implicit/subtract_int_vec4.vert.html": 0.2255,
    "conformance/glsl/implicit/subtract_ivec2_vec2.vert.html": 0.3049,
    "conformance/glsl/implicit/subtract_ivec3_vec3.vert.html": 0.2952,
    "conformance/glsl/implicit/subtract_ivec4_vec4.vert.html": 0.2602,
    "conformance/glsl/implicit/ternary_int_float.vert.html": 0.2627,
    "conformance/glsl/implicit/ternary_ivec2_vec2.vert.html": 0.2253,
    "conformance/glsl/implicit/ternary_ivec3_vec3.vert.html": 0.2458,
    "conformance/glsl/implicit/ternary_ivec4_vec4.vert.html": 0.2994,
    "conformance/glsl/literals/float_literal.vert.html": 0.3183,
    "conformance/glsl/literals/literal_precision.html": 0.2349,
    "conformance/glsl/literals/overflow_leak.vert.html": 0.2469,
    "conformance/glsl/matrices/glsl-mat3-construction.html": 0.3814,
    "conformance/glsl/matrices/glsl-mat4-to-mat3.html": 0.3988,
    "conformance/glsl/matrices/matrix-compound-multiply.html": 0.3358,
    "conformance/glsl/misc/attrib-location-length-limits.html": 0.3531,
    "conformance/glsl/misc/boolean_precision.html": 0.2497,
    "conformance/glsl/misc/const-variable-initialization.html": 1.3476,
    "conformance/glsl/misc/embedded-struct-definitions-forbidden.html": 0.2413,
    "conformance/glsl/misc/empty-declaration.html": 0.2759,
    "conformance/glsl/misc/empty_main.vert.html": 0.3082,
    "conformance/glsl/misc/expression-list-in-declarator-initializer.html": 0.9579,
    "conformance/glsl/misc/fragcolor-fragdata-invariant.html": 0.3223,
    "conformance/glsl/misc/gl_position_unset.vert.html": 0.3305,
    "conformance/glsl/misc/global-variable-init.html": 0.4031,
    "conformance/glsl/misc/glsl-function-nodes.html": 0.3391,
    "conformance/glsl/misc/glsl-long-variable-names.html": 0.3012,
    "conformance/glsl/misc/glsl-vertex-branch.html": 0.2714,
    "conformance/glsl/misc/large-loop-compile.html": 0.7954,
    "conformance/glsl/misc/local-variable-shadowing-outer-function.html": 0.2285,
    "conformance/glsl/misc/non-ascii-comments.vert.html": 0.2554,
    "conformance/glsl/misc/non-ascii.vert.html": 0.2234,
    "conformance/glsl/misc/re-compile-re-link.html": 0.3906,
    "conformance/glsl/misc/sampler-operand.html": 0.2124,
    "conformance/glsl/misc/sequence-operator-returns-constant.html": 0.3319,
    "conformance/glsl/misc/shader-precision-format-obeyed.html": 0.31,
    "conformance/glsl/misc/shader-struct-scope.html": 0.2839,
    "conformance/glsl/misc/shader-uniform-packing-restrictions.html": 3.0327,
    "conformance/glsl/misc/shader-varying-packing-restrictions.html": 1.1166,
    "conformance/glsl/misc/shader-with-256-character-define.html": 0.276,
    "conformance/glsl/misc/shader-with-256-character-identifier.frag.html": 0.2702,
    "conformance/glsl/misc/shader-with-257-character-define.html": 0.3247,
    "conformance/glsl/misc/shader-with-257-character-identifier.frag.html": 0.2201,
    "conformance/glsl/misc/shader-with-_webgl-identifier.vert.html": 0.2412,
    "conformance/glsl/misc/shader-with-arbitrary-indexing.frag.html": 0.2351,
    "conformance/glsl/misc/shader-with-arbitrary-indexing.vert.html": 0.2701,
    "conformance/glsl/misc/shader-with-array-of-structs-containing-arrays.html": 0.39,
    "conformance/glsl/misc/shader-with-array-of-structs-uniform.html": 0.3501,
    "conformance/glsl/misc/shader-with-attrib-array.vert.html": 0.2111,
    "conformance/glsl/misc/shader-with-attrib-struct.vert.html": 0.2895,
    "conformance/glsl/misc/shader-with-clipvertex.vert.html": 0.2978,
    "conformance/glsl/misc/shader-with-comma-assignment.html": 0.2742,
    "conformance/glsl/misc/shader-with-comma-conditional-assignment.html": 0.4354,
    "conformance/glsl/misc/shader-with-comma-separated-variable-declarations.html": 0.2866,
    "conformance/glsl/misc/shader-with-conditional-scoping-negative.html": 0.217,
    "conformance/glsl/misc/shader-with-conditional-scoping.html": 0.2861,
    "conformance/glsl/misc/shader-with-default-precision.frag.html": 0.2758,
    "conformance/glsl/misc/shader-with-default-precision.vert.html": 0.219,
    "conformance/glsl/misc/shader-with-dfdx-no-ext.frag.html": 0.3215,
    "conformance/glsl/misc/shader-with-dfdx.frag.html": 0.2398,
    "conformance/glsl/misc/shader-with-do-loop.html": 0.304,
    "conformance/glsl/misc/shader-with-error-directive.html": 0.3056,
    "conformance/glsl/misc/shader-with-explicit-int-cast.vert.html": 0.252,
    "conformance/glsl/misc/shader-with-float-return-value.frag.html": 0.2479,
    "conformance/glsl/misc/shader-with-for-loop.html": 0.336,
    "conformance/glsl/misc/shader-with-for-scoping.html": 0.2311,
    "conformance/glsl/misc/shader-with-frag-depth.frag.html": 0.3288,
    "conformance/glsl/misc/shader-with-function-recursion.frag.html": 0.2576,
    "conformance/glsl/misc/shader-with-function-scoped-struct.html": 0.2602,
    "conformance/glsl/misc/shader-with-functional-scoping.html": 0.3473,
    "conformance/glsl/misc/shader-with-glcolor.vert.html": 0.2361,
    "conformance/glsl/misc/shader-with-gles-1.frag.html": 0.3181,
    "conformance/glsl/misc/shader-with-gles-symbol.frag.html": 0.3234,
    "conformance/glsl/misc/shader-with-global-variable-precision-mismatch.html": 0.2701,
    "conformance/glsl/misc/shader-with-glprojectionmatrix.vert.html": 0.2983,
    "conformance/glsl/misc/shader-with-hex-int-constant-macro.html": 0.2246,
    "conformance/glsl/misc/shader-with-implicit-vec3-to-vec4-cast.vert.html": 0.3111,
    "conformance/glsl/misc/shader-with-include.vert.html": 0.2339,
    "conformance/glsl/misc/shader-with-int-return-value.frag.html": 0.2878,
    "conformance/glsl/misc/shader-with-invalid-identifier.frag.html": 0.3207,
    "conformance/glsl/misc/shader-with-ivec2-return-value.frag.html": 0.2199,
    "conformance/glsl/misc/shader-with-ivec3-return-value.frag.html": 0.2416,
    "conformance/glsl/misc/shader-with-ivec4-return-value.frag.html": 0.2663,
    "conformance/glsl/misc/shader-with-limited-indexing.frag.html": 0.2387,
    "conformance/glsl/misc/shader-with-long-line.html": 0.3377,
    "conformance/glsl/misc/shader-with-non-ascii-error.frag.html": 0.2301,
    "conformance/glsl/misc/shader-with-non-reserved-words-1-of-8.html": 5.3485,
    "conformance/glsl/misc/shader-with-non-reserved-words-2-of-8.html": 5.3322,
    "conformance/glsl/misc/shader-with-non-reserved-words-3-of-8.html": 5.4992,
    "conformance/glsl/misc/shader-with-non-reserved-words-4-of-8.html": 5.105,
    "conformance/glsl/misc/shader-with-non-reserved-words-5-of-8.html": 2.2128,
    "conformance/glsl/misc/shader-with-non-reserved-words-6-of-8.html": 3.3283,
    "conformance/glsl/misc/shader-with-non-reserved-words-7-of-8.html": 5.2802,
    "conformance/glsl/misc/shader-with-non-reserved-words-8-of-8.html": 1.8349,
    "conformance/glsl/misc/shader-with-precision.frag.html": 0.3184,
    "conformance/glsl/misc/shader-with-preprocessor-whitespace.html": 0.3167,
    "conformance/glsl/misc/shader-with-quoted-error.frag.html": 0.2657,
    "conformance/glsl/misc/shader-with-reserved-words.html": 6.9736,
    "conformance/glsl/misc/shader-with-short-circuiting-operators.html": 0.7197,
    "conformance/glsl/misc/shader-with-similar-uniform-array-names.html": 0.3492,
    "conformance/glsl/misc/shader-with-too-many-uniforms.html": 0.3605,
    "conformance/glsl/misc/shader-with-two-initializer-types.html": 0.2928,
    "conformance/glsl/misc/shader-with-undefined-preprocessor-symbol.frag.html": 0.2218,
    "conformance/glsl/misc/shader-with-uniform-in-loop-condition.vert.html": 0.2732,
    "conformance/glsl/misc/shader-with-vec2-return-value.frag.html": 0.2693,
    "conformance/glsl/misc/shader-with-vec3-return-value.frag.html": 0.2359,
    "conformance/glsl/misc/shader-with-vec4-return-value.frag.html": 0.2639,
    "conformance/glsl/misc/shader-with-vec4-vec3-vec4-conditional.html": 0.2387,
    "conformance/glsl/misc/shader-with-version-100.frag.html": 0.2015,
    "conformance/glsl/misc/shader-with-version-100.vert.html": 0.2605,
    "conformance/glsl/misc/shader-with-version-120.vert.html": 0.2212,
    "conformance/glsl/misc/shader-with-version-130.vert.html": 0.2527,
    "conformance/glsl/misc/shader-with-webgl-identifier.vert.html": 0.251,
    "conformance/glsl/misc/shader-with-while-loop.html": 0.2126,
    "conformance/glsl/misc/shader-without-precision.frag.html": 0.2342,
    "conformance/glsl/misc/shaders-with-constant-expression-loop-conditions.html": 0.263,
    "conformance/glsl/misc/shaders-with-invariance.html": 0.31,
    "conformance/glsl/misc/shaders-with-mis-matching-uniforms.html": 0.4831,
    "conformance/glsl/misc/shaders-with-mis-matching-varyings.html": 0.3473,
    "conformance/glsl/misc/shaders-with-missing-varyings.html": 0.304,
    "conformance/glsl/misc/shaders-with-name-conflicts.html": 0.235,
    "conformance/glsl/misc/shaders-with-uniform-structs.html": 0.3041,
    "conformance/glsl/misc/shaders-with-varyings.html": 0.2489,
    "conformance/glsl/misc/shared.html": 0.2754,
    "conformance/glsl/misc/struct-as-inout-parameter.html": 0.4091,
    "conformance/glsl/misc/struct-as-out-parameter.html": 0.3515,
    "conformance/glsl/misc/struct-assign.html": 0.3169,
    "conformance/glsl/misc/struct-equals.html": 0.3212,
    "conformance/glsl/misc/struct-mixed-array-declarators.html": 0.8586,
    "conformance/glsl/misc/struct-nesting-exceeds-maximum.html": 0.301,
    "conformance/glsl/misc/struct-nesting-of-variable-names.html": 2.2797,
    "conformance/glsl/misc/struct-nesting-under-maximum.html": 0.2763,
    "conformance/glsl/misc/struct-specifiers-in-uniforms.html": 0.5258,
    "conformance/glsl/misc/struct-unary-operators.html": 0.3299,
    "conformance/glsl/misc/ternary-operator-on-arrays.html": 0.3017,
    "conformance/glsl/misc/ternary-operators-in-global-initializers.html": 0.4479,
    "conformance/glsl/misc/ternary-operators-in-initializers.html": 0.451,
    "conformance/glsl/misc/uniform-location-length-limits.html": 0.2326,
    "conformance/glsl/misc/uninitialized-local-global-variables.html": 0.5049,
    "conformance/glsl/preprocessor/comments.html": 0.336,
    "conformance/glsl/preprocessor/macro-expansion-tricky.html": 0.3545,
    "conformance/glsl/reserved/_webgl_field.vert.html": 0.2301,
    "conformance/glsl/reserved/_webgl_function.vert.html": 0.2496,
    "conformance/glsl/reserved/_webgl_struct.vert.html": 0.2222,
    "conformance/glsl/reserved/_webgl_variable.vert.html": 0.2862,
    "conformance/glsl/reserved/webgl_field.vert.html": 0.2328,
    "conformance/glsl/reserved/webgl_function.vert.html": 0.2371,
    "conformance/glsl/reserved/webgl_struct.vert.html": 0.3049,
    "conformance/glsl/reserved/webgl_variable.vert.html": 0.2194,
    "conformance/glsl/samplers/glsl-function-texture2d-bias.html": 0.4001,
    "conformance/glsl/samplers/glsl-function-texture2dlod.html": 0.3472,
    "conformance/glsl/samplers/glsl-function-texture2dproj.html": 0.4516,
    "conformance/glsl/samplers/glsl-function-texture2dprojlod.html": 0.8492,
    "conformance/glsl/variables/gl-fragcoord-xy-values.html": 0.2935,
    "conformance/glsl/variables/gl-fragcoord.html": 0.3305,
    "conformance/glsl/variables/gl-fragdata-and-fragcolor.html": 0.264,
    "conformance/glsl/variables/gl-frontfacing.html": 0.2853,
    "conformance/glsl/variables/gl-pointcoord.html": 0.3385,
    "conformance/glsl/variables/glsl-built-ins.html": 0.4899,
    "conformance/limits/gl-line-width.html": 0.3596,
    "conformance/limits/gl-max-texture-dimensions.html": 0.2447,
    "conformance/limits/gl-min-attribs.html": 0.2701,
    "conformance/limits/gl-min-textures.html": 0.2488,
    "conformance/limits/gl-min-uniforms.html": 0.2832,
    "conformance/misc/bad-arguments-test.html": 0.3391,
    "conformance/misc/boolean-argument-conversion.html": 0.2921,
    "conformance/misc/delayed-drawing.html": 1.3005,
    "conformance/misc/error-reporting.html": 0.3138,
    "conformance/misc/expando-loss.html": 0.4772,
    "conformance/misc/functions-returning-strings.html": 0.2511,
    "conformance/misc/hint.html": 0.435,
    "conformance/misc/instanceof-test.html": 0.5119,
    "conformance/misc/invalid-passed-params.html": 0.347,
    "conformance/misc/is-object.html": 0.3371,
    "conformance/misc/null-object-behaviour.html": 0.3105,
    "conformance/misc/object-deletion-behaviour.html": 0.524,
    "conformance/misc/shader-precision-format.html": 0.4594,
    "conformance/misc/type-conversion-test.html": 0.4908,
    "conformance/misc/uninitialized-test.html": 0.5012,
    "conformance/misc/webgl-specific-stencil-settings.html": 0.6802,
    "conformance/misc/webgl-specific.html": 0.3258,
    "conformance/more/conformance/constants.html": 0.2591,
    "conformance/more/conformance/getContext.html": 0.3011,
    "conformance/more/conformance/methods.html": 0.2472,
    "conformance/more/conformance/quickCheckAPI-A.html": 0.2938,
    "conformance/more/conformance/quickCheckAPI-B1.html": 0.4907,
    "conformance/more/conformance/quickCheckAPI-B2.html": 0.3078,
    "conformance/more/conformance/quickCheckAPI-B3.html": 0.3139,
    "conformance/more/conformance/quickCheckAPI-B4.html": 0.2896,
    "conformance/more/conformance/quickCheckAPI-C.html": 0.2844,
    "conformance/more/conformance/quickCheckAPI-D_G.html": 0.3762,
    "conformance/more/conformance/quickCheckAPI-G_I.html": 0.5308,
    "conformance/more/conformance/quickCheckAPI-L_S.html": 0.3289,
    "conformance/more/conformance/quickCheckAPI-S_V.html": 0.3951,
    "conformance/more/conformance/webGLArrays.html": 0.3493,
    "conformance/more/functions/bindBuffer.html": 0.316,
    "conformance/more/functions/bindBufferBadArgs.html": 0.2796,
    "conformance/more/functions/bindFramebufferLeaveNonZero.html": 0.211,
    "conformance/more/functions/bufferData.html": 0.3885,
    "conformance/more/functions/bufferDataBadArgs.html": 0.3423,
    "conformance/more/functions/bufferSubData.html": 0.281,
    "conformance/more/functions/bufferSubDataBadArgs.html": 0.3884,
    "conformance/more/functions/copyTexImage2D.html": 0.35,
    "conformance/more/functions/copyTexImage2DBadArgs.html": 0.3486,
    "conformance/more/functions/copyTexSubImage2D.html": 0.4296,
    "conformance/more/functions/copyTexSubImage2DBadArgs.html": 0.5042,
    "conformance/more/functions/deleteBufferBadArgs.html": 0.2356,
    "conformance/more/functions/drawArrays.html": 0.3091,
    "conformance/more/functions/drawElements.html": 0.4095,
    "conformance/more/functions/isTests.html": 0.361,
    "conformance/more/functions/isTestsBadArgs.html": 0.3247,
    "conformance/more/functions/readPixels.html": 0.2787,
    "conformance/more/functions/readPixelsBadArgs.html": 0.4035,
    "conformance/more/functions/texImage2D.html": 0.3082,
    "conformance/more/functions/texImage2DBadArgs.html": 0.432,
    "conformance/more/functions/texImage2DHTML.html": 0.484,
    "conformance/more/functions/texImage2DHTMLBadArgs.html": 0.297,
    "conformance/more/functions/texSubImage2D.html": 0.2529,
    "conformance/more/functions/texSubImage2DBadArgs.html": 0.3522,
    "conformance/more/functions/texSubImage2DHTML.html": 0.4813,
    "conformance/more/functions/texSubImage2DHTMLBadArgs.html": 0.2801,
    "conformance/more/functions/uniformMatrix.html": 0.3172,
    "conformance/more/functions/uniformMatrixBadArgs.html": 0.4479,
    "conformance/more/functions/uniformf.html": 0.3173,
    "conformance/more/functions/uniformfArrayLen1.html": 0.3903,
    "conformance/more/functions/uniformfBadArgs.html": 0.3668,
    "conformance/more/functions/uniformi.html": 0.2938,
    "conformance/more/functions/uniformiBadArgs.html": 0.3698,
    "conformance/more/functions/vertexAttrib.html": 0.3448,
    "conformance/more/functions/vertexAttribBadArgs.html": 0.3147,
    "conformance/more/functions/vertexAttribPointer.html": 0.3072,
    "conformance/more/functions/vertexAttribPointerBadArgs.html": 0.3216,
    "conformance/more/glsl/arrayOutOfBounds.html": 0.3354,
    "conformance/more/glsl/uniformOutOfBounds.html": 0.4121,
    "conformance/offscreencanvas/context-attribute-preserve-drawing-buffer.html": 0.7439,
    "conformance/offscreencanvas/context-creation-worker.html": 0.3527,
    "conformance/offscreencanvas/context-creation.html": 0.2594,
    "conformance/offscreencanvas/context-lost-restored-worker.html": 0.3751,
    "conformance/offscreencanvas/context-lost-restored.html": 0.359,
    "conformance/offscreencanvas/context-lost-worker.html": 0.3182,
    "conformance/offscreencanvas/context-lost.html": 0.3629,
    "conformance/offscreencanvas/methods-worker.html": 0.3421,
    "conformance/offscreencanvas/methods.html": 0.2408,
    "conformance/offscreencanvas/offscreencanvas-resize.html": 0.2524,
    "conformance/offscreencanvas/offscreencanvas-timer-query.html": 0.2655,
    "conformance/offscreencanvas/offscreencanvas-transfer-image-bitmap.html": 0.3718,
    "conformance/ogles/GL/abs/abs_001_to_006.html": 1.04,
    "conformance/ogles/GL/acos/acos_001_to_006.html": 1.1851,
    "conformance/ogles/GL/all/all_001_to_004.html": 0.8131,
    "conformance/ogles/GL/any/any_001_to_004.html": 0.8857,
    "conformance/ogles/GL/array/array_001_to_006.html": 0.8906,
    "conformance/ogles/GL/asin/asin_001_to_006.html": 1.358,
    "conformance/ogles/GL/atan/atan_001_to_008.html": 1.4777,
    "conformance/ogles/GL/atan/atan_009_to_012.html": 1.0394,
    "conformance/ogles/GL/biConstants/biConstants_001_to_008.html": 1.2429,
    "conformance/ogles/GL/biConstants/biConstants_009_to_016.html": 1.0808,
    "conformance/ogles/GL/biuDepthRange/biuDepthRange_001_to_002.html": 0.4834,
    "conformance/ogles/GL/build/build_001_to_008.html": 0.4931,
    "conformance/ogles/GL/build/build_009_to_016.html": 0.4746,
    "conformance/ogles/GL/build/build_017_to_024.html": 0.5414,
    "conformance/ogles/GL/build/build_025_to_032.html": 0.3613,
    "conformance/ogles/GL/build/build_033_to_040.html": 0.3817,
    "conformance/ogles/GL/build/build_041_to_048.html": 0.4298,
    "conformance/ogles/GL/build/build_049_to_056.html": 0.4245,
    "conformance/ogles/GL/build/build_057_to_064.html": 0.4042,
    "conformance/ogles/GL/build/build_065_to_072.html": 0.4001,
    "conformance/ogles/GL/build/build_073_to_080.html": 0.4147,
    "conformance/ogles/GL/build/build_081_to_088.html": 0.4258,
    "conformance/ogles/GL/build/build_089_to_096.html": 0.3548,
    "conformance/ogles/GL/build/build_097_to_104.html": 0.4634,
    "conformance/ogles/GL/build/build_105_to_112.html": 0.3998,
    "conformance/ogles/GL/build/build_113_to_120.html": 0.4218,
    "conformance/ogles/GL/build/build_121_to_128.html": 0.3777,
    "conformance/ogles/GL/build/build_129_to_136.html": 0.4041,
    "conformance/ogles/GL/build/build_137_to_144.html": 0.4159,
    "conformance/ogles/GL/build/build_145_to_152.html": 0.3447,
    "conformance/ogles/GL/build/build_153_to_160.html": 0.4182,
    "conformance/ogles/GL/build/build_161_to_168.html": 0.3957,
    "conformance/ogles/GL/build/build_169_to_176.html": 0.3917,
    "conformance/ogles/GL/build/build_177_to_178.html": 0.2891,
    "conformance/ogles/GL/built_in_varying_array_out_of_bounds/built_in_varying_array_out_of_bounds_001_to_001.html": 0.2476,
    "conformance/ogles/GL/ceil/ceil_001_to_006.html": 1.1075,
    "conformance/ogles/GL/clamp/clamp_001_to_006.html": 1.045,
    "conformance/ogles/GL/control_flow/control_flow_001_to_008.html": 1.0229,
    "conformance/ogles/GL/control_flow/control_flow_009_to_010.html": 0.4135,
    "conformance/ogles/GL/cos/cos_001_to_006.html": 1.2694,
    "conformance/ogles/GL/cross/cross_001_to_002.html": 0.6287,
    "conformance/ogles/GL/default/default_001_to_001.html": 0.3655,
    "conformance/ogles/GL/degrees/degrees_001_to_006.html": 1.0619,
    "conformance/ogles/GL/discard/discard_001_to_002.html": 0.473,
    "conformance/ogles/GL/distance/distance_001_to_006.html": 1.0424,
    "conformance/ogles/GL/dot/dot_001_to_006.html": 1.0334,
    "conformance/ogles/GL/equal/equal_001_to_008.html": 1.2023,
    "conformance/ogles/GL/equal/equal_009_to_012.html": 0.7357,
    "conformance/ogles/GL/exp/exp_001_to_008.html": 1.279,
    "conformance/ogles/GL/exp/exp_009_to_012.html": 1.0023,
    "conformance/ogles/GL/exp2/exp2_001_to_008.html": 1.2522,
    "conformance/ogles/GL/exp2/exp2_009_to_012.html": 0.9088,
    "conformance/ogles/GL/faceforward/faceforward_001_to_006.html": 1.209,
    "conformance/ogles/GL/floor/floor_001_to_006.html": 1.0158,
    "conformance/ogles/GL/fract/fract_001_to_006.html": 1.2115,
    "conformance/ogles/GL/functions/functions_001_to_008.html": 1.0385,
    "conformance/ogles/GL/functions/functions_009_to_016.html": 0.8059,
    "conformance/ogles/GL/functions/functions_017_to_024.html": 1.0174,
    "conformance/ogles/GL/functions/functions_025_to_032.html": 0.9241,
    "conformance/ogles/GL/functions/functions_033_to_040.html": 0.9011,
    "conformance/ogles/GL/functions/functions_041_to_048.html": 0.8981,
    "conformance/ogles/GL/functions/functions_049_to_056.html": 0.9207,
    "conformance/ogles/GL/functions/functions_057_to_064.html": 1.0178,
    "conformance/ogles/GL/functions/functions_065_to_072.html": 1.086,
    "conformance/ogles/GL/functions/functions_073_to_080.html": 0.9404,
    "conformance/ogles/GL/functions/functions_081_to_088.html": 0.9278,
    "conformance/ogles/GL/functions/functions_089_to_096.html": 0.8658,
    "conformance/ogles/GL/functions/functions_097_to_104.html": 1.0203,
    "conformance/ogles/GL/functions/functions_105_to_112.html": 0.8774,
    "conformance/ogles/GL/functions/functions_113_to_120.html": 1.0388,
    "conformance/ogles/GL/functions/functions_121_to_126.html": 0.8247,
    "conformance/ogles/GL/gl_FragCoord/gl_FragCoord_001_to_003.html": 0.6914,
    "conformance/ogles/GL/gl_FrontFacing/gl_FrontFacing_001_to_001.html": 0.3583,
    "conformance/ogles/GL/greaterThan/greaterThan_001_to_008.html": 1.2773,
    "conformance/ogles/GL/greaterThanEqual/greaterThanEqual_001_to_008.html": 1.2419,
    "conformance/ogles/GL/inversesqrt/inversesqrt_001_to_006.html": 1.1564,
    "conformance/ogles/GL/length/length_001_to_006.html": 1.0265,
    "conformance/ogles/GL/lessThan/lessThan_001_to_008.html": 1.1773,
    "conformance/ogles/GL/lessThanEqual/lessThanEqual_001_to_008.html": 1.4337,
    "conformance/ogles/GL/log/log_001_to_008.html": 1.3979,
    "conformance/ogles/GL/log/log_009_to_012.html": 0.9624,
    "conformance/ogles/GL/log2/log2_001_to_008.html": 1.3647,
    "conformance/ogles/GL/log2/log2_009_to_012.html": 0.9769,
    "conformance/ogles/GL/mat/mat_001_to_008.html": 0.9953,
    "conformance/ogles/GL/mat/mat_009_to_016.html": 0.8908,
    "conformance/ogles/GL/mat/mat_017_to_024.html": 0.9914,
    "conformance/ogles/GL/mat/mat_025_to_032.html": 1.2166,
    "conformance/ogles/GL/mat/mat_033_to_040.html": 1.0403,
    "conformance/ogles/GL/mat/mat_041_to_046.html": 0.7018,
    "conformance/ogles/GL/mat3/mat3_001_to_006.html": 0.7069,
    "conformance/ogles/GL/matrixCompMult/matrixCompMult_001_to_004.html": 0.8815,
    "conformance/ogles/GL/max/max_001_to_006.html": 1.0291,
    "conformance/ogles/GL/min/min_001_to_006.html": 1.1421,
    "conformance/ogles/GL/mix/mix_001_to_006.html": 1.0586,
    "conformance/ogles/GL/mod/mod_001_to_008.html": 1.3174,
    "conformance/ogles/GL/normalize/normalize_001_to_006.html": 1.1701,
    "conformance/ogles/GL/not/not_001_to_004.html": 0.783,
    "conformance/ogles/GL/notEqual/notEqual_001_to_008.html": 1.2108,
    "conformance/ogles/GL/notEqual/notEqual_009_to_012.html": 0.7692,
    "conformance/ogles/GL/operators/operators_001_to_008.html": 0.9162,
    "conformance/ogles/GL/operators/operators_009_to_016.html": 0.9232,
    "conformance/ogles/GL/operators/operators_017_to_024.html": 0.8592,
    "conformance/ogles/GL/operators/operators_025_to_026.html": 0.4516,
    "conformance/ogles/GL/pow/pow_001_to_008.html": 1.0955,
    "conformance/ogles/GL/pow/pow_009_to_016.html": 1.3549,
    "conformance/ogles/GL/pow/pow_017_to_024.html": 1.6229,
    "conformance/ogles/GL/radians/radians_001_to_006.html": 0.9905,
    "conformance/ogles/GL/reflect/reflect_001_to_006.html": 1.2845,
    "conformance/ogles/GL/refract/refract_001_to_006.html": 1.2026,
    "conformance/ogles/GL/sign/sign_001_to_006.html": 1.0459,
    "conformance/ogles/GL/sin/sin_001_to_006.html": 1.3042,
    "conformance/ogles/GL/smoothstep/smoothstep_001_to_006.html": 1.1436,
    "conformance/ogles/GL/sqrt/sqrt_001_to_006.html": 1.2502,
    "conformance/ogles/GL/step/step_001_to_006.html": 0.9123,
    "conformance/ogles/GL/struct/struct_001_to_008.html": 1.266,
    "conformance/ogles/GL/struct/struct_009_to_016.html": 1.1303,
    "conformance/ogles/GL/struct/struct_017_to_024.html": 1.1753,
    "conformance/ogles/GL/struct/struct_025_to_032.html": 1.1461,
    "conformance/ogles/GL/struct/struct_033_to_040.html": 1.1433,
    "conformance/ogles/GL/struct/struct_041_to_048.html": 1.3958,
    "conformance/ogles/GL/struct/struct_049_to_056.html": 1.0658,
    "conformance/ogles/GL/swizzlers/swizzlers_001_to_008.html": 1.282,
    "conformance/ogles/GL/swizzlers/swizzlers_009_to_016.html": 1.3425,
    "conformance/ogles/GL/swizzlers/swizzlers_017_to_024.html": 1.2795,
    "conformance/ogles/GL/swizzlers/swizzlers_025_to_032.html": 1.3549,
    "conformance/ogles/GL/swizzlers/swizzlers_033_to_040.html": 1.1766,
    "conformance/ogles/GL/swizzlers/swizzlers_041_to_048.html": 1.3311,
    "conformance/ogles/GL/swizzlers/swizzlers_049_to_056.html": 1.2911,
    "conformance/ogles/GL/swizzlers/swizzlers_057_to_064.html": 1.2867,
    "conformance/ogles/GL/swizzlers/swizzlers_065_to_072.html": 1.4388,
    "conformance/ogles/GL/swizzlers/swizzlers_073_to_080.html": 1.1697,
    "conformance/ogles/GL/swizzlers/swizzlers_081_to_088.html": 1.2961,
    "conformance/ogles/GL/swizzlers/swizzlers_089_to_096.html": 1.2232,
    "conformance/ogles/GL/swizzlers/swizzlers_097_to_104.html": 1.3837,
    "conformance/ogles/GL/swizzlers/swizzlers_105_to_112.html": 1.3876,
    "conformance/ogles/GL/swizzlers/swizzlers_113_to_120.html": 1.2176,
    "conformance/ogles/GL/tan/tan_001_to_006.html": 1.1353,
    "conformance/ogles/GL/vec/vec_001_to_008.html": 0.9454,
    "conformance/ogles/GL/vec/vec_009_to_016.html": 1.092,
    "conformance/ogles/GL/vec/vec_017_to_018.html": 0.6626,
    "conformance/ogles/GL/vec3/vec3_001_to_008.html": 0.8943,
    "conformance/programs/get-active-test.html": 0.3965,
    "conformance/programs/gl-bind-attrib-location-long-names-test.html": 0.3161,
    "conformance/programs/gl-bind-attrib-location-test.html": 0.2491,
    "conformance/programs/gl-get-active-attribute.html": 0.2843,
    "conformance/programs/gl-get-active-uniform.html": 0.4604,
    "conformance/programs/gl-getshadersource.html": 0.2626,
    "conformance/programs/gl-shader-test.html": 0.2933,
    "conformance/programs/invalid-UTF-16.html": 0.2519,
    "conformance/programs/program-handling.html": 0.3951,
    "conformance/programs/program-infolog.html": 0.2854,
    "conformance/programs/program-test.html": 0.4613,
    "conformance/programs/use-program-crash-with-discard-in-fragment-shader.html": 0.2972,
    "conformance/reading/fbo-remains-unchanged-after-read-pixels.html": 0.2966,
    "conformance/reading/read-pixels-pack-alignment.html": 0.3769,
    "conformance/reading/read-pixels-test.html": 1.0091,
    "conformance/renderbuffers/depth-renderbuffer-initialization.html": 0.4507,
    "conformance/renderbuffers/feedback-loop.html": 0.2755,
    "conformance/renderbuffers/framebuffer-object-attachment.html": 0.6315,
    "conformance/renderbuffers/framebuffer-state-restoration.html": 0.4097,
    "conformance/renderbuffers/framebuffer-test.html": 0.3109,
    "conformance/renderbuffers/renderbuffer-initialization.html": 0.4517,
    "conformance/renderbuffers/stencil-renderbuffer-initialization.html": 0.346,
    "conformance/rendering/bind-framebuffer-flush-bug.html": 0.2582,
    "conformance/rendering/blending.html": 0.3654,
    "conformance/rendering/canvas-alpha-bug.html": 0.2778,
    "conformance/rendering/clear-after-copyTexImage2D.html": 0.296,
    "conformance/rendering/clear-default-framebuffer-with-scissor-test.html": 0.2652,
    "conformance/rendering/clipping-wide-points.html": 0.2956,
    "conformance/rendering/color-mask-preserved-during-implicit-clears.html": 1.6685,
    "conformance/rendering/color-mask-should-not-affect-antialiased-framebuffer-resolution.html": 0.3366,
    "conformance/rendering/culling.html": 0.2435,
    "conformance/rendering/default-texture-draw-bug.html": 0.401,
    "conformance/rendering/draw-arrays-out-of-bounds.html": 0.3735,
    "conformance/rendering/draw-elements-out-of-bounds.html": 0.3876,
    "conformance/rendering/draw-webgl-to-canvas-2d-repeatedly.html": 0.8717,
    "conformance/rendering/draw-with-changing-start-vertex-bug.html": 1.4584,
    "conformance/rendering/framebuffer-switch.html": 0.2692,
    "conformance/rendering/framebuffer-texture-clear.html": 1.1859,
    "conformance/rendering/framebuffer-texture-switch.html": 0.3155,
    "conformance/rendering/gl-clear.html": 0.2459,
    "conformance/rendering/gl-drawarrays.html": 0.2672,
    "conformance/rendering/gl-drawelements.html": 1.133,
    "conformance/rendering/gl-scissor-canvas-dimensions.html": 0.299,
    "conformance/rendering/gl-scissor-fbo-test.html": 0.4198,
    "conformance/rendering/gl-scissor-test.html": 0.4636,
    "conformance/rendering/gl-viewport-test.html": 1.408,
    "conformance/rendering/line-loop-tri-fan.html": 1.1147,
    "conformance/rendering/line-rendering-quality.html": 0.3058,
    "conformance/rendering/many-draw-calls.html": 3.2965,
    "conformance/rendering/more-than-65536-indices.html": 1.0607,
    "conformance/rendering/multisample-corruption.html": 0,
    "conformance/rendering/negative-one-index.html": 0.246,
    "conformance/rendering/out-of-bounds-array-buffers.html": 0.3193,
    "conformance/rendering/out-of-bounds-index-buffers.html": 0.266,
    "conformance/rendering/point-no-attributes.html": 0.3629,
    "conformance/rendering/point-size.html": 0.3106,
    "conformance/rendering/point-specific-shader-variables.html": 0.2798,
    "conformance/rendering/point-with-gl-pointcoord-in-fragment-shader.html": 0.2542,
    "conformance/rendering/polygon-offset.html": 0.3117,
    "conformance/rendering/preservedrawingbuffer-leak.html": 0.3917,
    "conformance/rendering/rendering-sampling-feedback-loop.html": 0.2816,
    "conformance/rendering/rendering-stencil-large-viewport.html": 0.2742,
    "conformance/rendering/scissor-rect-repeated-rendering.html": 0.3867,
    "conformance/rendering/simple.html": 0.291,
    "conformance/rendering/texture-switch-performance.html": 0,
    "conformance/rendering/triangle.html": 0.3155,
    "conformance/state/fb-attach-implicit-target-assignment.html": 0.2757,
    "conformance/state/gl-enable-enum-test.html": 0.4796,
    "conformance/state/gl-enum-tests.html": 0.4325,
    "conformance/state/gl-get-calls.html": 0.4297,
    "conformance/state/gl-geterror.html": 0.3286,
    "conformance/state/gl-getstring.html": 0.3196,
    "conformance/state/gl-initial-state.html": 0.2333,
    "conformance/state/gl-object-get-calls.html": 0,
    "conformance/state/state-uneffected-after-compositing.html": 0.3999,
    "conformance/textures/canvas/tex-2d-alpha-alpha-unsigned_byte.html": 1.1013,
    "conformance/textures/canvas/tex-2d-luminance-luminance-unsigned_byte.html": 1.1967,
    "conformance/textures/canvas/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 1.0732,
    "conformance/textures/canvas/tex-2d-rgb-rgb-unsigned_byte.html": 2.778,
    "conformance/textures/canvas/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 1.0027,
    "conformance/textures/canvas/tex-2d-rgba-rgba-unsigned_byte.html": 2.9121,
    "conformance/textures/canvas/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.9966,
    "conformance/textures/canvas/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.9933,
    "conformance/textures/canvas_sub_rectangle/tex-2d-alpha-alpha-unsigned_byte.html": 0.2688,
    "conformance/textures/canvas_sub_rectangle/tex-2d-luminance-luminance-unsigned_byte.html": 0.2455,
    "conformance/textures/canvas_sub_rectangle/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.2347,
    "conformance/textures/canvas_sub_rectangle/tex-2d-rgb-rgb-unsigned_byte.html": 0.2417,
    "conformance/textures/canvas_sub_rectangle/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.195,
    "conformance/textures/canvas_sub_rectangle/tex-2d-rgba-rgba-unsigned_byte.html": 0.2798,
    "conformance/textures/canvas_sub_rectangle/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.2266,
    "conformance/textures/canvas_sub_rectangle/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.2438,
    "conformance/textures/image/tex-2d-alpha-alpha-unsigned_byte.html": 0.4792,
    "conformance/textures/image/tex-2d-luminance-luminance-unsigned_byte.html": 0.4916,
    "conformance/textures/image/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.463,
    "conformance/textures/image/tex-2d-rgb-rgb-unsigned_byte.html": 0.4716,
    "conformance/textures/image/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.4439,
    "conformance/textures/image/tex-2d-rgba-rgba-unsigned_byte.html": 0.4781,
    "conformance/textures/image/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.4914,
    "conformance/textures/image/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.44,
    "conformance/textures/image_bitmap_from_blob/tex-2d-alpha-alpha-unsigned_byte.html": 0.7991,
    "conformance/textures/image_bitmap_from_blob/tex-2d-luminance-luminance-unsigned_byte.html": 0.762,
    "conformance/textures/image_bitmap_from_blob/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.7902,
    "conformance/textures/image_bitmap_from_blob/tex-2d-rgb-rgb-unsigned_byte.html": 0.7061,
    "conformance/textures/image_bitmap_from_blob/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.8151,
    "conformance/textures/image_bitmap_from_blob/tex-2d-rgba-rgba-unsigned_byte.html": 0.7455,
    "conformance/textures/image_bitmap_from_blob/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.7451,
    "conformance/textures/image_bitmap_from_blob/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.7155,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-alpha-alpha-unsigned_byte.html": 0.8318,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-luminance-luminance-unsigned_byte.html": 0.9221,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.7579,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-rgb-rgb-unsigned_byte.html": 0.9386,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.7681,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-rgba-rgba-unsigned_byte.html": 0.7272,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.8104,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.7899,
    "conformance/textures/image_bitmap_from_image/tex-2d-alpha-alpha-unsigned_byte.html": 0.5137,
    "conformance/textures/image_bitmap_from_image/tex-2d-luminance-luminance-unsigned_byte.html": 0.4171,
    "conformance/textures/image_bitmap_from_image/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.582,
    "conformance/textures/image_bitmap_from_image/tex-2d-rgb-rgb-unsigned_byte.html": 0.5373,
    "conformance/textures/image_bitmap_from_image/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.4962,
    "conformance/textures/image_bitmap_from_image/tex-2d-rgba-rgba-unsigned_byte.html": 0.4705,
    "conformance/textures/image_bitmap_from_image/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.4978,
    "conformance/textures/image_bitmap_from_image/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.4466,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-alpha-alpha-unsigned_byte.html": 0.5249,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-luminance-luminance-unsigned_byte.html": 0.446,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.5167,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-rgb-rgb-unsigned_byte.html": 0.4619,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.5607,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-rgba-rgba-unsigned_byte.html": 0.5048,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.5282,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.464,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-alpha-alpha-unsigned_byte.html": 0.4816,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-luminance-luminance-unsigned_byte.html": 0.5331,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.482,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-rgb-rgb-unsigned_byte.html": 0.5242,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.4289,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-rgba-rgba-unsigned_byte.html": 0.4583,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.5007,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.4881,
    "conformance/textures/image_bitmap_from_video/tex-2d-alpha-alpha-unsigned_byte.html": 0.9412,
    "conformance/textures/image_bitmap_from_video/tex-2d-luminance-luminance-unsigned_byte.html": 1.0649,
    "conformance/textures/image_bitmap_from_video/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 1.0155,
    "conformance/textures/image_bitmap_from_video/tex-2d-rgb-rgb-unsigned_byte.html": 0.8071,
    "conformance/textures/image_bitmap_from_video/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 1.0879,
    "conformance/textures/image_bitmap_from_video/tex-2d-rgba-rgba-unsigned_byte.html": 0.8525,
    "conformance/textures/image_bitmap_from_video/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.8157,
    "conformance/textures/image_bitmap_from_video/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.8097,
    "conformance/textures/image_data/tex-2d-alpha-alpha-unsigned_byte.html": 0.5426,
    "conformance/textures/image_data/tex-2d-luminance-luminance-unsigned_byte.html": 0.4635,
    "conformance/textures/image_data/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.5618,
    "conformance/textures/image_data/tex-2d-rgb-rgb-unsigned_byte.html": 0.4634,
    "conformance/textures/image_data/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.4461,
    "conformance/textures/image_data/tex-2d-rgba-rgba-unsigned_byte.html": 0.4451,
    "conformance/textures/image_data/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.432,
    "conformance/textures/image_data/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.4615,
    "conformance/textures/misc/canvas-teximage-after-multiple-drawimages.html": 0.3436,
    "conformance/textures/misc/compressed-tex-image.html": 0.374,
    "conformance/textures/misc/copy-tex-image-2d-formats.html": 0.4095,
    "conformance/textures/misc/copy-tex-image-and-sub-image-2d.html": 0.6848,
    "conformance/textures/misc/copy-tex-image-crash.html": 0.2541,
    "conformance/textures/misc/copytexsubimage2d-large-partial-copy-corruption.html": 0.4067,
    "conformance/textures/misc/copytexsubimage2d-subrects.html": 0.2094,
    "conformance/textures/misc/cube-incomplete-fbo.html": 0.2803,
    "conformance/textures/misc/cube-map-uploads-out-of-order.html": 1.2819,
    "conformance/textures/misc/default-texture.html": 0.2761,
    "conformance/textures/misc/exif-orientation.html": 1.5462,
    "conformance/textures/misc/format-filterable-renderable.html": 0.3427,
    "conformance/textures/misc/gl-get-tex-parameter.html": 0.2747,
    "conformance/textures/misc/gl-pixelstorei.html": 0.3564,
    "conformance/textures/misc/gl-teximage.html": 0.6135,
    "conformance/textures/misc/mipmap-fbo.html": 0.3208,
    "conformance/textures/misc/origin-clean-conformance-offscreencanvas.html": 0.2754,
    "conformance/textures/misc/origin-clean-conformance.html": 0.2878,
    "conformance/textures/misc/png-image-types.html": 0.6692,
    "conformance/textures/misc/tex-image-and-sub-image-2d-with-array-buffer-view.html": 2.7947,
    "conformance/textures/misc/tex-image-and-uniform-binding-bugs.html": 0.2789,
    "conformance/textures/misc/tex-image-canvas-corruption.html": 0.2748,
    "conformance/textures/misc/tex-image-webgl.html": 0.326,
    "conformance/textures/misc/tex-image-with-format-and-type.html": 0.472,
    "conformance/textures/misc/tex-image-with-invalid-data.html": 0.2631,
    "conformance/textures/misc/tex-input-validation.html": 0.4155,
    "conformance/textures/misc/tex-sub-image-2d-bad-args.html": 0.2795,
    "conformance/textures/misc/tex-sub-image-2d.html": 0.2843,
    "conformance/textures/misc/tex-video-using-tex-unit-non-zero.html": 0.83,
    "conformance/textures/misc/texparameter-test.html": 0.3311,
    "conformance/textures/misc/texture-active-bind-2.html": 0.3457,
    "conformance/textures/misc/texture-active-bind.html": 0.3036,
    "conformance/textures/misc/texture-attachment-formats.html": 0.2525,
    "conformance/textures/misc/texture-clear.html": 0.2228,
    "conformance/textures/misc/texture-complete.html": 0.282,
    "conformance/textures/misc/texture-copying-and-deletion.html": 1.3037,
    "conformance/textures/misc/texture-copying-feedback-loops.html": 0.2621,
    "conformance/textures/misc/texture-corner-case-videos.html": 0.6228,
    "conformance/textures/misc/texture-cube-as-fbo-attachment.html": 0.3178,
    "conformance/textures/misc/texture-draw-with-2d-and-cube.html": 0.314,
    "conformance/textures/misc/texture-fakeblack.html": 0.3111,
    "conformance/textures/misc/texture-formats-test.html": 0.3218,
    "conformance/textures/misc/texture-hd-dpi.html": 0.4098,
    "conformance/textures/misc/texture-mips.html": 0.3874,
    "conformance/textures/misc/texture-npot-video.html": 0.4808,
    "conformance/textures/misc/texture-npot.html": 0.4456,
    "conformance/textures/misc/texture-size-cube-maps.html": 0.8735,
    "conformance/textures/misc/texture-size-limit.html": 0.5965,
    "conformance/textures/misc/texture-size.html": 0.9424,
    "conformance/textures/misc/texture-srgb-upload.html": 0.6359,
    "conformance/textures/misc/texture-sub-image-cube-maps.html": 0.3435,
    "conformance/textures/misc/texture-transparent-pixels-initialized.html": 0.2883,
    "conformance/textures/misc/texture-upload-cube-maps.html": 0.2679,
    "conformance/textures/misc/texture-upload-size.html": 0.7614,
    "conformance/textures/misc/texture-video-transparent.html": 2.616,
    "conformance/textures/misc/texture-with-flip-y-and-premultiply-alpha.html": 0.3255,
    "conformance/textures/misc/upload-from-srcset-with-empty-data.html": 0.269,
    "conformance/textures/misc/video-rotation.html": 1.064,
    "conformance/textures/svg_image/tex-2d-alpha-alpha-unsigned_byte.html": 0.4098,
    "conformance/textures/svg_image/tex-2d-luminance-luminance-unsigned_byte.html": 0.4115,
    "conformance/textures/svg_image/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.3928,
    "conformance/textures/svg_image/tex-2d-rgb-rgb-unsigned_byte.html": 0.3795,
    "conformance/textures/svg_image/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.3525,
    "conformance/textures/svg_image/tex-2d-rgba-rgba-unsigned_byte.html": 0.4053,
    "conformance/textures/svg_image/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.3455,
    "conformance/textures/svg_image/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.4136,
    "conformance/textures/video/tex-2d-alpha-alpha-unsigned_byte.html": 1.4576,
    "conformance/textures/video/tex-2d-luminance-luminance-unsigned_byte.html": 1.3071,
    "conformance/textures/video/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 1.2741,
    "conformance/textures/video/tex-2d-rgb-rgb-unsigned_byte.html": 1.3564,
    "conformance/textures/video/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 1.174,
    "conformance/textures/video/tex-2d-rgba-rgba-unsigned_byte.html": 1.3659,
    "conformance/textures/video/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 1.2653,
    "conformance/textures/video/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 1.3969,
    "conformance/textures/webgl_canvas/tex-2d-alpha-alpha-unsigned_byte.html": 1.6271,
    "conformance/textures/webgl_canvas/tex-2d-luminance-luminance-unsigned_byte.html": 1.6733,
    "conformance/textures/webgl_canvas/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 1.7394,
    "conformance/textures/webgl_canvas/tex-2d-rgb-rgb-unsigned_byte.html": 4.0255,
    "conformance/textures/webgl_canvas/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 1.5307,
    "conformance/textures/webgl_canvas/tex-2d-rgba-rgba-unsigned_byte.html": 4.5909,
    "conformance/textures/webgl_canvas/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 1.4933,
    "conformance/textures/webgl_canvas/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 1.4182,
    "conformance/typedarrays/array-buffer-crash.html": 0.2227,
    "conformance/typedarrays/array-buffer-view-crash.html": 0.2716,
    "conformance/typedarrays/array-large-array-tests.html": 0.2202,
    "conformance/typedarrays/array-unit-tests.html": 0.2373,
    "conformance/typedarrays/data-view-crash.html": 0.2426,
    "conformance/typedarrays/data-view-test.html": 0.3409,
    "conformance/typedarrays/typed-arrays-in-workers.html": 0.3062,
    "conformance/uniforms/gl-get-uniform-non-current-program.html": 0.2876,
    "conformance/uniforms/gl-uniform-arrays.html": 0.3867,
    "conformance/uniforms/gl-uniform-bool.html": 0.2697,
    "conformance/uniforms/gl-uniformmatrix4fv.html": 0.2582,
    "conformance/uniforms/gl-unknown-uniform.html": 0.2573,
    "conformance/uniforms/no-over-optimization-on-uniform-array-00.html": 0.5607,
    "conformance/uniforms/no-over-optimization-on-uniform-array-01.html": 0.281,
    "conformance/uniforms/no-over-optimization-on-uniform-array-02.html": 0.2837,
    "conformance/uniforms/no-over-optimization-on-uniform-array-03.html": 0.2814,
    "conformance/uniforms/no-over-optimization-on-uniform-array-04.html": 0.278,
    "conformance/uniforms/no-over-optimization-on-uniform-array-05.html": 0.2598,
    "conformance/uniforms/no-over-optimization-on-uniform-array-06.html": 0.4978,
    "conformance/uniforms/no-over-optimization-on-uniform-array-07.html": 0.57,
    "conformance/uniforms/no-over-optimization-on-uniform-array-08.html": 0.5877,
    "conformance/uniforms/no-over-optimization-on-uniform-array-09.html": 0.6352,
    "conformance/uniforms/no-over-optimization-on-uniform-array-10.html": 0.3276,
    "conformance/uniforms/no-over-optimization-on-uniform-array-11.html": 0.2684,
    "conformance/uniforms/no-over-optimization-on-uniform-array-12.html": 0.2917,
    "conformance/uniforms/no-over-optimization-on-uniform-array-13.html": 0.2526,
    "conformance/uniforms/no-over-optimization-on-uniform-array-14.html": 0.5675,
    "conformance/uniforms/no-over-optimization-on-uniform-array-15.html": 0.5118,
    "conformance/uniforms/no-over-optimization-on-uniform-array-16.html": 0.5039,
    "conformance/uniforms/no-over-optimization-on-uniform-array-17.html": 0.5367,
    "conformance/uniforms/null-uniform-location.html": 0.4295,
    "conformance/uniforms/out-of-bounds-uniform-array-access.html": 4.3224,
    "conformance/uniforms/uniform-default-values.html": 2.3772,
    "conformance/uniforms/uniform-location.html": 0.4959,
    "conformance/uniforms/uniform-samplers-test.html": 52.2904,
    "conformance/uniforms/uniform-values-per-program.html": 1.4812,
    "deqp/data/gles2/shaders/conditionals.html": 1.8381,
    "deqp/data/gles2/shaders/constant_expressions.html": 1.5893,
    "deqp/data/gles2/shaders/constants.html": 2.8154,
    "deqp/data/gles2/shaders/conversions_matrix_combine.html": 6.1343,
    "deqp/data/gles2/shaders/conversions_matrix_to_matrix.html": 1.5047,
    "deqp/data/gles2/shaders/conversions_scalar_to_matrix.html": 1.9886,
    "deqp/data/gles2/shaders/conversions_scalar_to_scalar.html": 1.7024,
    "deqp/data/gles2/shaders/conversions_scalar_to_vector.html": 4.9804,
    "deqp/data/gles2/shaders/conversions_vector_combine.html": 16.7342,
    "deqp/data/gles2/shaders/conversions_vector_illegal.html": 1.0747,
    "deqp/data/gles2/shaders/conversions_vector_to_scalar.html": 4.2523,
    "deqp/data/gles2/shaders/conversions_vector_to_vector.html": 7.2907,
    "deqp/data/gles2/shaders/declarations.html": 0.4557,
    "deqp/data/gles2/shaders/fragdata.html": 0.4678,
    "deqp/data/gles2/shaders/functions.html": 10.0413,
    "deqp/data/gles2/shaders/invalid_texture_functions.html": 0.4252,
    "deqp/data/gles2/shaders/keywords.html": 2.6555,
    "deqp/data/gles2/shaders/linkage.html": 2.4635,
    "deqp/data/gles2/shaders/preprocessor.html": 10.0818,
    "deqp/data/gles2/shaders/qualification_order.html": 0.9951,
    "deqp/data/gles2/shaders/reserved_operators.html": 0.6402,
    "deqp/data/gles2/shaders/scoping.html": 2.0285,
    "deqp/data/gles2/shaders/swizzles_bvec2.html": 3.1403,
    "deqp/data/gles2/shaders/swizzles_bvec3.html": 5.0418,
    "deqp/data/gles2/shaders/swizzles_bvec4.html": 6.2197,
    "deqp/data/gles2/shaders/swizzles_ivec2.html": 2.8737,
    "deqp/data/gles2/shaders/swizzles_ivec3.html": 4.9489,
    "deqp/data/gles2/shaders/swizzles_ivec4.html": 5.9619,
    "deqp/data/gles2/shaders/swizzles_vec2.html": 2.8503,
    "deqp/data/gles2/shaders/swizzles_vec3.html": 4.9673,
    "deqp/data/gles2/shaders/swizzles_vec4.html": 6.0037
  }
}