diff options
author | Matěj Cepl <mcepl@redhat.com> | 2011-11-19 22:59:42 +0100 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2011-11-20 01:02:43 +0100 |
commit | d0128400614f87f8e08d369025b1259b36c566e5 (patch) | |
tree | 33dddbfbd8ef565c790a6e85f25e4f23c61c5e01 | |
parent | 536c112a1c7b808729cb6e7f1103e1a541f10ce7 (diff) | |
download | json_diff-d0128400614f87f8e08d369025b1259b36c566e5.tar.gz |
Option -i which allows only enumerated attributes to be considered.
All tests pass (including the large piglit one, except I keep it commented
out, it takes over 4.5 minutes to finish).
-rw-r--r-- | .ditz/issue-433234e03034871ef3a545e04f78ae850a0faf2f.yaml | 18 | ||||
-rw-r--r-- | .ditz/issue-b10a9a16798679380fc9a2c184e9fe0d13e5abcf.yaml | 8 | ||||
-rw-r--r-- | .ditz/issue-fb675aa395503fb3e4fdbcd2ab22da02f4345d47.yaml | 8 | ||||
-rwxr-xr-x | json_diff.py | 47 | ||||
-rw-r--r-- | test/diff-testing-data.json | 2652 | ||||
-rw-r--r-- | test_json_diff.py | 30 |
6 files changed, 1394 insertions, 1369 deletions
diff --git a/.ditz/issue-433234e03034871ef3a545e04f78ae850a0faf2f.yaml b/.ditz/issue-433234e03034871ef3a545e04f78ae850a0faf2f.yaml new file mode 100644 index 0000000..17e6319 --- /dev/null +++ b/.ditz/issue-433234e03034871ef3a545e04f78ae850a0faf2f.yaml @@ -0,0 +1,18 @@ +--- !ditz.rubyforge.org,2008-03-06/issue +title: run with -i generates more than we bargained for. +desc: In the output of -i I get some random keys which are not what we've asked for. +type: :bugfix +component: json_diff +release: +reporter: Matej Cepl <mcepl@redhat.com> +status: :unstarted +disposition: +creation_time: 2011-11-20 00:02:33.643166 Z +references: [] + +id: 433234e03034871ef3a545e04f78ae850a0faf2f +log_events: +- - 2011-11-20 00:02:34.623177 Z + - Matej Cepl <mcepl@redhat.com> + - created + - "" diff --git a/.ditz/issue-b10a9a16798679380fc9a2c184e9fe0d13e5abcf.yaml b/.ditz/issue-b10a9a16798679380fc9a2c184e9fe0d13e5abcf.yaml index d95caff..bec6d64 100644 --- a/.ditz/issue-b10a9a16798679380fc9a2c184e9fe0d13e5abcf.yaml +++ b/.ditz/issue-b10a9a16798679380fc9a2c184e9fe0d13e5abcf.yaml @@ -5,8 +5,8 @@ type: :feature component: json_diff release: reporter: Matej Cepl <mcepl@redhat.com> -status: :unstarted -disposition: +status: :closed +disposition: :fixed creation_time: 2011-11-16 11:06:20.989309 Z references: [] @@ -31,3 +31,7 @@ log_events: # old_obj is missing is wrong. We need to dive into all dictionaries and arrays and only down there to decide. +- - 2011-11-19 23:35:42.641169 Z + - Matej Cepl <mcepl@redhat.com> + - closed with disposition fixed + - Wov! I've made it! diff --git a/.ditz/issue-fb675aa395503fb3e4fdbcd2ab22da02f4345d47.yaml b/.ditz/issue-fb675aa395503fb3e4fdbcd2ab22da02f4345d47.yaml index 175674b..766b25b 100644 --- a/.ditz/issue-fb675aa395503fb3e4fdbcd2ab22da02f4345d47.yaml +++ b/.ditz/issue-fb675aa395503fb3e4fdbcd2ab22da02f4345d47.yaml @@ -7,8 +7,8 @@ type: :bugfix component: json_diff release: reporter: Matej Cepl <mcepl@redhat.com> -status: :unstarted -disposition: +status: :closed +disposition: :fixed creation_time: 2011-11-08 18:05:08.687378 Z references: [] @@ -18,3 +18,7 @@ log_events: - Matej Cepl <mcepl@redhat.com> - created - "" +- - 2011-11-20 00:01:51.232208 Z + - Matej Cepl <mcepl@redhat.com> + - closed with disposition fixed + - Fixed ... nothing to do with odict, fortunately. diff --git a/json_diff.py b/json_diff.py index b9d5470..f79b78a 100755 --- a/json_diff.py +++ b/json_diff.py @@ -31,7 +31,7 @@ from optparse import OptionParser __author__ = "Matěj Cepl" __version__ = "0.1.0" -logging.basicConfig(format='%(levelname)s:%(funcName)s:%(message)s', level=logging.DEBUG) +logging.basicConfig(format='%(levelname)s:%(funcName)s:%(message)s', level=logging.INFO) STYLE_MAP = { "_append": "append_class", @@ -146,10 +146,21 @@ class Comparator(object): raise BadJSONError("Cannot decode object from JSON\n%s" % unicode(exc)) self.excluded_attributes = excluded_attrs self.included_attributes = included_attrs - if self.obj1: - logging.debug("self.obj1:\n%s\n", json.dumps(self.obj1, indent=4)) - if self.obj2: - logging.debug("self.obj2:\n%s\n", json.dumps(self.obj2, indent=4)) + + def _is_incex_key(self, key, value): + """Is this key excluded or not among included ones? If yes, it should be ignored. + """ + key_out = ((self.included_attributes and (key not in self.included_attributes)) or + (key in self.excluded_attributes)) + value_out = True + if isinstance(value, dict): + for change_key in value: + if isinstance(value[change_key], dict): + for key in value[change_key]: + if ((self.included_attributes and (key in self.included_attributes)) or + (key not in self.excluded_attributes)): + value_out = False + return key_out and value_out def _compare_scalars(self, old, new, name=None): """ @@ -161,11 +172,7 @@ class Comparator(object): leads to wrong answer (it should be if self._compare_scalars(...) is not None:) """ # Explicitly excluded arguments - logging.debug("Comparing scalars %s and %s", old, new) - if ((self.included_attributes and (name not in self.included_attributes)) or - (name in self.excluded_attributes)): - return None - elif old != new: + if old != new: logging.debug("Comparing result (name=%s) is %s", name, new) return new else: @@ -221,8 +228,6 @@ class Comparator(object): if len(result[key]) > 0: out_result[key] = result[key] - logging.debug("out_result = %s", - json.dumps(out_result, indent=4)) return out_result def compare_dicts(self, old_obj=None, new_obj=None): @@ -278,11 +283,19 @@ class Comparator(object): if res_scal is not None: result['_update'][name] = res_scal - # Clear out unused keys in result + # Filter out non-included or excluded keys + # Also clear out unused keys in result out_result = {} - for key in result: - if len(result[key]) > 0: - out_result[key] = result[key] + for change_type in result: + temp_dict = {} + for key in result[change_type]: + logging.debug("result[change_type] = %s, key = %s", unicode(result[change_type]), key) + logging.debug("self._is_incex_key(key, result[change_type][key]) = %s", + self._is_incex_key(key, result[change_type][key])) + if not self._is_incex_key(key, result[change_type][key]): + temp_dict[key] = result[change_type][key] + if len(temp_dict) > 0: + out_result[change_type] = temp_dict return out_result @@ -305,7 +318,7 @@ if __name__ == "__main__": if len(args) != 2: parser.error("Script requires two positional arguments, names for old and new JSON file.") - diff = Comparator(file(args[0]), file(args[1]), options.exclude, options.include) + diff = Comparator(file(args[0]), file(args[1]), options.include, options.exclude) if options.HTMLoutput: diff_res = diff.compare_dicts() # logging.debug("diff_res:\n%s", json.dumps(diff_res, indent=True)) diff --git a/test/diff-testing-data.json b/test/diff-testing-data.json index ca5e2d2..354dfc5 100644 --- a/test/diff-testing-data.json +++ b/test/diff-testing-data.json @@ -17,11 +17,6 @@ "time": 0.23697996139526367 } }, - "spec/glsl-1.20/compiler/built-in-functions/op-ne-float-float.frag": { - "_update": { - "time": 0.19044399261474609 - } - }, "spec/glsl-1.20/compiler/built-in-functions/op-mult-mat4x2-mat2x4.vert": { "_update": { "time": 0.06756591796875 @@ -107,6 +102,11 @@ "time": 0.11878800392150879 } }, + "spec/glsl-1.20/execution/built-in-functions/fs-op-mult-float-mat4x2": { + "_update": { + "time": 0.21823382377624512 + } + }, "spec/glsl-1.30/compiler/reserved/union.frag": { "_update": { "time": 0.091753005981445312 @@ -172,9 +172,9 @@ "time": 0.047187089920043945 } }, - "spec/glsl-1.30/execution/built-in-functions/fs-op-eq-uvec4-uvec4-using-if": { + "glean/fp1-SUB test (with swizzle)": { "_update": { - "time": 0.046519994735717773 + "time": 0.12129306793212891 } }, "spec/glsl-1.20/execution/variable-indexing/fs-temp-mat4-col-row-wr": { @@ -227,9 +227,9 @@ "time": 0.22249698638916016 } }, - "spec/glsl-1.20/compiler/built-in-functions/op-ne-mat3x2-mat3x2.frag": { + "spec/NV_conditional_render/copypixels": { "_update": { - "time": 0.20867705345153809 + "time": 0.19858407974243164 } }, "glean/glsl1-matrix, vector multiply (1)": { @@ -247,21 +247,6 @@ "time": 0.11068010330200195 } }, - "shaders/glsl-fs-texturecube-2-bias": { - "_remove": { - "note": "Returncode was 1", - "errors": [ - "Couldn't stat program /home/matej/build/BUILD/piglit//tests/shaders/glsl-tex-mvp.vert: No such file or directory", - "You can override the source dir by setting the PIGLIT_SOURCE_DIR environment variable." - ] - }, - "_update": { - "info": "Returncode: 0\n\nErrors:\n\n\nOutput:\n", - "returncode": 0, - "result": "pass", - "time": 0.27320003509521484 - } - }, "spec/glsl-1.20/execution/variable-indexing/vs-uniform-mat4-row-rd": { "_update": { "time": 0.2012019157409668 @@ -392,9 +377,9 @@ "time": 0.23049783706665039 } }, - "spec/glsl-1.20/execution/built-in-functions/fs-op-mult-mat3x2-mat4x3": { + "spec/glsl-1.30/compiler/built-in-functions/op-neg-uint.frag": { "_update": { - "time": 0.16237592697143555 + "time": 0.13619613647460938 } }, "spec/glsl-1.30/execution/built-in-functions/vs-op-mod-uvec2-uvec2": { @@ -437,9 +422,14 @@ "time": 0.093257904052734375 } }, - "shaders/glsl-const-builtin-derivatives": { + "texturing/depth-tex-modes": { "_update": { - "time": 0.2109529972076416 + "time": 0.23485708236694336 + } + }, + "spec/glsl-1.20/execution/variable-indexing/vs-varying-array-mat2-col-rd": { + "_update": { + "time": 0.21445107460021973 } }, "spec/glsl-1.10/execution/variable-indexing/fs-temp-array-mat3-index-col-row-rd": { @@ -452,9 +442,9 @@ "time": 0.047223091125488281 } }, - "spec/EXT_texture_snorm/texwrap-2D-GL_INTENSITY16_SNORM": { + "glean/glsl1-syntax error check (1)": { "_update": { - "time": 0.1809699535369873 + "time": 0.097255945205688477 } }, "spec/glsl-1.30/compiler/keywords/usampler2DArray.frag": { @@ -532,9 +522,9 @@ "time": 0.12380099296569824 } }, - "spec/glsl-1.30/compiler/basic-types/assign-implicit-conversion-uint-int.vert": { + "spec/glsl-1.30/execution/built-in-functions/vs-op-ne-uint-uint-using-if": { "_update": { - "time": 0.084399938583374023 + "time": 0.046772956848144531 } }, "spec/glsl-1.10/execution/variable-indexing/vs-varying-array-mat4-col-row-rd": { @@ -562,6 +552,11 @@ "time": 0.13792181015014648 } }, + "spec/glsl-1.10/execution/built-in-functions/vs-op-sub-ivec3-ivec3": { + "_update": { + "time": 0.24155712127685547 + } + }, "spec/glsl-1.20/compiler/built-in-functions/op-eq-mat3x4-mat3x4.vert": { "_update": { "time": 0.073550939559936523 @@ -602,6 +597,11 @@ "time": 0.049769878387451172 } }, + "spec/glsl-1.10/execution/built-in-functions/vs-op-div-int-ivec2": { + "_update": { + "time": 0.23489594459533691 + } + }, "shaders/glsl-inout-struct-02": { "_update": { "time": 0.20752406120300293 @@ -632,9 +632,9 @@ "time": 0.11498594284057617 } }, - "spec/glsl-1.30/compiler/built-in-functions/round-float.frag": { + "hiz/hiz-stencil-read-window-depth1": { "_update": { - "time": 0.15722489356994629 + "time": 0.22611808776855469 } }, "spec/glsl-1.30/execution/built-in-functions/vs-op-bitxor-uvec4-uint": { @@ -647,11 +647,6 @@ "time": 0.047677040100097656 } }, - "spec/glsl-1.10/execution/built-in-functions/vs-op-div-int-ivec4": { - "_update": { - "time": 0.25446009635925293 - } - }, "spec/glsl-1.30/compiler/keywords/varying.frag": { "_update": { "time": 0.12080693244934082 @@ -702,9 +697,9 @@ "time": 0.16568088531494141 } }, - "spec/glsl-1.30/execution/built-in-functions/vs-op-lshift-uvec2-int": { + "spec/glsl-1.20/compiler/structure-and-array-operations/array-assign-implicit-conversion-vec2-bvec2.vert": { "_update": { - "time": 0.047235012054443359 + "time": 0.082081079483032227 } }, "glean/glsl1-mod() function": { @@ -742,9 +737,9 @@ "time": 0.20122504234313965 } }, - "spec/glsl-1.30/compiler/built-in-functions/op-sub-uvec2-uvec2.vert": { + "spec/glsl-1.20/compiler/built-in-functions/op-sub-float-vec3.frag": { "_update": { - "time": 0.06382298469543457 + "time": 0.2357630729675293 } }, "spec/glsl-1.30/compiler/built-in-functions/op-bitand-uvec2-uint.frag": { @@ -817,14 +812,14 @@ "time": 0.092023134231567383 } }, - "spec/glsl-1.30/compiler/reserved/iimageBuffer.frag": { + "spec/glsl-1.20/compiler/built-in-functions/faceforward-vec4-vec4-vec4.frag": { "_update": { - "time": 0.08266901969909668 + "time": 0.11525797843933105 } }, - "spec/glsl-1.20/compiler/built-in-functions/op-add-vec3-vec3.vert": { + "spec/glsl-1.20/compiler/built-in-functions/op-eq-bvec3-bvec3.vert": { "_update": { - "time": 0.07982182502746582 + "time": 0.11941790580749512 } }, "spec/glsl-1.20/execution/vs-outerProduct-const-mat4-ivec": { @@ -887,9 +882,9 @@ "time": 0.051788091659545898 } }, - "spec/glsl-1.30/compiler/built-in-functions/op-lshift-uvec3-int.frag": { + "spec/glsl-1.20/compiler/built-in-functions/transpose-mat2.vert": { "_update": { - "time": 0.077023983001708984 + "time": 0.22917795181274414 } }, "spec/glsl-1.20/compiler/structure-and-array-operations/array-constant-index-too-large.vert": { @@ -922,9 +917,9 @@ "time": 0.24362015724182129 } }, - "spec/glsl-1.20/compiler/built-in-functions/min-vec2-vec2.frag": { + "spec/glsl-1.10/execution/built-in-functions/fs-op-add-float-vec4": { "_update": { - "time": 0.16825699806213379 + "time": 0.13716006278991699 } }, "shaders/glsl-clamp-vertex-color": { @@ -1027,9 +1022,9 @@ "time": 0.069938898086547852 } }, - "glean/fp1-Computed fog linear test": { + "spec/glsl-1.30/execution/built-in-functions/vs-op-ge-uint-uint": { "_update": { - "time": 0.13762688636779785 + "time": 0.052054882049560547 } }, "spec/glsl-1.30/execution/built-in-functions/fs-op-add-uint-uint": { @@ -1067,9 +1062,9 @@ "time": 0.23220205307006836 } }, - "shaders/glsl-fs-if-greater": { + "spec/glsl-1.20/execution/variable-indexing/vs-temp-array-mat3-index-col-wr": { "_update": { - "time": 0.64847111701965332 + "time": 0.24934983253479004 } }, "shaders/glsl-fs-statevar-call": { @@ -1137,9 +1132,9 @@ "time": 0.20399904251098633 } }, - "glean/depthStencil": { + "spec/glsl-1.20/execution/built-in-functions/vs-op-add-mat4x2-mat4x2": { "_update": { - "time": 0.095930814743041992 + "time": 0.19029092788696289 } }, "spec/glsl-1.30/compiler/built-in-functions/min-ivec2-ivec2.frag": { @@ -1167,14 +1162,14 @@ "time": 0.084573984146118164 } }, - "spec/glsl-1.10/execution/variable-indexing/fs-temp-array-mat2-wr": { + "spec/glsl-1.30/execution/built-in-functions/vs-op-add-uvec2-uint": { "_update": { - "time": 0.214508056640625 + "time": 0.046642065048217773 } }, - "spec/glsl-1.20/compiler/built-in-functions/op-sub-mat2x4-mat2x4.frag": { + "spec/glsl-1.30/execution/built-in-functions/fs-op-bitand-int-int": { "_update": { - "time": 0.14760613441467285 + "time": 0.062155008316040039 } }, "spec/ARB_texture_float/texwrap-2D-GL_LUMINANCE_ALPHA32F": { @@ -1192,6 +1187,11 @@ "time": 0.21071004867553711 } }, + "spec/glsl-1.20/execution/built-in-functions/fs-op-eq-mat2x3-mat2x3": { + "_update": { + "time": 0.18626189231872559 + } + }, "shaders/glsl-array-uniform-length": { "_update": { "time": 0.19376301765441895 @@ -1292,9 +1292,9 @@ "time": 0.15074300765991211 } }, - "spec/glsl-1.10/execution/built-in-functions/fs-greaterThan-ivec2-ivec2": { + "spec/glsl-1.20/compiler/built-in-functions/op-mult-float-mat2x4.vert": { "_update": { - "time": 0.25921392440795898 + "time": 0.073262929916381836 } }, "glean/glsl1-vec3 * mat4x3 multiply": { @@ -1337,9 +1337,9 @@ "time": 0.27123188972473145 } }, - "spec/glsl-1.10/compiler/qualifiers/fn-inout-array-prohibited-cstyle.vert": { + "spec/glsl-1.20/execution/built-in-functions/fs-transpose-mat3x4": { "_update": { - "time": 0.17223691940307617 + "time": 0.15308308601379395 } }, "spec/glsl-1.20/compiler/built-in-functions/op-selection-bool-mat4-mat4.vert": { @@ -1357,9 +1357,9 @@ "time": 0.12748384475708008 } }, - "spec/glsl-1.30/compiler/built-in-functions/tanh-float.frag": { + "spec/glsl-1.30/compiler/reserved/fvec3.frag": { "_update": { - "time": 0.081060171127319336 + "time": 0.067695140838623047 } }, "spec/glsl-1.30/execution/built-in-functions/fs-min-ivec3-ivec3": { @@ -1587,9 +1587,9 @@ "time": 0.12935709953308105 } }, - "spec/glsl-1.10/execution/built-in-functions/vs-asin-vec3": { + "spec/glsl-1.20/compiler/built-in-functions/op-eq-mat2-mat2.frag": { "_update": { - "time": 0.16100502014160156 + "time": 0.1121211051940918 } }, "spec/glsl-1.10/execution/built-in-functions/vs-asin-vec4": { @@ -1627,6 +1627,11 @@ "time": 0.23776793479919434 } }, + "spec/glsl-1.10/execution/variable-indexing/vs-temp-array-mat2-wr": { + "_update": { + "time": 0.19779610633850098 + } + }, "glx/glx-shader-sharing": { "_update": { "time": 0.26758003234863281 @@ -1662,9 +1667,9 @@ "time": 0.16473793983459473 } }, - "spec/glsl-1.20/compiler/built-in-functions/op-sub-mat3-mat3.vert": { + "spec/glsl-1.20/execution/built-in-functions/vs-transpose-mat3x4": { "_update": { - "time": 0.1291649341583252 + "time": 0.23361587524414062 } }, "spec/glsl-1.10/execution/samplers/glsl-fs-shadow1D": { @@ -1777,9 +1782,9 @@ "time": 0.068989038467407227 } }, - "spec/glsl-1.10/execution/built-in-functions/fs-op-mult-vec2-vec2": { + "spec/glsl-1.10/execution/built-in-functions/vs-op-add-int-ivec2": { "_update": { - "time": 0.12380003929138184 + "time": 0.13854217529296875 } }, "spec/glsl-1.10/execution/built-in-functions/vs-op-add-int-ivec3": { @@ -1792,14 +1797,14 @@ "time": 0.24308609962463379 } }, - "spec/glsl-1.10/compiler/arithmetic-operators/division-by-zero-02.frag": { + "spec/glsl-1.20/execution/qualifiers/vs-out-conversion-int-int-float-to-float-float-float-return": { "_update": { - "time": 0.14828395843505859 + "time": 0.17807793617248535 } }, - "fbo/fbo-srgb-blit": { + "spec/glsl-1.20/execution/variable-indexing/fs-uniform-array-mat3-row-rd": { "_update": { - "time": 0.15730714797973633 + "time": 0.36627888679504395 } }, "spec/glsl-1.20/compiler/built-in-functions/op-mult-vec2-mat2.frag": { @@ -2022,9 +2027,10 @@ "time": 0.090017080307006836 } }, - "spec/EXT_texture_snorm/texwrap-2D-GL_RG16_SNORM-bordercolor": { + "glean/pointSprite": { "_update": { - "time": 0.26098418235778809 + "info": "Returncode: 0\n\nErrors:\n\n\nOutput:\n----------------------------------------------------------------------\nTest basic point sprite functionality.\n\nIncorrect pixel at (20, 19):\n\tit should be rendered with color: (0, 0, 1), actual read: (0, 1, 0)\n\tPrimitive type: GL_POLYGON\n\tCoord Origin at: GL_UPPER_LEFT\n\tPointSize: 1.85\nIncorrect pixel at (19, 19):\n\tit should be rendered with color: (0, 0, 1), actual read: (0, 1, 0)\n\tPrimitive type: GL_POLYGON\n\tCoord Origin at: GL_LOWER_LEFT\n\tPointSize: 1.85\npointSprite: FAIL rgba8, db, z24, s8, win+pmap, id 33\n\t5 tests passed, 2 tests failed.\n\n", + "time": 0.13136410713195801 } }, "glean/glsl1-syntax error check (2)": { @@ -2177,9 +2183,9 @@ "time": 0.1703178882598877 } }, - "spec/glsl-1.20/compiler/structure-and-array-operations/array-assign-implicit-conversion-float-int.vert": { + "spec/glsl-1.10/execution/built-in-functions/vs-inversesqrt-vec4": { "_update": { - "time": 0.16148710250854492 + "time": 0.19306397438049316 } }, "spec/glsl-1.10/execution/built-in-functions/fs-op-selection-bool-ivec3-ivec3": { @@ -2217,9 +2223,9 @@ "time": 0.12887692451477051 } }, - "spec/glsl-1.10/execution/variable-indexing/vs-temp-mat4-col-row-wr": { + "spec/glsl-1.30/compiler/built-in-functions/min-uvec2-uint.frag": { "_update": { - "time": 0.16272377967834473 + "time": 0.07086491584777832 } }, "spec/glsl-1.10/compiler/reserved/double-underscore-01.frag": { @@ -2282,9 +2288,9 @@ "time": 0.21645092964172363 } }, - "spec/glsl-1.30/compiler/built-in-functions/op-lshift-uvec3-int.vert": { + "spec/glsl-1.10/execution/variable-indexing/vs-uniform-array-mat3-col-rd": { "_update": { - "time": 0.08274388313293457 + "time": 0.15149593353271484 } }, "spec/glsl-1.20/execution/built-in-functions/vs-op-sub-mat4x3-float": { @@ -2307,9 +2313,9 @@ "time": 0.11851096153259277 } }, - "glean/glsl1-conditional expression (2)": { + "spec/glsl-1.10/execution/built-in-functions/fs-any-bvec2": { "_update": { - "time": 0.12895083427429199 + "time": 0.19912505149841309 } }, "general/fragment-center": { @@ -2372,6 +2378,11 @@ "time": 0.095307111740112305 } }, + "spec/glsl-1.30/compiler/built-in-functions/op-lshift-ivec2-uvec2.vert": { + "_update": { + "time": 0.11888408660888672 + } + }, "spec/glsl-1.10/execution/variable-indexing/fs-varying-array-mat4-rd": { "_update": { "time": 0.15789508819580078 @@ -2722,11 +2733,6 @@ "time": 0.20144486427307129 } }, - "spec/glsl-1.10/execution/built-in-functions/fs-op-and-bool-bool-using-if": { - "_update": { - "time": 0.19432878494262695 - } - }, "glean/fp1-RCP test 2 (reciprocal)": { "_update": { "time": 0.13341212272644043 @@ -2797,9 +2803,9 @@ "time": 0.14412283897399902 } }, - "spec/glsl-1.10/compiler/qualifiers/centroid-01.vert": { + "spec/glsl-1.20/execution/vs-outerProduct-mat2x3-ivec": { "_update": { - "time": 0.13741803169250488 + "time": 0.22282099723815918 } }, "spec/glsl-1.30/execution/built-in-functions/vs-sinh-float": { @@ -2892,9 +2898,9 @@ "time": 0.1063690185546875 } }, - "spec/glsl-1.20/execution/variable-indexing/vs-varying-array-mat2-col-rd": { + "shaders/glsl-const-builtin-derivatives": { "_update": { - "time": 0.21445107460021973 + "time": 0.2109529972076416 } }, "spec/glsl-1.20/compiler/built-in-functions/notEqual-vec3-vec3.frag": { @@ -2997,9 +3003,9 @@ "time": 0.38441181182861328 } }, - "spec/glsl-1.20/execution/built-in-functions/fs-op-mult-mat4x2-mat4": { + "spec/glsl-1.10/execution/built-in-functions/fs-op-gt-int-int": { "_update": { - "time": 0.19960308074951172 + "time": 0.20323896408081055 } }, "spec/glsl-1.10/execution/built-in-functions/vs-length-float": { @@ -3022,9 +3028,9 @@ "time": 0.072948932647705078 } }, - "spec/glsl-1.30/execution/fs-texture-sampler2dshadow-12": { + "spec/glsl-1.30/compiler/built-in-functions/roundEven-vec3.frag": { "_update": { - "time": 0.049708127975463867 + "time": 0.063948154449462891 } }, "spec/glsl-1.30/execution/built-in-functions/fs-lessThanEqual-uvec4-uvec4": { @@ -3217,9 +3223,9 @@ "time": 0.1887509822845459 } }, - "spec/glsl-1.10/execution/variable-indexing/fs-temp-array-mat3-row-rd": { + "spec/glsl-1.20/compiler/built-in-functions/op-sub-float-mat4.frag": { "_update": { - "time": 0.13609981536865234 + "time": 0.11300277709960938 } }, "spec/glsl-1.30/execution/built-in-functions/fs-lessThan-uvec4-uvec4": { @@ -3312,9 +3318,9 @@ "time": 0.094005107879638672 } }, - "spec/glsl-1.20/compiler/built-in-functions/step-float-vec2.frag": { + "spec/glsl-1.10/execution/variable-indexing/vs-varying-mat4-col-row-wr": { "_update": { - "time": 0.10376501083374023 + "time": 0.20277595520019531 } }, "spec/glsl-1.20/execution/variable-indexing/fs-varying-array-mat2-row-rd": { @@ -3342,14 +3348,19 @@ "time": 0.27989292144775391 } }, + "spec/glsl-1.20/execution/built-in-functions/vs-op-ne-mat2x4-mat2x4-using-if": { + "_update": { + "time": 0.2609250545501709 + } + }, "spec/EXT_packed_depth_stencil/fbo-depthstencil-GL_DEPTH24_STENCIL8-drawpixels-FLOAT-and-USHORT": { "_update": { "time": 0.22515416145324707 } }, - "spec/glsl-1.10/execution/built-in-functions/vs-reflect-vec3-vec3": { + "spec/glsl-1.20/compiler/built-in-functions/op-eq-ivec4-ivec4.frag": { "_update": { - "time": 0.18347692489624023 + "time": 0.10820293426513672 } }, "spec/glsl-1.20/compiler/structure-and-array-operations/array-assign-implicit-conversion-ivec2-bvec2.vert": { @@ -3372,9 +3383,9 @@ "time": 0.18070793151855469 } }, - "glean/glsl1-exp(vec4) function": { + "general/draw-batch": { "_update": { - "time": 0.1409308910369873 + "time": 0.23587703704833984 } }, "spec/glsl-1.30/execution/built-in-functions/vs-op-mult-uint-uvec2": { @@ -3442,9 +3453,9 @@ "time": 0.20683908462524414 } }, - "spec/EXT_framebuffer_object/fbo-generatemipmap-noimage": { + "spec/glsl-1.10/execution/built-in-functions/vs-op-eq-ivec4-ivec4-using-if": { "_update": { - "time": 0.89574790000915527 + "time": 0.2346489429473877 } }, "spec/glsl-1.20/execution/built-in-functions/vs-outerProduct-vec2-vec2": { @@ -3577,9 +3588,9 @@ "time": 0.048057079315185547 } }, - "spec/!OpenGL 1.1/texwrap-1D": { + "spec/glsl-1.10/execution/built-in-functions/fs-min-vec2-float": { "_update": { - "time": 0.26930499076843262 + "time": 0.21760797500610352 } }, "spec/glsl-1.10/execution/built-in-functions/vs-dot-vec2-vec2": { @@ -3632,9 +3643,9 @@ "time": 0.075967073440551758 } }, - "spec/glsl-1.30/compiler/qualifiers/centroid-01.vert": { + "hiz/hiz-depth-stencil-test-fbo-d0-s8": { "_update": { - "time": 0.096785068511962891 + "time": 0.25380492210388184 } }, "spec/glsl-1.20/compiler/built-in-functions/op-selection-bool-bool-bool.vert": { @@ -3647,6 +3658,11 @@ "time": 0.21964287757873535 } }, + "general/quad-invariance": { + "_update": { + "time": 0.25471210479736328 + } + }, "glean/glsl1-GL state variable reference (gl_FrontMaterial.ambient)": { "_update": { "time": 0.16213798522949219 @@ -3657,9 +3673,9 @@ "time": 0.21643710136413574 } }, - "spec/glsl-1.30/execution/built-in-functions/vs-op-ne-uvec3-uvec3": { + "spec/glsl-1.10/execution/variable-indexing/fs-temp-array-mat2-index-wr": { "_update": { - "time": 0.045502901077270508 + "time": 0.25262999534606934 } }, "spec/glsl-1.30/execution/clipping/vs-clip-distance-bulk-assign": { @@ -3737,9 +3753,9 @@ "time": 0.25964713096618652 } }, - "spec/glsl-1.30/execution/built-in-functions/fs-op-bitand-uint-uvec2": { + "spec/EXT_transform_feedback/position-render-bufferbase-discard": { "_update": { - "time": 0.050981998443603516 + "time": 0.078507184982299805 } }, "spec/!OpenGL 2.0/vertex-program-two-side front back2": { @@ -3877,9 +3893,9 @@ "time": 0.091285943984985352 } }, - "glean/glsl1-struct (2)": { + "spec/glsl-1.10/execution/built-in-functions/vs-mod-vec4-vec4": { "_update": { - "time": 0.21209192276000977 + "time": 0.19083309173583984 } }, "spec/glsl-1.30/compiler/built-in-functions/op-bitxor-ivec4-ivec4.frag": { @@ -3907,6 +3923,11 @@ "time": 0.45872116088867188 } }, + "spec/glsl-1.20/compiler/built-in-functions/exp-float.vert": { + "_update": { + "time": 0.16217398643493652 + } + }, "spec/glsl-1.30/execution/built-in-functions/vs-op-rshift-uvec4-int": { "_update": { "time": 0.045797824859619141 @@ -3922,9 +3943,9 @@ "time": 0.13724207878112793 } }, - "spec/glsl-1.30/compiler/built-in-functions/op-lshift-uvec2-uvec2.vert": { + "spec/glsl-1.20/compiler/built-in-functions/not-bvec2.frag": { "_update": { - "time": 0.13678312301635742 + "time": 0.21853017807006836 } }, "shaders/glsl-uniform-out-of-bounds": { @@ -4002,9 +4023,9 @@ "time": 0.25623893737792969 } }, - "spec/glsl-1.10/execution/variable-indexing/vs-varying-mat3-col-row-wr": { + "spec/glsl-1.20/compiler/structure-and-array-operations/array-attribute.vert": { "_update": { - "time": 0.26021218299865723 + "time": 0.12335205078125 } }, "spec/glsl-1.30/execution/built-in-functions/vs-clamp-ivec3-ivec3-ivec3": { @@ -4147,9 +4168,9 @@ "time": 0.1717841625213623 } }, - "glean/texCombine": { + "spec/glsl-1.20/compiler/built-in-functions/op-ne-bvec3-bvec3.frag": { "_update": { - "time": 34.532727956771851 + "time": 0.27752399444580078 } }, "spec/ARB_explicit_attrib_location/1.10/compiler/layout-04.vert": { @@ -4167,9 +4188,14 @@ "time": 0.16349482536315918 } }, - "spec/glsl-1.20/compiler/built-in-functions/radians-vec2.frag": { + "shaders/glsl-const-initializer-03": { "_update": { - "time": 0.18780899047851562 + "time": 0.12015104293823242 + } + }, + "spec/glsl-1.20/compiler/built-in-functions/greaterThanEqual-ivec3-ivec3.vert": { + "_update": { + "time": 0.13065814971923828 } }, "spec/ARB_texture_compression/texwrap-2D-GL_COMPRESSED_LUMINANCE": { @@ -4242,9 +4268,9 @@ "time": 0.096536159515380859 } }, - "spec/glsl-1.30/execution/built-in-functions/fs-op-gt-uint-uint": { + "spec/glsl-1.30/compiler/keywords/isampler1D.frag": { "_update": { - "time": 0.048654079437255859 + "time": 0.081197977066040039 } }, "spec/glsl-1.20/execution/built-in-functions/fs-op-mult-float-mat2x4": { @@ -4292,9 +4318,9 @@ "time": 0.15843081474304199 } }, - "spec/glsl-1.30/compiler/reserved/iimage1D.frag": { + "general/scissor-offscreen": { "_update": { - "time": 0.085434913635253906 + "time": 0.25398588180541992 } }, "spec/EXT_texture_sRGB/fbo-generatemipmap-formats": { @@ -4312,9 +4338,9 @@ "time": 0.080440044403076172 } }, - "spec/glsl-1.30/compiler/built-in-functions/op-rshift-uvec3-int.frag": { + "shaders/fp-incomplete-tex": { "_update": { - "time": 0.075771808624267578 + "time": 0.21790409088134766 } }, "spec/glsl-1.20/compiler/built-in-functions/smoothstep-vec2-vec2-vec2.vert": { @@ -4347,6 +4373,11 @@ "time": 0.088316917419433594 } }, + "spec/glsl-1.20/compiler/built-in-functions/op-sub-float-mat4x2.frag": { + "_update": { + "time": 0.10352897644042969 + } + }, "spec/glsl-1.20/execution/variable-indexing/vs-uniform-mat2-rd": { "_update": { "time": 0.25958395004272461 @@ -4427,9 +4458,9 @@ "time": 0.13529109954833984 } }, - "spec/ARB_texture_float/texwrap-2D-GL_RGB16F": { + "spec/glsl-1.30/compiler/built-in-functions/op-mod-int-int.frag": { "_update": { - "time": 0.14850211143493652 + "time": 0.093995809555053711 } }, "shaders/useprogram-flushverts-1": { @@ -4662,9 +4693,9 @@ "time": 0.089473962783813477 } }, - "spec/glsl-1.30/execution/built-in-functions/vs-op-mod-uint-uvec3": { + "spec/glsl-1.20/execution/variable-indexing/vs-varying-mat4-col-row-wr": { "_update": { - "time": 0.044864892959594727 + "time": 0.15592002868652344 } }, "spec/glsl-1.30/execution/built-in-functions/vs-op-mod-uint-uvec2": { @@ -4707,9 +4738,9 @@ "time": 0.15523195266723633 } }, - "spec/!OpenGL 1.1/texwrap-2D-GL_LUMINANCE8-bordercolor": { + "spec/glsl-1.10/execution/variable-indexing/fs-temp-array-mat4-rd": { "_update": { - "time": 0.24467301368713379 + "time": 0.19623398780822754 } }, "spec/!OpenGL 1.1/texwrap-2D-GL_RGB5-bordercolor": { @@ -4762,9 +4793,9 @@ "time": 0.14056396484375 } }, - "spec/glsl-1.20/compiler/built-in-functions/radians-float.vert": { + "glean/glsl1-Comment test (5)": { "_update": { - "time": 0.10972404479980469 + "time": 0.1652979850769043 } }, "spec/ARB_shader_texture_lod/compiler/tex_grad-28.vert": { @@ -4792,11 +4823,6 @@ "time": 0.089657068252563477 } }, - "spec/glsl-1.30/execution/built-in-functions/fs-op-eq-uint-uint-using-if": { - "_update": { - "time": 0.073058128356933594 - } - }, "shaders/glsl-dlist-getattriblocation": { "_update": { "time": 0.30253696441650391 @@ -4812,9 +4838,9 @@ "time": 0.12482404708862305 } }, - "spec/glsl-1.20/compiler/built-in-functions/faceforward-vec4-vec4-vec4.frag": { + "spec/glsl-1.30/compiler/reserved/iimageBuffer.frag": { "_update": { - "time": 0.11525797843933105 + "time": 0.08266901969909668 } }, "spec/glsl-1.10/execution/built-in-functions/vs-sin-vec4": { @@ -4985,11 +5011,6 @@ "time": 0.4279019832611084 } }, - "spec/glsl-1.10/execution/variable-indexing/vs-uniform-array-mat3-col-rd": { - "_update": { - "time": 0.15149593353271484 - } - }, "spec/!OpenGL 1.1/texwrap-2D-GL_R3_G3_B2": { "_update": { "time": 0.22192907333374023 @@ -5075,11 +5096,6 @@ "time": 0.28207206726074219 } }, - "spec/glsl-1.10/execution/variable-indexing/vs-varying-array-mat3-rd": { - "_update": { - "time": 0.21028518676757812 - } - }, "shaders/glsl-vs-vec4-indexing-temp-dst-in-loop": { "_update": { "time": 0.15308904647827148 @@ -5155,9 +5171,9 @@ "time": 0.25453901290893555 } }, - "spec/glsl-1.30/execution/built-in-functions/fs-op-eq-uvec3-uvec3-using-if": { + "spec/ARB_explicit_attrib_location/1.10/compiler/attribute-01.vert": { "_update": { - "time": 0.045588016510009766 + "time": 0.15249204635620117 } }, "spec/glsl-1.10/execution/variable-indexing/vs-temp-mat2-col-row-wr": { @@ -5435,9 +5451,9 @@ "time": 0.24539685249328613 } }, - "spec/glsl-1.30/execution/built-in-functions/fs-op-mult-uint-uint": { + "spec/EXT_texture_compression_rgtc/texwrap-2D-GL_COMPRESSED_RG_RGTC2-bordercolor": { "_update": { - "time": 0.049066066741943359 + "time": 0.23454594612121582 } }, "spec/glsl-1.30/compiler/built-in-functions/clamp-uvec3-uvec3-uvec3.vert": { @@ -5485,9 +5501,9 @@ "time": 0.052469015121459961 } }, - "spec/glsl-1.10/execution/variable-indexing/vs-temp-array-mat3-col-wr": { + "spec/ARB_color_buffer_float/GL_RGBA16F-getteximage": { "_update": { - "time": 0.1334378719329834 + "time": 0.10454583168029785 } }, "spec/glsl-1.20/compiler/built-in-functions/op-sub-float-mat3.vert": { @@ -5675,11 +5691,6 @@ "time": 0.069144964218139648 } }, - "spec/glsl-1.20/compiler/built-in-functions/op-add-float-mat3.vert": { - "_update": { - "time": 0.24380588531494141 - } - }, "spec/glsl-1.20/compiler/built-in-functions/op-mult-float-mat2x3.vert": { "_update": { "time": 0.074311017990112305 @@ -5755,9 +5766,9 @@ "time": 0.12729001045227051 } }, - "spec/glsl-1.10/execution/built-in-functions/vs-pow-vec2-vec2": { + "spec/glsl-1.30/execution/built-in-functions/fs-op-bitxor-ivec3-ivec3": { "_update": { - "time": 0.18479013442993164 + "time": 0.046517848968505859 } }, "shaders/glsl-const-builtin-equal-06": { @@ -5875,9 +5886,9 @@ "time": 0.22400116920471191 } }, - "spec/glsl-1.20/execution/built-in-functions/fs-op-neg-mat3x4": { + "spec/glsl-1.20/execution/vs-outerProduct-mat2-ivec": { "_update": { - "time": 0.1897590160369873 + "time": 0.28846311569213867 } }, "spec/glsl-1.20/compiler/built-in-functions/lessThan-ivec2-ivec2.frag": { @@ -6075,9 +6086,9 @@ "time": 0.14033389091491699 } }, - "spec/ATI_envmap_bumpmap/ati_envmap_bumpmap-bump": { + "glx/glx-visuals-stencil": { "_update": { - "time": 0.21898198127746582 + "time": 3.9863848686218262 } }, "spec/glsl-1.30/compiler/built-in-functions/op-bitor-uint-uvec2.frag": { @@ -6115,9 +6126,9 @@ "time": 0.18992900848388672 } }, - "glean/fp1-SUB test (with swizzle)": { + "spec/glsl-1.30/execution/built-in-functions/fs-op-eq-uvec4-uvec4-using-if": { "_update": { - "time": 0.12129306793212891 + "time": 0.046519994735717773 } }, "spec/glsl-1.10/execution/built-in-functions/fs-op-ne-vec3-vec3": { @@ -6215,9 +6226,9 @@ "time": 0.15123486518859863 } }, - "spec/glsl-1.20/compiler/structure-and-array-operations/array-assign-implicit-conversion-vec2-bvec2.vert": { + "spec/glsl-1.30/execution/built-in-functions/vs-op-lshift-uvec2-int": { "_update": { - "time": 0.082081079483032227 + "time": 0.047235012054443359 } }, "spec/glsl-1.30/compiler/built-in-functions/op-bitand-uint-uvec4.vert": { @@ -6240,9 +6251,9 @@ "time": 0.26173305511474609 } }, - "spec/glsl-1.20/compiler/built-in-functions/distance-vec2-vec2.vert": { + "spec/glsl-1.10/execution/built-in-functions/fs-all-bvec2-using-if": { "_update": { - "time": 0.081785917282104492 + "time": 0.17295098304748535 } }, "shaders/glsl-arb-fragment-coord-conventions-define": { @@ -6260,14 +6271,14 @@ "time": 0.4559328556060791 } }, - "spec/glsl-1.20/compiler/built-in-functions/op-eq-bvec3-bvec3.vert": { + "spec/glsl-1.20/compiler/built-in-functions/op-add-vec3-vec3.vert": { "_update": { - "time": 0.11941790580749512 + "time": 0.07982182502746582 } }, - "spec/glsl-1.20/compiler/built-in-functions/transpose-mat2.vert": { + "spec/glsl-1.30/compiler/built-in-functions/op-lshift-uvec3-int.frag": { "_update": { - "time": 0.22917795181274414 + "time": 0.077023983001708984 } }, "texturing/texture-integer": { @@ -6310,9 +6321,9 @@ "time": 0.19180989265441895 } }, - "spec/glsl-1.20/compiler/built-in-functions/max-vec2-float.vert": { + "general/vao-01": { "_update": { - "time": 0.093425989151000977 + "time": 0.11883807182312012 } }, "glean/glsl1-constant array with constant indexing, fragment shader": { @@ -6320,6 +6331,11 @@ "time": 0.14786696434020996 } }, + "spec/glsl-1.20/execution/variable-indexing/fs-temp-array-mat4-wr": { + "_update": { + "time": 0.25590109825134277 + } + }, "spec/glsl-1.20/execution/built-in-functions/fs-op-mult-vec4-mat3x4": { "_update": { "time": 0.38873100280761719 @@ -6330,9 +6346,9 @@ "time": 0.2116858959197998 } }, - "spec/glsl-1.20/execution/built-in-functions/fs-transpose-mat3x4": { + "spec/glsl-1.10/compiler/qualifiers/fn-inout-array-prohibited-cstyle.vert": { "_update": { - "time": 0.15308308601379395 + "time": 0.17223691940307617 } }, "spec/glsl-1.20/execution/built-in-functions/fs-transpose-mat3x2": { @@ -6360,9 +6376,9 @@ "time": 0.17842793464660645 } }, - "spec/glsl-1.30/execution/built-in-functions/fs-min-uvec2-uvec2": { + "glean/glsl1-uniform matrix 2x4, transposed": { "_update": { - "time": 0.046676158905029297 + "time": 0.21002388000488281 } }, "spec/!OpenGL 2.0/vertex-program-two-side front back front2 back2": { @@ -6370,9 +6386,9 @@ "time": 0.14650893211364746 } }, - "spec/glsl-1.20/execution/variable-indexing/vs-temp-array-mat3-index-col-wr": { + "shaders/glsl-fs-if-greater": { "_update": { - "time": 0.24934983253479004 + "time": 0.64847111701965332 } }, "spec/glsl-1.10/execution/variable-indexing/fs-varying-array-mat2-index-col-row-rd": { @@ -6415,9 +6431,9 @@ "time": 0.2274019718170166 } }, - "spec/glsl-1.20/execution/built-in-functions/vs-transpose-mat3x4": { + "spec/glsl-1.20/compiler/built-in-functions/op-sub-mat3-mat3.vert": { "_update": { - "time": 0.23361587524414062 + "time": 0.1291649341583252 } }, "spec/glsl-1.20/execution/built-in-functions/vs-transpose-mat3x2": { @@ -6430,9 +6446,9 @@ "time": 0.12843108177185059 } }, - "spec/glsl-1.20/execution/vs-outerProduct-mat3x3": { + "spec/glsl-1.30/execution/built-in-functions/fs-op-div-uvec2-uint": { "_update": { - "time": 0.19958114624023438 + "time": 0.047860145568847656 } }, "spec/glsl-1.10/execution/built-in-functions/fs-log-float": { @@ -6465,9 +6481,9 @@ "time": 0.16586709022521973 } }, - "spec/glsl-1.20/execution/variable-indexing/fs-uniform-array-mat3-row-rd": { + "fbo/fbo-srgb-blit": { "_update": { - "time": 0.36627888679504395 + "time": 0.15730714797973633 } }, "spec/glsl-1.10/execution/variable-indexing/vs-varying-mat3-row-wr": { @@ -6500,9 +6516,9 @@ "time": 0.048651933670043945 } }, - "spec/glsl-1.10/execution/built-in-functions/vs-inversesqrt-vec4": { + "spec/glsl-1.20/compiler/structure-and-array-operations/array-assign-implicit-conversion-float-int.vert": { "_update": { - "time": 0.19306397438049316 + "time": 0.16148710250854492 } }, "spec/glsl-1.10/execution/built-in-functions/vs-inversesqrt-vec2": { @@ -6520,9 +6536,9 @@ "time": 0.20783591270446777 } }, - "spec/glsl-1.10/execution/built-in-functions/fs-any-bvec2": { + "glean/glsl1-conditional expression (2)": { "_update": { - "time": 0.19912505149841309 + "time": 0.12895083427429199 } }, "spec/glsl-1.30/compiler/built-in-functions/abs-ivec2.frag": { @@ -6570,9 +6586,9 @@ "time": 0.13902711868286133 } }, - "spec/glsl-1.20/execution/vs-outerProduct-mat2x3-ivec": { + "spec/glsl-1.10/compiler/qualifiers/centroid-01.vert": { "_update": { - "time": 0.22282099723815918 + "time": 0.13741803169250488 } }, "spec/glsl-1.20/execution/built-in-functions/vs-op-mult-mat4x2-float": { @@ -6630,9 +6646,9 @@ "time": 0.09486699104309082 } }, - "general/draw-batch": { + "glean/glsl1-exp(vec4) function": { "_update": { - "time": 0.23587703704833984 + "time": 0.1409308910369873 } }, "spec/glsl-1.20/compiler/built-in-functions/op-eq-mat4-mat4.vert": { @@ -6685,11 +6701,6 @@ "time": 0.13048601150512695 } }, - "spec/glsl-1.20/compiler/built-in-functions/max-vec2-float.frag": { - "_update": { - "time": 0.17759990692138672 - } - }, "spec/glsl-1.30/execution/built-in-functions/fs-op-sub-uint-uvec4": { "_update": { "time": 0.046027898788452148 @@ -6720,9 +6731,9 @@ "time": 0.20445108413696289 } }, - "spec/glsl-1.20/compiler/built-in-functions/not-bvec2.frag": { + "spec/glsl-1.30/compiler/built-in-functions/op-lshift-uvec2-uvec2.vert": { "_update": { - "time": 0.21853017807006836 + "time": 0.13678312301635742 } }, "shaders/glsl-vs-normalscale": { @@ -6780,9 +6791,9 @@ "time": 0.04617619514465332 } }, - "spec/glsl-1.20/compiler/built-in-functions/asin-float.frag": { + "spec/glsl-1.30/execution/built-in-functions/vs-op-complement-ivec2": { "_update": { - "time": 0.11494016647338867 + "time": 0.049599170684814453 } }, "spec/glsl-1.10/execution/built-in-functions/vs-op-div-mat4-mat4": { @@ -6795,9 +6806,9 @@ "time": 0.068969964981079102 } }, - "spec/glsl-1.30/compiler/keywords/isampler1D.frag": { + "spec/glsl-1.30/execution/built-in-functions/fs-op-gt-uint-uint": { "_update": { - "time": 0.081197977066040039 + "time": 0.048654079437255859 } }, "general/polygon-mode": { @@ -6815,9 +6826,9 @@ "time": 0.087348222732543945 } }, - "shaders/fp-incomplete-tex": { + "spec/glsl-1.30/compiler/built-in-functions/op-rshift-uvec3-int.frag": { "_update": { - "time": 0.21790409088134766 + "time": 0.075771808624267578 } }, "spec/glsl-1.10/execution/built-in-functions/fs-op-selection-bool-ivec2-ivec2": { @@ -6835,9 +6846,9 @@ "time": 0.1492009162902832 } }, - "spec/glsl-1.30/execution/built-in-functions/vs-op-complement-ivec4": { + "spec/glsl-1.20/execution/built-in-functions/fs-op-ne-mat3x4-mat3x4": { "_update": { - "time": 0.043473958969116211 + "time": 0.20073986053466797 } }, "spec/glsl-1.30/execution/built-in-functions/fs-op-lshift-ivec4-int": { @@ -7025,9 +7036,9 @@ "time": 0.1588129997253418 } }, - "spec/glsl-1.20/execution/built-in-functions/fs-matrixCompMult-mat3x2-mat3x2": { + "spec/glsl-1.30/compiler/reserved/double.frag": { "_update": { - "time": 0.18402504920959473 + "time": 0.069758892059326172 } }, "spec/glsl-1.10/execution/built-in-functions/fs-abs-vec2": { @@ -7100,9 +7111,9 @@ "time": 0.2118370532989502 } }, - "spec/EXT_texture_snorm/texwrap-2D-GL_ALPHA16_SNORM-bordercolor": { + "spec/glsl-1.20/compiler/built-in-functions/ceil-vec4.vert": { "_update": { - "time": 0.31384086608886719 + "time": 0.078414201736450195 } }, "spec/glsl-1.30/execution/built-in-functions/fs-op-eq-uvec2-uvec2-using-if": { @@ -7115,9 +7126,9 @@ "time": 0.098566055297851562 } }, - "spec/glsl-1.20/compiler/built-in-functions/sin-vec4.vert": { + "spec/glsl-1.20/compiler/built-in-functions/op-sub-mat2x4-mat2x4.frag": { "_update": { - "time": 0.19478702545166016 + "time": 0.14760613441467285 } }, "shaders/glsl-fs-textureenvcolor-statechange": { @@ -7180,14 +7191,14 @@ "time": 0.075357913970947266 } }, - "spec/glsl-1.30/execution/built-in-functions/fs-op-bitor-ivec3-ivec3": { + "spec/glsl-1.10/execution/built-in-functions/vs-lessThan-vec4-vec4": { "_update": { - "time": 0.049292802810668945 + "time": 0.15932106971740723 } }, - "spec/glsl-1.20/execution/variable-indexing/fs-temp-array-mat4-wr": { + "spec/glsl-1.10/execution/built-in-functions/vs-op-selection-bool-mat3-mat3": { "_update": { - "time": 0.25590109825134277 + "time": 0.16520404815673828 } }, "spec/glsl-1.20/compiler/structure-and-array-operations/array-length.vert": { @@ -7270,9 +7281,9 @@ "time": 0.21853494644165039 } }, - "spec/glsl-1.20/compiler/built-in-functions/op-mult-mat4x3-vec4.frag": { + "spec/glsl-1.30/execution/built-in-functions/vs-op-lshift-uvec3-ivec3": { "_update": { - "time": 0.18977785110473633 + "time": 0.042543172836303711 } }, "spec/EXT_texture_compression_latc/texwrap-2D-GL_COMPRESSED_SIGNED_LUMINANCE_LATC1-bordercolor": { @@ -7395,9 +7406,9 @@ "time": 0.11159396171569824 } }, - "spec/glsl-1.30/compiler/built-in-functions/asinh-float.vert": { + "shaders/glsl-max-varyings": { "_update": { - "time": 0.16529703140258789 + "time": 2.1009840965270996 } }, "spec/glsl-1.30/compiler/built-in-functions/max-uint-uint.frag": { @@ -7420,11 +7431,6 @@ "time": 0.18717288970947266 } }, - "spec/!OpenGL 2.0/vertex-program-two-side enabled front back front2 back2": { - "_update": { - "time": 0.15159082412719727 - } - }, "spec/AMD_conservative_depth/glsl-1.30/compiler/no-layout-01.frag": { "_update": { "time": 0.066691160202026367 @@ -7510,14 +7516,9 @@ "time": 0.15994906425476074 } }, - "spec/glsl-1.30/compiler/reserved/imageCube.frag": { - "_update": { - "time": 0.067010164260864258 - } - }, - "spec/glsl-1.30/execution/built-in-functions/fs-op-bitand-int-ivec4": { + "spec/glsl-1.20/execution/variable-indexing/vs-varying-mat3-row-wr": { "_update": { - "time": 0.055408954620361328 + "time": 0.20120596885681152 } }, "spec/glsl-1.20/compiler/built-in-functions/min-vec3-vec3.vert": { @@ -7715,14 +7716,14 @@ "time": 0.22390985488891602 } }, - "spec/glsl-1.10/execution/built-in-functions/fs-op-div-mat4-mat4": { + "spec/ARB_explicit_attrib_location/1.20/compiler/in-03.frag": { "_update": { - "time": 0.14344000816345215 + "time": 0.15793704986572266 } }, - "spec/ARB_explicit_attrib_location/1.20/compiler/in-03.frag": { + "shaders/glsl-fs-lots-of-tex": { "_update": { - "time": 0.15793704986572266 + "time": 0.14463114738464355 } }, "spec/glsl-1.20/execution/variable-indexing/vs-varying-array-mat2-row-wr": { @@ -7900,9 +7901,9 @@ "time": 0.045804023742675781 } }, - "spec/glsl-1.20/compiler/built-in-functions/op-mult-float-mat4x3.vert": { + "fbo/fbo-scissor-bitmap": { "_update": { - "time": 0.079216957092285156 + "time": 0.25803208351135254 } }, "spec/glsl-1.30/compiler/built-in-functions/op-div-large-uint-uint.frag": { @@ -7970,9 +7971,9 @@ "time": 0.08726191520690918 } }, - "spec/glsl-1.20/compiler/built-in-functions/smoothstep-float-float-vec4.vert": { + "spec/glsl-1.20/compiler/built-in-functions/op-uplus-ivec4.frag": { "_update": { - "time": 0.14326691627502441 + "time": 0.16861701011657715 } }, "spec/glsl-1.10/execution/variable-indexing/fs-varying-array-mat2-col-row-rd": { @@ -7990,9 +7991,9 @@ "time": 0.10030198097229004 } }, - "spec/!OpenGL 2.0/clip-flag-behavior": { + "spec/glsl-1.10/execution/variable-indexing/fs-uniform-array-mat4-index-col-rd": { "_update": { - "time": 0.1594691276550293 + "time": 0.14340901374816895 } }, "shaders/glsl-const-builtin-tan": { @@ -8000,9 +8001,9 @@ "time": 0.12747597694396973 } }, - "shaders/glsl-const-builtin-notEqual-02": { + "spec/glsl-1.20/recursion/indirect-separate": { "_update": { - "time": 0.29207706451416016 + "time": 0.086286067962646484 } }, "spec/ARB_explicit_attrib_location/1.20/compiler/layout-08.frag": { @@ -8030,14 +8031,14 @@ "time": 0.15885710716247559 } }, - "spec/glsl-1.20/compiler/structure-and-array-operations/array-less-equal.vert": { + "spec/glsl-1.10/execution/variable-indexing/fs-varying-array-mat2-index-rd": { "_update": { - "time": 0.076447010040283203 + "time": 0.1786658763885498 } }, - "spec/glsl-1.20/compiler/built-in-functions/op-neg-ivec4.frag": { + "spec/glsl-1.10/compiler/constant-expressions/sampler-array-index-01.frag": { "_update": { - "time": 0.14341211318969727 + "time": 0.20062112808227539 } }, "spec/glsl-1.10/execution/variable-indexing/fs-uniform-mat2-col-rd": { @@ -8070,9 +8071,9 @@ "time": 0.17644810676574707 } }, - "fbo/fbo-srgb": { + "spec/glsl-1.30/execution/built-in-functions/vs-op-uplus-uvec2": { "_update": { - "time": 0.1855781078338623 + "time": 0.073630809783935547 } }, "spec/glsl-1.30/execution/built-in-functions/vs-op-uplus-uvec3": { @@ -8130,11 +8131,6 @@ "time": 0.20436716079711914 } }, - "spec/glsl-1.10/linker/override-builtin-const-06": { - "_update": { - "time": 0.23534584045410156 - } - }, "shaders/vpfp-generic/fdo30337b": { "_update": { "time": 0.22017693519592285 @@ -8145,9 +8141,9 @@ "time": 0.12626290321350098 } }, - "spec/glsl-1.20/compiler/built-in-functions/op-mult-vec2-mat2.vert": { + "spec/glsl-1.10/execution/built-in-functions/fs-min-vec3-float": { "_update": { - "time": 0.16984796524047852 + "time": 0.23614907264709473 } }, "spec/glsl-1.20/compiler/structure-and-array-operations/array-ctor-implicit-conversion-ivec2-bvec2.vert": { @@ -8240,11 +8236,6 @@ "time": 0.12175297737121582 } }, - "glean/glsl1-Global vars and initializers": { - "_update": { - "time": 0.20339179039001465 - } - }, "spec/glsl-1.20/execution/variable-indexing/fs-temp-array-mat2-col-row-rd": { "_update": { "time": 0.2006230354309082 @@ -8280,9 +8271,9 @@ "time": 0.20436787605285645 } }, - "shaders/link-mismatch-layout-01": { + "fbo/fbo-drawbuffers-maxtargets": { "_update": { - "time": 0.3700721263885498 + "time": 0.39714908599853516 } }, "spec/glsl-1.20/compiler/built-in-functions/op-neg-mat2x3.vert": { @@ -8290,19 +8281,19 @@ "time": 0.12234210968017578 } }, - "spec/glsl-1.20/execution/variable-indexing/vs-varying-array-mat4-row-wr": { + "shaders/link-mismatch-layout-02": { "_update": { - "time": 0.12539196014404297 + "time": 0.31884002685546875 } }, - "shaders/glsl-fs-convolution-1": { + "spec/glsl-1.30/compiler/precision-qualifiers/precision-float-04.frag": { "_update": { - "time": 0.37444305419921875 + "time": 0.056843042373657227 } }, - "spec/glsl-1.20/compiler/structure-and-array-operations/array-assign-implicit-conversion-bool-float.vert": { + "spec/glsl-1.10/execution/variable-indexing/vs-varying-array-mat2-col-row-rd": { "_update": { - "time": 0.12035298347473145 + "time": 0.24180793762207031 } }, "spec/glsl-1.20/compiler/built-in-functions/op-add-float-mat4x2.frag": { @@ -8325,9 +8316,9 @@ "time": 0.12240386009216309 } }, - "spec/glsl-1.30/compiler/built-in-functions/max-ivec4-int.vert": { + "spec/ARB_color_buffer_float/GL_RGBA16F-render": { "_update": { - "time": 0.12653779983520508 + "time": 0.099692821502685547 } }, "spec/glsl-1.20/compiler/built-in-functions/equal-ivec3-ivec3.frag": { @@ -8335,9 +8326,9 @@ "time": 0.1266019344329834 } }, - "spec/glsl-1.20/execution/variable-indexing/vs-temp-mat4-col-wr": { + "spec/glsl-1.30/compiler/built-in-functions/op-bitand-ivec4-int.frag": { "_update": { - "time": 0.27948713302612305 + "time": 0.10823488235473633 } }, "spec/glsl-1.30/compiler/built-in-functions/clamp-ivec4-ivec4-ivec4.vert": { @@ -8345,9 +8336,9 @@ "time": 0.069308042526245117 } }, - "spec/glsl-1.20/compiler/built-in-functions/degrees-float.frag": { + "spec/glsl-1.30/compiler/reserved/imageCube.frag": { "_update": { - "time": 0.19717502593994141 + "time": 0.067010164260864258 } }, "spec/glsl-1.20/compiler/built-in-functions/op-mult-mat3x2-mat3.vert": { @@ -8355,24 +8346,19 @@ "time": 0.1908409595489502 } }, - "spec/glsl-1.30/compiler/built-in-functions/op-uplus-uvec4.vert": { - "_update": { - "time": 0.077322006225585938 - } - }, "spec/glsl-1.30/compiler/reserved/imageBuffer.frag": { "_update": { "time": 0.065963029861450195 } }, - "spec/glsl-1.20/execution/variable-indexing/fs-uniform-array-mat2-row-rd": { + "spec/glsl-1.10/execution/variable-indexing/vs-varying-array-mat2-index-row-rd": { "_update": { - "time": 0.21406316757202148 + "time": 0.2220451831817627 } }, - "texturing/tex-skipped-unit": { + "spec/!OpenGL 1.1/texwrap-2D-GL_RGB10-bordercolor": { "_update": { - "time": 0.41704201698303223 + "time": 0.17781400680541992 } }, "spec/glsl-1.10/execution/variable-indexing/vs-varying-array-mat3-wr": { @@ -8445,9 +8431,9 @@ "time": 0.046113014221191406 } }, - "spec/glsl-1.20/execution/built-in-functions/vs-op-mult-mat3x4-vec3": { + "spec/glsl-1.10/execution/built-in-functions/vs-op-ne-ivec4-ivec4-using-if": { "_update": { - "time": 0.18509411811828613 + "time": 0.23199200630187988 } }, "spec/glsl-1.10/execution/variable-indexing/fs-temp-array-mat4-index-row-wr": { @@ -8470,9 +8456,9 @@ "time": 0.16559886932373047 } }, - "spec/glsl-1.20/compiler/built-in-functions/mix-vec3-vec3-float.frag": { + "spec/glsl-1.30/execution/built-in-functions/fs-notEqual-uvec3-uvec3": { "_update": { - "time": 0.1975560188293457 + "time": 0.060528993606567383 } }, "spec/glsl-1.20/execution/fs-outerProduct-const-mat2x4": { @@ -8570,9 +8556,9 @@ "time": 0.049927949905395508 } }, - "spec/glsl-1.30/compiler/built-in-functions/op-complement-ivec4.vert": { + "spec/glsl-1.30/execution/built-in-functions/vs-tanh-vec3": { "_update": { - "time": 0.064260005950927734 + "time": 0.050148963928222656 } }, "spec/glsl-1.30/compiler/built-in-functions/op-bitor-uint-uvec4.vert": { @@ -8630,9 +8616,9 @@ "time": 6.0850200653076172 } }, - "spec/EXT_texture_shared_exponent/texwrap-2D-GL_RGB9_E5-bordercolor": { + "shaders/glsl-fs-loop-ge": { "_update": { - "time": 0.1339869499206543 + "time": 0.12943410873413086 } }, "spec/ARB_explicit_attrib_location/1.20/compiler/layout-06.frag": { @@ -8655,9 +8641,9 @@ "time": 0.15560317039489746 } }, - "spec/glsl-1.20/compiler/built-in-functions/op-div-vec4-vec4.frag": { + "spec/glsl-1.30/compiler/built-in-functions/op-bitor-uvec3-uint.vert": { "_update": { - "time": 0.17856478691101074 + "time": 0.084930896759033203 } }, "spec/glsl-1.20/compiler/built-in-functions/op-div-float-mat4x2.frag": { @@ -8665,9 +8651,9 @@ "time": 0.13652992248535156 } }, - "texturing/rg-teximage-02": { + "spec/glsl-1.20/compiler/built-in-functions/op-sub-ivec2-int.frag": { "_update": { - "time": 0.18764305114746094 + "time": 0.10180211067199707 } }, "spec/glsl-1.20/compiler/built-in-functions/lessThan-vec4-vec4.vert": { @@ -8690,9 +8676,9 @@ "time": 0.13367295265197754 } }, - "spec/glsl-1.20/execution/variable-indexing/vs-temp-array-mat3-wr": { + "spec/glsl-1.20/execution/variable-indexing/fs-temp-mat3-col-rd": { "_update": { - "time": 0.14614987373352051 + "time": 0.24595308303833008 } }, "spec/glsl-1.30/execution/built-in-functions/vs-op-sub-uvec4-uint": { @@ -8720,9 +8706,9 @@ "time": 0.049345970153808594 } }, - "spec/glsl-1.10/execution/built-in-functions/vs-op-ne-vec3-vec3-using-if": { + "spec/glsl-1.10/execution/built-in-functions/vs-op-selection-bool-mat4-mat4": { "_update": { - "time": 0.16051983833312988 + "time": 0.17972707748413086 } }, "spec/EXT_texture_snorm/texwrap-2D-GL_ALPHA16_SNORM": { @@ -8740,9 +8726,9 @@ "time": 0.15673017501831055 } }, - "spec/glsl-1.20/execution/variable-indexing/fs-temp-mat3-row-wr": { + "spec/glsl-1.10/execution/built-in-functions/fs-op-selection-bool-bvec3-bvec3": { "_update": { - "time": 0.26373291015625 + "time": 0.18441319465637207 } }, "spec/ARB_explicit_attrib_location/1.20/compiler/in-04.frag": { @@ -8790,9 +8776,9 @@ "time": 0.10826706886291504 } }, - "shaders/glsl-vs-clamp-1": { + "spec/glsl-1.30/execution/built-in-functions/vs-op-bitxor-ivec2-int": { "_update": { - "time": 0.23688006401062012 + "time": 0.045305967330932617 } }, "spec/glsl-1.20/compiler/built-in-functions/outerProduct-vec2-vec2.frag": { @@ -8865,9 +8851,9 @@ "time": 0.10440802574157715 } }, - "glean/vp1-MOV test (with swizzle)": { + "spec/glsl-1.10/execution/built-in-functions/fs-greaterThanEqual-ivec4-ivec4": { "_update": { - "time": 0.17370700836181641 + "time": 0.21852588653564453 } }, "spec/glsl-1.20/execution/variable-indexing/vs-temp-array-mat4-index-rd": { @@ -8875,11 +8861,6 @@ "time": 0.27909183502197266 } }, - "spec/glsl-1.20/compiler/built-in-functions/floor-vec2.frag": { - "_update": { - "time": 0.13423895835876465 - } - }, "spec/glsl-1.20/compiler/built-in-functions/op-sub-int-ivec3.vert": { "_update": { "time": 0.16092300415039062 @@ -8910,9 +8891,9 @@ "time": 0.046750068664550781 } }, - "spec/ARB_depth_texture/fbo-depth-GL_DEPTH_COMPONENT24-clear": { + "spec/glsl-1.10/execution/built-in-functions/fs-op-div-mat3-float": { "_update": { - "time": 0.24644708633422852 + "time": 0.21084904670715332 } }, "spec/glsl-1.10/execution/variable-indexing/fs-varying-array-mat3-col-row-rd": { @@ -8925,6 +8906,11 @@ "time": 0.16881799697875977 } }, + "bugs/fdo20701": { + "_update": { + "time": 0.11078906059265137 + } + }, "spec/glsl-1.30/execution/built-in-functions/vs-op-bitand-uvec3-uvec3": { "_update": { "time": 0.053068161010742188 @@ -8935,14 +8921,14 @@ "time": 0.045764923095703125 } }, - "spec/glsl-1.20/compiler/built-in-functions/op-div-float-vec4.frag": { + "shaders/glsl-algebraic-add-sub-2": { "_update": { - "time": 0.098664999008178711 + "time": 0.16153502464294434 } }, - "spec/glsl-1.10/execution/built-in-functions/vs-mix-vec3-vec3-float": { + "spec/EXT_texture_compression_s3tc/texwrap-2D-GL_COMPRESSED_RGB_S3TC_DXT1-bordercolor": { "_update": { - "time": 0.14132213592529297 + "time": 0.15454912185668945 } }, "spec/ARB_shader_texture_lod/compiler/tex_grad-24.vert": { @@ -8950,9 +8936,9 @@ "time": 0.22546100616455078 } }, - "shaders/glsl-algebraic-add-sub-1": { + "spec/glsl-1.00/compiler/assignment-operators/assign-array-prohibited.vert": { "_update": { - "time": 0.19051408767700195 + "time": 0.15520310401916504 } }, "spec/glsl-1.20/execution/variable-indexing/fs-varying-mat2-rd": { @@ -9005,9 +8991,9 @@ "time": 0.22726798057556152 } }, - "spec/glsl-1.10/execution/built-in-functions/fs-lessThanEqual-vec3-vec3": { + "spec/glsl-1.30/execution/built-in-functions/fs-max-uvec4-uint": { "_update": { - "time": 0.2257540225982666 + "time": 0.1002650260925293 } }, "shaders/link-struct-usage": { @@ -9025,9 +9011,9 @@ "time": 0.061354875564575195 } }, - "spec/glsl-1.20/compiler/built-in-functions/op-mult-mat4x3-vec4.vert": { + "spec/glsl-1.10/execution/built-in-functions/fs-greaterThan-vec2-vec2": { "_update": { - "time": 0.14847517013549805 + "time": 0.34113216400146484 } }, "shaders/glsl-link-empty-prog-02": { @@ -9085,9 +9071,9 @@ "time": 0.1259300708770752 } }, - "spec/glsl-1.20/compiler/built-in-functions/op-uplus-mat4x3.frag": { + "glean/glsl1-mat4x3 construct": { "_update": { - "time": 0.12376904487609863 + "time": 0.18866801261901855 } }, "spec/glsl-1.20/compiler/built-in-functions/op-neg-mat2x3.frag": { @@ -9155,9 +9141,9 @@ "time": 0.13994288444519043 } }, - "glean/glsl1-Preprocessor test 11 (#elif)": { + "texturing/texture-al": { "_update": { - "time": 0.18202710151672363 + "time": 0.26621294021606445 } }, "spec/glsl-1.30/execution/built-in-functions/fs-op-bitor-uvec3-uint": { @@ -9230,9 +9216,9 @@ "time": 0.11936402320861816 } }, - "spec/glsl-1.20/compiler/built-in-functions/op-eq-mat2-mat2.frag": { + "spec/glsl-1.10/execution/built-in-functions/vs-asin-vec3": { "_update": { - "time": 0.1121211051940918 + "time": 0.16100502014160156 } }, "spec/glsl-1.00/compiler/precision-qualifiers/precision-int-03.frag": { @@ -9460,9 +9446,9 @@ "time": 0.091954946517944336 } }, - "spec/glsl-1.10/execution/built-in-functions/vs-asin-float": { + "spec/glsl-1.20/recursion/indirect-complex-separate": { "_update": { - "time": 0.14106082916259766 + "time": 0.1393890380859375 } }, "glean/glsl1-vec2 * mat4x2 multiply": { @@ -9640,6 +9626,11 @@ "time": 0.10543084144592285 } }, + "spec/glsl-1.20/compiler/built-in-functions/acos-vec2.frag": { + "_update": { + "time": 0.11832094192504883 + } + }, "spec/glsl-1.30/compiler/built-in-functions/op-lshift-uvec3-ivec3.vert": { "_update": { "time": 0.21900296211242676 @@ -9805,14 +9796,19 @@ "time": 0.33173704147338867 } }, + "spec/glsl-1.30/compiler/built-in-functions/op-rshift-uint-uint.vert": { + "_update": { + "time": 0.082834005355834961 + } + }, "spec/AMD_conservative_depth/glsl-1.30/compiler/vs-redeclaration-01.vert": { "_update": { "time": 0.074290037155151367 } }, - "spec/glsl-1.30/execution/built-in-functions/fs-op-div-uvec3-uvec3": { + "glean/glsl1-Addition": { "_update": { - "time": 0.051265954971313477 + "time": 0.14677190780639648 } }, "spec/glsl-1.10/execution/built-in-functions/vs-op-ne-bool-bool-using-if": { @@ -9830,11 +9826,6 @@ "time": 0.25451493263244629 } }, - "spec/glsl-1.10/execution/built-in-functions/vs-log-vec4": { - "_update": { - "time": 0.24640607833862305 - } - }, "spec/glsl-1.10/compiler/samplers/out.frag": { "_update": { "time": 0.10913300514221191 @@ -9870,9 +9861,9 @@ "time": 0.1265101432800293 } }, - "spec/glsl-1.20/execution/variable-indexing/fs-varying-array-mat2-index-col-rd": { + "shaders/glsl-fs-dot-vec2-2": { "_update": { - "time": 0.31304693222045898 + "time": 0.16657805442810059 } }, "spec/glsl-1.30/execution/built-in-functions/fs-clamp-uvec4-uvec4-uvec4": { @@ -9945,6 +9936,11 @@ "time": 0.15972399711608887 } }, + "spec/glsl-1.20/execution/variable-indexing/fs-varying-array-mat2-col-rd": { + "_update": { + "time": 0.30247616767883301 + } + }, "spec/glsl-1.30/compiler/keywords/uint.frag": { "_update": { "time": 0.066063165664672852 @@ -9960,9 +9956,9 @@ "time": 0.1488499641418457 } }, - "spec/glsl-1.20/execution/vs-outerProduct-const-mat3x4": { + "texturing/lodclamp": { "_update": { - "time": 0.51097488403320312 + "time": 0.32948994636535645 } }, "spec/glsl-1.30/compiler/built-in-functions/op-rshift-uvec3-uint.frag": { @@ -10350,11 +10346,6 @@ "time": 0.15715217590332031 } }, - "spec/glsl-1.20/compiler/built-in-functions/op-mult-mat4x2-float.frag": { - "_update": { - "time": 0.16686797142028809 - } - }, "glean/vp1-XPD test 2 (same src and dst arg)": { "_update": { "time": 0.17010498046875 @@ -10470,9 +10461,9 @@ "time": 0.15161514282226562 } }, - "spec/glsl-1.10/execution/built-in-functions/fs-op-add-mat3-mat3": { + "spec/ARB_depth_texture/fbo-depth-GL_DEPTH_COMPONENT16-drawpixels": { "_update": { - "time": 0.18673491477966309 + "time": 0.25059604644775391 } }, "glean/glsl1-vec4, scalar arithmetic": { @@ -10640,9 +10631,9 @@ "time": 0.25721096992492676 } }, - "spec/glsl-1.10/execution/variable-indexing/vs-uniform-array-mat4-index-col-rd": { + "spec/glsl-1.10/execution/built-in-functions/fs-op-and-bool-bool-using-if": { "_update": { - "time": 0.13066411018371582 + "time": 0.19432878494262695 } }, "shaders/vpfp-generic/nv-mov": { @@ -10685,9 +10676,9 @@ "time": 0.18708395957946777 } }, - "spec/glsl-1.10/execution/built-in-functions/vs-op-sub-int-ivec2": { + "spec/glsl-1.20/execution/variable-indexing/fs-varying-array-mat4-index-row-rd": { "_update": { - "time": 0.22932004928588867 + "time": 0.3023219108581543 } }, "general/line-aa-width": { @@ -10695,9 +10686,9 @@ "time": 0.2549281120300293 } }, - "spec/glsl-1.10/execution/built-in-functions/vs-op-add-int-ivec2": { + "spec/glsl-1.10/execution/built-in-functions/fs-op-mult-vec2-vec2": { "_update": { - "time": 0.13854217529296875 + "time": 0.12380003929138184 } }, "spec/glsl-1.20/compiler/built-in-functions/sqrt-float.vert": { @@ -10850,6 +10841,11 @@ "time": 0.071596860885620117 } }, + "spec/glsl-1.10/execution/variable-indexing/vs-uniform-array-mat4-row-rd": { + "_update": { + "time": 0.16309094429016113 + } + }, "spec/glsl-1.20/compiler/built-in-functions/op-mult-float-vec4.frag": { "_update": { "time": 0.11140179634094238 @@ -11265,9 +11261,9 @@ "time": 0.19795012474060059 } }, - "shaders/glsl-fs-uniform-array-2": { + "spec/glsl-1.30/execution/built-in-functions/fs-max-ivec4-ivec4": { "_update": { - "time": 0.2444610595703125 + "time": 0.085155010223388672 } }, "spec/glsl-1.30/execution/built-in-functions/fs-op-selection-bool-uvec3-uvec3": { @@ -11275,9 +11271,9 @@ "time": 0.071796894073486328 } }, - "shaders/glsl-fs-uniform-array-3": { + "spec/glsl-1.20/compiler/built-in-functions/op-mult-mat4x2-float.vert": { "_update": { - "time": 0.18308782577514648 + "time": 0.075650930404663086 } }, "spec/glsl-1.30/execution/built-in-functions/fs-op-bitor-ivec2-ivec2": { @@ -11315,9 +11311,9 @@ "time": 0.15036511421203613 } }, - "spec/glsl-1.20/compiler/built-in-functions/op-uplus-ivec4.frag": { + "spec/glsl-1.20/compiler/built-in-functions/smoothstep-float-float-vec4.vert": { "_update": { - "time": 0.16861701011657715 + "time": 0.14326691627502441 } }, "spec/glsl-1.30/execution/built-in-functions/fs-op-bitand-uvec3-uint": { @@ -11370,9 +11366,9 @@ "time": 0.12478899955749512 } }, - "spec/ARB_shader_texture_lod/execution/glsl-fs-shadow2DGradARB-03": { + "spec/glsl-1.20/compiler/structure-and-array-operations/array-assign-implicit-conversion-ivec2-vec2.vert": { "_update": { - "time": 0.15536212921142578 + "time": 0.16124486923217773 } }, "spec/ATI_texture_compression_3dc/invalid formats": { @@ -11435,9 +11431,9 @@ "time": 0.10534405708312988 } }, - "spec/glsl-1.10/execution/variable-indexing/vs-varying-mat3-wr": { + "spec/glsl-1.30/execution/built-in-functions/fs-op-bitand-int-ivec4": { "_update": { - "time": 0.14901900291442871 + "time": 0.055408954620361328 } }, "spec/glsl-1.30/execution/built-in-functions/fs-op-bitand-int-ivec2": { @@ -11455,9 +11451,9 @@ "time": 0.20405912399291992 } }, - "spec/glsl-1.30/compiler/built-in-functions/sinh-vec2.vert": { + "spec/glsl-1.10/execution/built-in-functions/fs-any-bvec3-using-if": { "_update": { - "time": 0.091425180435180664 + "time": 0.21677398681640625 } }, "glx/glx-make-current": { @@ -11470,9 +11466,9 @@ "time": 0.12128305435180664 } }, - "spec/glsl-1.10/execution/variable-indexing/fs-uniform-array-mat4-index-col-rd": { + "spec/!OpenGL 2.0/clip-flag-behavior": { "_update": { - "time": 0.14340901374816895 + "time": 0.1594691276550293 } }, "spec/EXT_packed_depth_stencil/fbo-depth-GL_DEPTH24_STENCIL8-tex1d": { @@ -11532,9 +11528,9 @@ "time": 0.39815211296081543 } }, - "spec/glsl-1.10/execution/built-in-functions/vs-op-eq-bool-bool": { + "spec/glsl-1.20/execution/variable-indexing/vs-varying-array-mat2-index-col-wr": { "_update": { - "time": 0.13918399810791016 + "time": 0.25897216796875 } }, "spec/ARB_texture_rg/texwrap-2D-GL_RG16F-bordercolor": { @@ -11557,11 +11553,6 @@ "time": 0.072448968887329102 } }, - "spec/glsl-1.10/execution/built-in-functions/vs-op-sub-mat3-mat3": { - "_update": { - "time": 0.23678994178771973 - } - }, "general/scissor-stencil-clear": { "_update": { "time": 0.18044185638427734 @@ -11617,9 +11608,9 @@ "time": 0.12115597724914551 } }, - "spec/glsl-1.10/execution/built-in-functions/vs-op-selection-bool-vec2-vec2": { + "glean/vp1-LG2 test": { "_update": { - "time": 0.18174219131469727 + "time": 0.18002104759216309 } }, "spec/ARB_texture_float/texwrap-2D-GL_RGB32F-bordercolor": { @@ -11722,9 +11713,9 @@ "time": 0.11728215217590332 } }, - "spec/glsl-1.10/execution/variable-indexing/fs-varying-array-mat2-index-rd": { + "spec/glsl-1.20/compiler/structure-and-array-operations/array-less-equal.vert": { "_update": { - "time": 0.1786658763885498 + "time": 0.076447010040283203 } }, "glean/glsl1-function with early return (3)": { @@ -11732,9 +11723,9 @@ "time": 0.1575160026550293 } }, - "spec/glsl-1.10/compiler/constant-expressions/sampler-array-index-01.frag": { + "spec/glsl-1.20/compiler/built-in-functions/op-neg-ivec4.frag": { "_update": { - "time": 0.20062112808227539 + "time": 0.14341211318969727 } }, "spec/glsl-1.30/execution/built-in-functions/fs-round-vec4": { @@ -11922,9 +11913,9 @@ "time": 0.23518490791320801 } }, - "spec/glsl-1.10/execution/built-in-functions/vs-op-mult-mat2-vec2": { + "general/scissor-copypixels": { "_update": { - "time": 0.23677301406860352 + "time": 0.20537805557250977 } }, "spec/glsl-1.20/compiler/built-in-functions/notEqual-ivec3-ivec3.vert": { @@ -11947,9 +11938,9 @@ "time": 0.31598591804504395 } }, - "spec/glsl-1.30/execution/built-in-functions/vs-op-uplus-uvec2": { + "fbo/fbo-srgb": { "_update": { - "time": 0.073630809783935547 + "time": 0.1855781078338623 } }, "spec/glsl-1.10/execution/built-in-functions/vs-op-neg-vec3": { @@ -12242,9 +12233,9 @@ "time": 0.19556999206542969 } }, - "spec/glsl-1.30/compiler/built-in-functions/op-bitand-uvec4-uint.frag": { + "spec/glsl-1.30/compiler/storage-qualifiers/local-out-01.frag": { "_update": { - "time": 0.092108964920043945 + "time": 0.06885981559753418 } }, "spec/glsl-1.30/execution/built-in-functions/vs-op-lshift-int-int": { @@ -12297,9 +12288,9 @@ "time": 0.10437512397766113 } }, - "spec/glsl-1.10/execution/built-in-functions/fs-min-vec3-float": { + "spec/glsl-1.20/compiler/built-in-functions/op-mult-vec2-mat2.vert": { "_update": { - "time": 0.23614907264709473 + "time": 0.16984796524047852 } }, "spec/glsl-1.10/execution/built-in-functions/fs-op-ne-mat3-mat3": { @@ -12397,11 +12388,6 @@ "time": 0.080384969711303711 } }, - "shaders/glsl-const-builtin-log2": { - "_update": { - "time": 0.23959612846374512 - } - }, "glean/glsl1-Swizzled writemask (stpq)": { "_update": { "time": 0.23328614234924316 @@ -12497,9 +12483,9 @@ "time": 0.13959813117980957 } }, - "spec/ARB_explicit_attrib_location/1.20/compiler/out-01.frag": { + "shaders/glsl-array-compare-02": { "_update": { - "time": 0.1719520092010498 + "time": 0.16457295417785645 } }, "spec/glsl-1.10/execution/built-in-functions/vs-min-vec2-vec2": { @@ -12552,9 +12538,9 @@ "time": 0.20237994194030762 } }, - "spec/EXT_texture_snorm/texwrap-2D-GL_R8_SNORM": { + "spec/glsl-1.30/compiler/built-in-functions/op-lshift-uvec3-int.vert": { "_update": { - "time": 0.22127294540405273 + "time": 0.08274388313293457 } }, "spec/glsl-1.10/execution/variable-indexing/vs-uniform-mat4-col-row-rd": { @@ -12632,14 +12618,9 @@ "time": 0.18894600868225098 } }, - "spec/glsl-1.10/execution/built-in-functions/fs-op-gt-int-int": { - "_update": { - "time": 0.20323896408081055 - } - }, - "spec/glsl-1.30/execution/built-in-functions/fs-op-bitand-int-int": { + "spec/glsl-1.20/execution/built-in-functions/fs-op-mult-mat4x2-mat4": { "_update": { - "time": 0.062155008316040039 + "time": 0.19960308074951172 } }, "spec/glsl-1.20/execution/built-in-functions/vs-op-mult-mat4x2-mat2x4": { @@ -12717,9 +12698,9 @@ "time": 0.13390517234802246 } }, - "spec/glsl-1.10/execution/variable-indexing/vs-varying-mat4-col-row-wr": { + "spec/glsl-1.20/compiler/built-in-functions/step-float-vec2.frag": { "_update": { - "time": 0.20277595520019531 + "time": 0.10376501083374023 } }, "spec/glsl-1.30/execution/built-in-functions/vs-max-uvec3-uvec3": { @@ -12727,14 +12708,9 @@ "time": 0.046823024749755859 } }, - "bugs/fdo28551": { - "_update": { - "time": 0.1101539134979248 - } - }, - "spec/EXT_texture_sRGB/fbo-generatemipmap-formats-s3tc": { + "spec/glsl-1.20/execution/variable-indexing/fs-varying-array-mat2-index-rd": { "_update": { - "time": 0.11136388778686523 + "time": 0.33423805236816406 } }, "spec/glsl-1.20/execution/vs-outerProduct-const-mat2x2-ivec": { @@ -12762,9 +12738,9 @@ "time": 0.051182985305786133 } }, - "spec/glsl-1.30/execution/built-in-functions/fs-round-float": { + "texturing/s3tc-texsubimage": { "_update": { - "time": 0.058235883712768555 + "time": 0.11997509002685547 } }, "spec/glsl-1.20/execution/fs-outerProduct-const-mat2-ivec": { @@ -12772,6 +12748,11 @@ "time": 0.14568996429443359 } }, + "spec/EXT_texture_compression_rgtc/texwrap-2D-GL_COMPRESSED_SIGNED_RED_RGTC1-bordercolor": { + "_update": { + "time": 0.25073599815368652 + } + }, "spec/glsl-1.10/execution/built-in-functions/fs-op-sub-int-int": { "_update": { "time": 0.15861105918884277 @@ -12832,9 +12813,9 @@ "time": 0.14016008377075195 } }, - "spec/glsl-1.30/execution/built-in-functions/vs-cosh-vec4": { + "spec/glsl-1.30/compiler/keywords/struct.frag": { "_update": { - "time": 0.046819925308227539 + "time": 0.051999807357788086 } }, "shaders/fp-fragment-position": { @@ -12902,9 +12883,9 @@ "time": 0.17316293716430664 } }, - "general/scissor-offscreen": { + "spec/glsl-1.30/compiler/reserved/iimage1D.frag": { "_update": { - "time": 0.25398588180541992 + "time": 0.085434913635253906 } }, "spec/glsl-1.10/execution/variable-indexing/vs-uniform-array-mat4-rd": { @@ -12917,9 +12898,9 @@ "time": 0.16693806648254395 } }, - "spec/ARB_explicit_attrib_location/1.20/compiler/out-01.vert": { + "spec/glsl-1.00/compiler/precision-qualifiers/precision-float-02.frag": { "_update": { - "time": 0.15198206901550293 + "time": 0.15745997428894043 } }, "spec/glsl-1.20/compiler/built-in-functions/step-float-float.frag": { @@ -13082,9 +13063,9 @@ "time": 0.089233160018920898 } }, - "spec/EXT_texture_compression_rgtc/texwrap-2D-GL_COMPRESSED_RG_RGTC2-bordercolor": { + "spec/glsl-1.30/execution/built-in-functions/fs-op-mult-uint-uint": { "_update": { - "time": 0.23454594612121582 + "time": 0.049066066741943359 } }, "spec/glsl-1.20/execution/built-in-functions/vs-op-mult-vec2-mat4x2": { @@ -13117,9 +13098,9 @@ "time": 0.17595005035400391 } }, - "spec/glsl-1.10/execution/variable-indexing/vs-varying-array-mat2-col-row-rd": { + "spec/glsl-1.20/compiler/structure-and-array-operations/array-assign-implicit-conversion-bool-float.vert": { "_update": { - "time": 0.24180793762207031 + "time": 0.12035298347473145 } }, "shaders/useshaderprogram-flushverts-1": { @@ -13167,9 +13148,9 @@ "time": 0.22537994384765625 } }, - "glx/glx-visuals-stencil": { + "spec/ATI_envmap_bumpmap/ati_envmap_bumpmap-bump": { "_update": { - "time": 3.9863848686218262 + "time": 0.21898198127746582 } }, "spec/glsl-1.30/compiler/built-in-functions/op-bitxor-int-ivec4.vert": { @@ -13217,9 +13198,9 @@ "time": 0.17654895782470703 } }, - "glean/glsl1-uniform matrix 2x4, transposed": { + "spec/glsl-1.30/execution/built-in-functions/fs-min-uvec2-uvec2": { "_update": { - "time": 0.21002388000488281 + "time": 0.046676158905029297 } }, "shaders/vp-ignore-input": { @@ -13292,9 +13273,9 @@ "time": 0.17666912078857422 } }, - "spec/ARB_color_buffer_float/GL_RGBA16F-render": { + "spec/glsl-1.30/compiler/built-in-functions/max-ivec4-int.vert": { "_update": { - "time": 0.099692821502685547 + "time": 0.12653779983520508 } }, "general/scissor-depth-clear": { @@ -13352,11 +13333,6 @@ "time": 0.1406099796295166 } }, - "spec/glsl-1.30/compiler/built-in-functions/op-rshift-ivec2-int.frag": { - "_update": { - "time": 0.089838027954101562 - } - }, "spec/glsl-1.30/compiler/reserved/class.frag": { "_update": { "time": 0.11485600471496582 @@ -13382,6 +13358,11 @@ "time": 0.10913705825805664 } }, + "spec/glsl-1.20/compiler/built-in-functions/degrees-float.frag": { + "_update": { + "time": 0.19717502593994141 + } + }, "spec/glsl-1.20/execution/variable-indexing/vs-temp-array-mat3-row-rd": { "_update": { "time": 0.2196040153503418 @@ -13402,6 +13383,11 @@ "time": 0.16094207763671875 } }, + "glean/glsl1-Swizzle": { + "_update": { + "time": 0.16532087326049805 + } + }, "glean/vp1-MUL test (with swizzle and masking)": { "_update": { "time": 0.15592598915100098 @@ -13417,9 +13403,9 @@ "time": 0.17613697052001953 } }, - "shaders/glsl-max-varyings": { + "spec/glsl-1.30/compiler/built-in-functions/asinh-float.vert": { "_update": { - "time": 2.1009840965270996 + "time": 0.16529703140258789 } }, "spec/glsl-1.20/compiler/built-in-functions/op-sub-int-int.vert": { @@ -13427,6 +13413,11 @@ "time": 0.066035032272338867 } }, + "spec/glsl-1.20/execution/variable-indexing/fs-temp-array-mat4-index-col-row-wr": { + "_update": { + "time": 0.40094590187072754 + } + }, "spec/glsl-1.30/compiler/built-in-functions/op-bitxor-int-ivec2.vert": { "_update": { "time": 0.086862087249755859 @@ -13457,9 +13448,9 @@ "time": 0.13398289680480957 } }, - "spec/!OpenGL 1.1/texwrap-2D-GL_RGB10-bordercolor": { + "texturing/tex-skipped-unit": { "_update": { - "time": 0.17781400680541992 + "time": 0.41704201698303223 } }, "fbo/fbo-generatemipmap": { @@ -13557,6 +13548,11 @@ "time": 0.26531887054443359 } }, + "glean/glsl1-mat3x2 construct": { + "_update": { + "time": 0.1781461238861084 + } + }, "spec/ARB_shader_texture_lod/compiler/tex_lod-11.frag": { "_update": { "time": 0.30192303657531738 @@ -13592,9 +13588,9 @@ "time": 0.043648958206176758 } }, - "spec/glsl-1.10/execution/built-in-functions/fs-op-selection-bool-bvec3-bvec3": { + "spec/glsl-1.20/execution/variable-indexing/fs-temp-mat3-row-wr": { "_update": { - "time": 0.18441319465637207 + "time": 0.26373291015625 } }, "spec/glsl-1.30/execution/built-in-functions/fs-op-rshift-uint-uint": { @@ -13672,9 +13668,9 @@ "time": 0.044653892517089844 } }, - "spec/ARB_shader_stencil_export/amd-undefined.frag": { + "spec/glsl-1.20/compiler/built-in-functions/normalize-vec2.frag": { "_update": { - "time": 0.14235591888427734 + "time": 0.1266169548034668 } }, "spec/glsl-1.20/compiler/built-in-functions/log-float.frag": { @@ -13762,11 +13758,6 @@ "time": 0.085319042205810547 } }, - "shaders/glsl-array-bounds-04": { - "_update": { - "time": 0.14214992523193359 - } - }, "spec/glsl-1.20/compiler/built-in-functions/fract-vec4.vert": { "_update": { "time": 0.085971832275390625 @@ -13792,14 +13783,19 @@ "time": 0.24725198745727539 } }, + "general/gl30basic": { + "_update": { + "time": 0.18033385276794434 + } + }, "glean/fp1-ADD test": { "_update": { "time": 0.16426897048950195 } }, - "texturing/lodclamp": { + "spec/glsl-1.20/execution/vs-outerProduct-const-mat3x4": { "_update": { - "time": 0.32948994636535645 + "time": 0.51097488403320312 } }, "spec/glsl-1.20/execution/vs-outerProduct-const-mat3x3": { @@ -13817,9 +13813,9 @@ "time": 0.2489621639251709 } }, - "spec/glsl-1.10/execution/built-in-functions/vs-op-ne-ivec4-ivec4-using-if": { + "spec/glsl-1.20/execution/built-in-functions/vs-op-mult-mat3x4-vec3": { "_update": { - "time": 0.23199200630187988 + "time": 0.18509411811828613 } }, "spec/glsl-1.20/compiler/built-in-functions/op-lt-int-int.vert": { @@ -13872,11 +13868,6 @@ "time": 0.13557291030883789 } }, - "shaders/glsl-array-bounds-03": { - "_update": { - "time": 0.20382094383239746 - } - }, "spec/glsl-1.20/compiler/built-in-functions/op-add-mat4x2-mat4x2.frag": { "_update": { "time": 0.1105351448059082 @@ -13907,9 +13898,9 @@ "time": 0.14591097831726074 } }, - "spec/glsl-1.10/execution/variable-indexing/vs-temp-array-mat2-col-row-rd": { + "spec/glsl-1.20/compiler/built-in-functions/op-mult-mat4x3-mat3x4.frag": { "_update": { - "time": 0.21581387519836426 + "time": 0.14741301536560059 } }, "spec/NV_conditional_render/begin-while-active": { @@ -13932,9 +13923,9 @@ "time": 0.23453092575073242 } }, - "spec/glsl-1.30/execution/built-in-functions/fs-notEqual-uvec3-uvec3": { + "spec/glsl-1.20/compiler/built-in-functions/mix-vec3-vec3-float.frag": { "_update": { - "time": 0.060528993606567383 + "time": 0.1975560188293457 } }, "glean/orthoPosPoints": { @@ -14082,9 +14073,9 @@ "time": 0.2996208667755127 } }, - "spec/glsl-1.30/execution/built-in-functions/vs-op-div-uvec4-uvec4": { + "spec/glsl-1.30/execution/built-in-functions/fs-op-lshift-uvec2-uint": { "_update": { - "time": 0.05807805061340332 + "time": 0.046271085739135742 } }, "spec/glsl-1.20/compiler/built-in-functions/op-sub-ivec2-ivec2.vert": { @@ -14102,6 +14093,11 @@ "time": 0.062809944152832031 } }, + "shaders/vpfp-generic/vp-arl-constant-array-huge-varying": { + "_update": { + "time": 0.23259210586547852 + } + }, "spec/glsl-1.10/execution/built-in-functions/fs-refract-vec4-vec4-float": { "_update": { "time": 0.13072490692138672 @@ -14167,6 +14163,11 @@ "time": 0.15927004814147949 } }, + "spec/ARB_shader_objects/getuniform": { + "_update": { + "time": 0.17635011672973633 + } + }, "general/oes-read-format": { "_update": { "time": 0.18111705780029297 @@ -14192,11 +14193,6 @@ "time": 0.15641689300537109 } }, - "spec/glsl-1.30/compiler/built-in-functions/op-lshift-uvec2-ivec2.vert": { - "_update": { - "time": 0.24125814437866211 - } - }, "spec/glsl-1.10/execution/built-in-functions/vs-op-ne-vec4-vec4": { "_update": { "time": 0.20734190940856934 @@ -14292,9 +14288,9 @@ "time": 0.20412611961364746 } }, - "spec/glsl-1.30/compiler/keywords/struct.frag": { + "spec/glsl-1.30/execution/built-in-functions/vs-cosh-vec4": { "_update": { - "time": 0.051999807357788086 + "time": 0.046819925308227539 } }, "spec/glsl-1.30/execution/built-in-functions/vs-op-rshift-uvec2-ivec2": { @@ -14387,9 +14383,9 @@ "time": 0.17626214027404785 } }, - "spec/glsl-1.30/execution/built-in-functions/vs-tanh-vec3": { + "spec/glsl-1.30/compiler/built-in-functions/op-complement-ivec4.vert": { "_update": { - "time": 0.050148963928222656 + "time": 0.064260005950927734 } }, "spec/glsl-1.10/execution/variable-indexing/fs-temp-array-mat2-index-row-rd": { @@ -14582,9 +14578,9 @@ "time": 0.028501987457275391 } }, - "spec/glsl-1.30/compiler/keywords/samplerCubeShadow.frag": { + "spec/glsl-1.30/compiler/built-in-functions/op-bitor-ivec4-ivec4.frag": { "_update": { - "time": 0.11411809921264648 + "time": 0.056586980819702148 } }, "glean/fp1-DP4 test": { @@ -14607,11 +14603,6 @@ "time": 0.14356207847595215 } }, - "spec/glsl-1.30/execution/built-in-functions/vs-op-bitand-ivec4-ivec4": { - "_update": { - "time": 0.046168088912963867 - } - }, "spec/glsl-1.20/execution/built-in-functions/vs-op-div-float-mat2x3": { "_update": { "time": 0.21379899978637695 @@ -14662,14 +14653,19 @@ "time": 0.10085177421569824 } }, + "spec/glsl-1.30/preprocessor/if/if-arg-must-be-defined-01.frag": { + "_update": { + "time": 0.046392917633056641 + } + }, "spec/glsl-1.30/compiler/built-in-functions/op-sub-uvec4-uvec4.frag": { "_update": { "time": 0.074640035629272461 } }, - "shaders/glsl-fs-loop-ge": { + "spec/EXT_texture_shared_exponent/texwrap-2D-GL_RGB9_E5-bordercolor": { "_update": { - "time": 0.12943410873413086 + "time": 0.1339869499206543 } }, "spec/glsl-1.30/execution/clipping/vs-clip-distance-const-accept": { @@ -14707,11 +14703,6 @@ "time": 0.18076086044311523 } }, - "spec/glsl-1.10/execution/built-in-functions/vs-op-eq-int-int": { - "_update": { - "time": 0.23882317543029785 - } - }, "spec/glsl-1.20/compiler/built-in-functions/outerProduct-vec4-vec4.vert": { "_update": { "time": 0.12409400939941406 @@ -14772,9 +14763,9 @@ "time": 0.16314411163330078 } }, - "spec/glsl-1.30/compiler/built-in-functions/op-bitor-uvec3-uint.vert": { + "spec/glsl-1.20/compiler/built-in-functions/op-div-vec4-vec4.frag": { "_update": { - "time": 0.084930896759033203 + "time": 0.17856478691101074 } }, "spec/glsl-1.20/compiler/built-in-functions/op-add-ivec3-int.frag": { @@ -14787,6 +14778,11 @@ "time": 0.18947601318359375 } }, + "spec/glsl-1.20/compiler/built-in-functions/op-mult-mat4x3-vec4.frag": { + "_update": { + "time": 0.18977785110473633 + } + }, "glean/glsl1-pow(vec4) function": { "_update": { "time": 0.15567779541015625 @@ -14797,9 +14793,9 @@ "time": 0.24352908134460449 } }, - "general/isbufferobj": { + "shaders/glsl-vs-arrays-2": { "_update": { - "time": 0.14367794990539551 + "time": 0.16278696060180664 } }, "spec/glsl-1.20/compiler/built-in-functions/exp2-float.frag": { @@ -14832,9 +14828,9 @@ "time": 0.21279120445251465 } }, - "spec/glsl-1.20/compiler/built-in-functions/op-sub-ivec2-int.frag": { + "texturing/rg-teximage-02": { "_update": { - "time": 0.10180211067199707 + "time": 0.18764305114746094 } }, "spec/glsl-1.20/compiler/structure-and-array-operations/array-size-vec2.vert": { @@ -14932,9 +14928,9 @@ "time": 0.22512602806091309 } }, - "spec/glsl-1.20/execution/variable-indexing/fs-temp-mat3-col-rd": { + "spec/glsl-1.20/execution/variable-indexing/vs-temp-array-mat3-wr": { "_update": { - "time": 0.24595308303833008 + "time": 0.14614987373352051 } }, "spec/ARB_shader_texture_lod/compiler/tex_grad-13.frag": { @@ -14957,9 +14953,9 @@ "time": 0.19175910949707031 } }, - "spec/glsl-1.10/preprocessor/divide-by-zero.vert": { + "spec/glsl-1.20/recursion/unreachable-constant-folding": { "_update": { - "time": 0.090542078018188477 + "time": 0.078442096710205078 } }, "spec/glsl-1.10/execution/variable-indexing/vs-uniform-array-mat3-index-row-rd": { @@ -14982,9 +14978,9 @@ "time": 0.21595406532287598 } }, - "spec/glsl-1.30/compiler/built-in-functions/op-rshift-uint-uint.vert": { + "glean/glsl1-Global vars and initializers": { "_update": { - "time": 0.082834005355834961 + "time": 0.20339179039001465 } }, "spec/glsl-1.30/compiler/built-in-functions/greaterThan-uvec2-uvec2.vert": { @@ -15047,9 +15043,9 @@ "time": 0.17396402359008789 } }, - "spec/glsl-1.20/compiler/structure-and-array-operations/array-assign-implicit-conversion-vec3-ivec3.vert": { + "spec/glsl-1.10/execution/built-in-functions/vs-op-uplus-ivec3": { "_update": { - "time": 0.16757607460021973 + "time": 0.21635293960571289 } }, "shaders/glsl-fs-mod": { @@ -15137,9 +15133,9 @@ "time": 0.06652522087097168 } }, - "spec/glsl-1.30/compiler/built-in-functions/op-sub-uint-uvec4.vert": { + "spec/glsl-1.20/compiler/built-in-functions/op-mult-mat4-mat2x4.vert": { "_update": { - "time": 0.058903932571411133 + "time": 0.12459611892700195 } }, "spec/glsl-1.20/execution/variable-indexing/fs-temp-mat4-col-row-rd": { @@ -15162,9 +15158,9 @@ "time": 0.22390913963317871 } }, - "spec/glsl-1.10/execution/variable-indexing/fs-varying-mat3-col-rd": { + "spec/glsl-1.20/compiler/structure-and-array-operations/array-assign-implicit-conversion-vec4-bvec4.vert": { "_update": { - "time": 0.1308131217956543 + "time": 0.064868927001953125 } }, "glean/glsl1-inequality (vec3, fail)": { @@ -15374,11 +15370,6 @@ "time": 0.15013408660888672 } }, - "spec/ARB_explicit_attrib_location/1.10/compiler/layout-08.frag": { - "_update": { - "time": 0.15688514709472656 - } - }, "spec/glsl-1.30/execution/built-in-functions/vs-op-bitxor-uvec2-uvec2": { "_update": { "time": 0.058539867401123047 @@ -15534,9 +15525,9 @@ "time": 0.17581701278686523 } }, - "spec/glsl-1.30/compiler/built-in-functions/op-bitxor-int-ivec3.vert": { + "shaders/glsl-algebraic-mul-one": { "_update": { - "time": 0.074227094650268555 + "time": 0.2330780029296875 } }, "spec/!OpenGL 1.1/texwrap-2D-GL_RGB8": { @@ -15569,9 +15560,9 @@ "time": 0.15703392028808594 } }, - "spec/glsl-1.20/execution/fs-outerProduct-mat3x2-ivec": { + "spec/glsl-1.20/compiler/built-in-functions/sqrt-vec2.frag": { "_update": { - "time": 0.20082712173461914 + "time": 0.16081595420837402 } }, "spec/glsl-1.10/execution/variable-indexing/vs-varying-array-mat4-col-row-wr": { @@ -15584,9 +15575,9 @@ "time": 0.1075890064239502 } }, - "spec/!OpenGL 1.1/texwrap-2D-proj": { + "spec/glsl-1.20/execution/variable-indexing/vs-temp-mat4-wr": { "_update": { - "time": 0.2401888370513916 + "time": 0.2005460262298584 } }, "fbo/fbo-readdrawpix": { @@ -15619,9 +15610,9 @@ "time": 0.1142880916595459 } }, - "spec/glsl-1.00/compiler/precision-qualifiers/default-precision-vec-01.frag": { + "spec/glsl-1.20/execution/variable-indexing/vs-uniform-mat2-col-row-rd": { "_update": { - "time": 0.1448218822479248 + "time": 0.14656305313110352 } }, "spec/glsl-1.30/execution/built-in-functions/vs-op-bitor-int-ivec4": { @@ -15659,9 +15650,9 @@ "time": 0.20022392272949219 } }, - "spec/glsl-1.30/execution/built-in-functions/vs-op-bitxor-ivec2-int": { + "shaders/glsl-vs-clamp-1": { "_update": { - "time": 0.045305967330932617 + "time": 0.23688006401062012 } }, "spec/glsl-1.10/execution/built-in-functions/vs-op-uplus-mat4": { @@ -15724,9 +15715,9 @@ "time": 0.13027000427246094 } }, - "spec/glsl-1.20/compiler/structure-and-array-operations/array-logical-xor.vert": { + "spec/glsl-1.10/compiler/declarations/bad-array-type-parameter.vert": { "_update": { - "time": 0.11223602294921875 + "time": 0.12590384483337402 } }, "shaders/glsl-vs-f2b": { @@ -15789,9 +15780,9 @@ "time": 0.051577091217041016 } }, - "shaders/glsl-algebraic-not-notequals": { + "spec/glsl-1.20/compiler/built-in-functions/inversesqrt-vec4.frag": { "_update": { - "time": 0.24479484558105469 + "time": 0.17841720581054688 } }, "glean/vp1-FLR test": { @@ -15819,9 +15810,9 @@ "time": 0.1516120433807373 } }, - "spec/glsl-1.20/compiler/built-in-functions/op-sub-vec3-float.vert": { + "spec/glsl-1.20/execution/variable-indexing/fs-temp-array-mat4-col-rd": { "_update": { - "time": 0.1931610107421875 + "time": 0.33054804801940918 } }, "spec/glsl-1.10/execution/built-in-functions/vs-op-add-vec3-float": { @@ -15924,6 +15915,11 @@ "time": 0.20714807510375977 } }, + "spec/glsl-1.10/execution/built-in-functions/fs-clamp-vec2-float-float": { + "_update": { + "time": 0.2602999210357666 + } + }, "spec/glsl-1.20/compiler/built-in-functions/op-div-mat3x2-mat3x2.frag": { "_update": { "time": 0.11461591720581055 @@ -15934,9 +15930,9 @@ "time": 0.077506065368652344 } }, - "spec/glsl-1.10/execution/built-in-functions/fs-normalize-float": { + "spec/glsl-1.10/execution/built-in-functions/vs-op-uplus-vec4": { "_update": { - "time": 0.24733901023864746 + "time": 0.18427896499633789 } }, "spec/glsl-1.20/execution/built-in-functions/fs-op-div-float-mat3x2": { @@ -15979,9 +15975,9 @@ "time": 0.25816893577575684 } }, - "spec/ARB_shader_texture_lod/compiler/tex_grad-10.frag": { + "shaders/glsl-useprogram-displaylist": { "_update": { - "time": 0.20987701416015625 + "time": 0.42124295234680176 } }, "spec/glsl-1.30/execution/built-in-functions/vs-op-bitxor-ivec4-ivec4": { @@ -15989,6 +15985,11 @@ "time": 0.047152042388916016 } }, + "spec/glsl-1.30/execution/built-in-functions/vs-op-ne-uvec4-uvec4-using-if": { + "_update": { + "time": 0.051195144653320312 + } + }, "spec/EXT_texture_snorm/texwrap-2D-GL_RGBA16_SNORM-bordercolor": { "_update": { "time": 0.24260592460632324 @@ -16084,9 +16085,9 @@ "time": 0.06002497673034668 } }, - "spec/glsl-1.30/execution/built-in-functions/vs-op-rshift-ivec3-uint": { + "spec/glsl-1.10/execution/built-in-functions/fs-op-sub-ivec2-ivec2": { "_update": { - "time": 0.047514200210571289 + "time": 0.13647198677062988 } }, "spec/NV_conditional_render/copytexsubimage": { @@ -16189,19 +16190,19 @@ "time": 0.12604308128356934 } }, - "spec/glsl-1.30/execution/built-in-functions/vs-greaterThanEqual-uvec3-uvec3": { + "spec/ARB_texture_rg/fbo-blending-formats": { "_update": { - "time": 0.053642988204956055 + "time": 0.25916504859924316 } }, - "spec/glsl-1.10/execution/built-in-functions/fs-greaterThanEqual-ivec4-ivec4": { + "glean/vp1-MOV test (with swizzle)": { "_update": { - "time": 0.21852588653564453 + "time": 0.17370700836181641 } }, - "spec/glsl-1.10/execution/built-in-functions/vs-op-ne-bool-bool": { + "spec/glsl-1.30/compiler/built-in-functions/op-bitand-uint-uvec3.frag": { "_update": { - "time": 0.15788388252258301 + "time": 0.054755210876464844 } }, "spec/ARB_texture_compression_bptc/invalid formats": { @@ -16219,9 +16220,9 @@ "time": 0.19558811187744141 } }, - "spec/glsl-1.30/execution/built-in-functions/fs-op-lshift-ivec3-uvec3": { + "spec/glsl-1.10/execution/built-in-functions/fs-op-uplus-int": { "_update": { - "time": 0.04489898681640625 + "time": 0.19833588600158691 } }, "spec/glsl-1.10/execution/built-in-functions/fs-cos-vec3": { @@ -16244,9 +16245,9 @@ "time": 0.23931694030761719 } }, - "spec/glsl-1.10/execution/built-in-functions/fs-cos-vec4": { + "spec/glsl-1.20/compiler/built-in-functions/matrixCompMult-mat3x2-mat3x2.vert": { "_update": { - "time": 0.20428085327148438 + "time": 0.13166499137878418 } }, "spec/glsl-1.10/execution/built-in-functions/vs-fract-vec2": { @@ -16289,9 +16290,9 @@ "time": 0.22437095642089844 } }, - "spec/glsl-1.30/compiler/built-in-functions/op-rshift-int-uint.frag": { + "spec/glsl-1.30/compiler/built-in-functions/op-add-uvec3-uint.vert": { "_update": { - "time": 0.11823606491088867 + "time": 0.12999510765075684 } }, "spec/glsl-1.10/execution/built-in-functions/vs-op-ne-bvec2-bvec2": { @@ -16299,9 +16300,9 @@ "time": 0.19018411636352539 } }, - "spec/glsl-1.10/execution/built-in-functions/fs-atan-vec2": { + "spec/glsl-1.20/execution/variable-indexing/vs-uniform-array-mat4-index-col-rd": { "_update": { - "time": 0.15349292755126953 + "time": 0.18897104263305664 } }, "spec/glsl-1.20/compiler/built-in-functions/op-ne-vec4-vec4.frag": { @@ -16319,9 +16320,9 @@ "time": 0.08657383918762207 } }, - "shaders/glsl-vs-arrays-2": { + "general/isbufferobj": { "_update": { - "time": 0.16278696060180664 + "time": 0.14367794990539551 } }, "spec/glsl-1.10/execution/built-in-functions/fs-op-ne-bvec3-bvec3-using-if": { @@ -16339,9 +16340,9 @@ "time": 0.19067692756652832 } }, - "spec/glsl-1.30/execution/built-in-functions/fs-op-mod-uvec2-uvec2": { + "texturing/mipmap-setup": { "_update": { - "time": 0.052237033843994141 + "time": 0.59929203987121582 } }, "spec/AMD_conservative_depth/glsl-1.30/compiler/late-redeclaration-01.frag": { @@ -16404,9 +16405,9 @@ "time": 0.051581144332885742 } }, - "spec/glsl-1.20/execution/variable-indexing/vs-varying-mat2-col-row-wr": { + "spec/glsl-1.30/compiler/built-in-functions/op-neg-uvec3.frag": { "_update": { - "time": 0.22728919982910156 + "time": 0.14711785316467285 } }, "spec/glsl-1.20/compiler/built-in-functions/op-div-float-mat3.frag": { @@ -16539,9 +16540,9 @@ "time": 0.15090513229370117 } }, - "spec/glsl-1.10/execution/built-in-functions/fs-op-div-mat3-float": { + "spec/ARB_depth_texture/fbo-depth-GL_DEPTH_COMPONENT24-clear": { "_update": { - "time": 0.21084904670715332 + "time": 0.24644708633422852 } }, "spec/glsl-1.30/compiler/built-in-functions/op-bitxor-ivec4-ivec4.vert": { @@ -16579,9 +16580,9 @@ "time": 0.15685606002807617 } }, - "spec/glsl-1.20/compiler/built-in-functions/acos-vec3.vert": { + "spec/glsl-1.20/compiler/built-in-functions/clamp-float-float-float.vert": { "_update": { - "time": 0.10762786865234375 + "time": 0.12880110740661621 } }, "spec/glsl-1.30/execution/built-in-functions/vs-op-add-uint-uint": { @@ -16619,9 +16620,9 @@ "time": 0.20888519287109375 } }, - "spec/glsl-1.30/compiler/built-in-functions/op-bitxor-uvec4-uint.frag": { + "spec/glsl-1.30/compiler/built-in-functions/op-mod-uvec3-uvec3.vert": { "_update": { - "time": 0.14234209060668945 + "time": 0.096812963485717773 } }, "glean/glsl1-matrix, vector multiply (2)": { @@ -16704,6 +16705,11 @@ "time": 0.44953703880310059 } }, + "spec/glsl-1.10/execution/built-in-functions/fs-op-selection-bool-bool-bool-using-if": { + "_update": { + "time": 0.11196780204772949 + } + }, "spec/glsl-1.30/compiler/built-in-functions/op-sub-uint-uint.vert": { "_update": { "time": 0.060740947723388672 @@ -16859,9 +16865,9 @@ "time": 0.1454770565032959 } }, - "spec/glsl-1.30/compiler/built-in-functions/sign-ivec3.frag": { + "spec/glsl-1.20/compiler/built-in-functions/any-bvec2.vert": { "_update": { - "time": 0.065616130828857422 + "time": 0.15273785591125488 } }, "general/depthstencil-default_fb-readpixels-32F_24_8_REV": { @@ -16879,14 +16885,14 @@ "time": 0.16272497177124023 } }, - "shaders/glsl-algebraic-add-sub-2": { + "spec/glsl-1.20/compiler/built-in-functions/op-div-float-vec4.frag": { "_update": { - "time": 0.16153502464294434 + "time": 0.098664999008178711 } }, - "spec/EXT_texture_compression_s3tc/texwrap-2D-GL_COMPRESSED_RGB_S3TC_DXT1-bordercolor": { + "spec/glsl-1.10/execution/built-in-functions/vs-mix-vec3-vec3-float": { "_update": { - "time": 0.15454912185668945 + "time": 0.14132213592529297 } }, "shaders/glsl-algebraic-neg-neg": { @@ -16909,9 +16915,9 @@ "time": 0.15173912048339844 } }, - "spec/glsl-1.00/compiler/assignment-operators/assign-array-prohibited.vert": { + "shaders/glsl-algebraic-add-sub-1": { "_update": { - "time": 0.15520310401916504 + "time": 0.19051408767700195 } }, "spec/glsl-1.10/execution/variable-indexing/vs-varying-mat4-rd": { @@ -17024,6 +17030,11 @@ "time": 0.25553297996520996 } }, + "spec/glsl-1.30/compiler/built-in-functions/op-lshift-ivec4-ivec4.frag": { + "_update": { + "time": 0.23666095733642578 + } + }, "spec/EXT_texture_compression_s3tc/texwrap-2D-GL_COMPRESSED_RGBA_S3TC_DXT3": { "_update": { "time": 0.13538002967834473 @@ -17079,9 +17090,9 @@ "time": 0.38749909400939941 } }, - "spec/glsl-1.30/compiler/built-in-functions/max-uvec2-uint.vert": { + "spec/glsl-1.20/compiler/built-in-functions/op-selection-bool-mat4x2-mat4x2.vert": { "_update": { - "time": 0.12960100173950195 + "time": 0.15248799324035645 } }, "general/stencil-wrap": { @@ -17159,9 +17170,9 @@ "time": 0.16615080833435059 } }, - "spec/glsl-1.30/compiler/built-in-functions/op-bitxor-int-int.vert": { + "spec/glsl-1.30/compiler/keywords/mat2x4.frag": { "_update": { - "time": 0.10553121566772461 + "time": 0.10838699340820312 } }, "spec/glsl-1.30/compiler/built-in-functions/op-rshift-uint-int.frag": { @@ -17349,9 +17360,9 @@ "time": 0.22336101531982422 } }, - "spec/glsl-1.20/execution/built-in-functions/vs-op-mult-mat3x4-mat4x3": { + "spec/glsl-1.20/compiler/built-in-functions/notEqual-bvec3-bvec3.frag": { "_update": { - "time": 0.150421142578125 + "time": 0.16800284385681152 } }, "spec/glsl-1.10/execution/built-in-functions/vs-any-bvec4-using-if": { @@ -17625,9 +17636,9 @@ "time": 0.19970703125 } }, - "glean/glsl1-mat4x3 construct": { + "spec/glsl-1.20/compiler/built-in-functions/op-uplus-mat4x3.frag": { "_update": { - "time": 0.18866801261901855 + "time": 0.12376904487609863 } }, "spec/glsl-1.10/execution/built-in-functions/vs-op-div-mat4-float": { @@ -17660,9 +17671,9 @@ "time": 0.11000204086303711 } }, - "glean/glsl1-uniform matrix 2x4": { + "spec/glsl-1.20/compiler/built-in-functions/op-div-ivec4-int.frag": { "_update": { - "time": 0.18230891227722168 + "time": 0.10892796516418457 } }, "spec/glsl-1.30/compiler/built-in-functions/acosh-vec4.vert": { @@ -17780,14 +17791,9 @@ "time": 0.22802996635437012 } }, - "spec/glsl-1.30/execution/built-in-functions/fs-op-div-uint-uint": { - "_update": { - "time": 0.045335054397583008 - } - }, - "spec/glsl-1.30/compiler/reserved/double.frag": { + "spec/glsl-1.10/execution/variable-indexing/fs-uniform-array-mat2-index-row-rd": { "_update": { - "time": 0.069758892059326172 + "time": 0.13642096519470215 } }, "shaders/vp-address-01": { @@ -17890,9 +17896,9 @@ "time": 0.14472603797912598 } }, - "glean/glsl1-post decrement (x--)": { + "glean/vp1-MAX test": { "_update": { - "time": 0.20573902130126953 + "time": 0.15745282173156738 } }, "spec/glsl-1.00/compiler/precision-qualifiers/precision-struct-02.frag": { @@ -18010,9 +18016,9 @@ "time": 0.25243091583251953 } }, - "spec/glsl-1.20/execution/built-in-functions/vs-op-div-float-mat4x2": { + "spec/glsl-1.30/execution/built-in-functions/vs-op-lshift-uvec2-uvec2": { "_update": { - "time": 0.16366195678710938 + "time": 0.099662065505981445 } }, "spec/glsl-1.10/execution/built-in-functions/fs-op-eq-bvec4-bvec4-using-if": { @@ -18165,9 +18171,9 @@ "time": 0.26620078086853027 } }, - "spec/glsl-1.10/execution/built-in-functions/vs-op-uplus-ivec3": { + "spec/glsl-1.20/compiler/structure-and-array-operations/array-assign-implicit-conversion-vec3-ivec3.vert": { "_update": { - "time": 0.21635293960571289 + "time": 0.16757607460021973 } }, "spec/glsl-1.10/execution/variable-indexing/vs-varying-array-mat4-index-row-rd": { @@ -18180,9 +18186,9 @@ "time": 0.1308598518371582 } }, - "spec/!OpenGL 2.0/vertex-program-two-side back front2 back2": { + "spec/glsl-1.30/compiler/qualifiers/out-02.vert": { "_update": { - "time": 0.112152099609375 + "time": 0.055557966232299805 } }, "spec/glsl-1.10/execution/built-in-functions/vs-equal-ivec4-ivec4": { @@ -18220,9 +18226,14 @@ "time": 0.067856073379516602 } }, - "spec/glsl-1.20/compiler/built-in-functions/any-bvec3.frag": { + "spec/glsl-1.20/execution/variable-indexing/vs-uniform-array-mat2-rd": { "_update": { - "time": 0.14584493637084961 + "time": 0.19020199775695801 + } + }, + "glean/glsl1-Preprocessor test 11 (#elif)": { + "_update": { + "time": 0.18202710151672363 } }, "glean/glsl1-^^ operator (1)": { @@ -18305,6 +18316,11 @@ "time": 0.22681093215942383 } }, + "spec/glsl-1.30/compiler/built-in-functions/op-ne-uint-uint.vert": { + "_update": { + "time": 0.071778059005737305 + } + }, "spec/glsl-1.30/execution/clipping/clip-plane-transformation pos": { "_update": { "time": 0.073770046234130859 @@ -18365,9 +18381,9 @@ "time": 0.17939996719360352 } }, - "spec/NV_conditional_render/copypixels": { + "spec/glsl-1.20/compiler/built-in-functions/op-ne-mat3x2-mat3x2.frag": { "_update": { - "time": 0.19858407974243164 + "time": 0.20867705345153809 } }, "shaders/glsl-vs-neg-abs": { @@ -18385,19 +18401,19 @@ "time": 0.08705902099609375 } }, - "spec/glsl-1.30/compiler/built-in-functions/op-neg-uint.frag": { + "spec/glsl-1.20/execution/built-in-functions/fs-op-mult-mat3x2-mat4x3": { "_update": { - "time": 0.13619613647460938 + "time": 0.16237592697143555 } }, - "glean/glsl1-syntax error check (1)": { + "spec/EXT_texture_snorm/texwrap-2D-GL_INTENSITY16_SNORM": { "_update": { - "time": 0.097255945205688477 + "time": 0.1809699535369873 } }, - "spec/glsl-1.30/execution/built-in-functions/vs-op-ne-uint-uint-using-if": { + "spec/glsl-1.30/compiler/basic-types/assign-implicit-conversion-uint-int.vert": { "_update": { - "time": 0.046772956848144531 + "time": 0.084399938583374023 } }, "shaders/gpu_shader4_attribs": { @@ -18465,9 +18481,9 @@ "time": 0.20931291580200195 } }, - "spec/glsl-1.30/execution/built-in-functions/vs-op-ge-uint-uint": { + "glean/fp1-Computed fog linear test": { "_update": { - "time": 0.052054882049560547 + "time": 0.13762688636779785 } }, "spec/glsl-1.10/execution/variable-indexing/fs-temp-array-mat2-col-wr": { @@ -18495,9 +18511,9 @@ "time": 0.12039804458618164 } }, - "spec/glsl-1.30/execution/built-in-functions/vs-op-add-uvec2-uint": { + "spec/glsl-1.10/execution/variable-indexing/fs-temp-array-mat2-wr": { "_update": { - "time": 0.046642065048217773 + "time": 0.214508056640625 } }, "spec/glsl-1.10/execution/built-in-functions/fs-greaterThanEqual-vec4-vec4": { @@ -18525,9 +18541,9 @@ "time": 0.09021306037902832 } }, - "spec/glsl-1.30/compiler/reserved/fvec3.frag": { + "spec/glsl-1.30/compiler/built-in-functions/tanh-float.frag": { "_update": { - "time": 0.067695140838623047 + "time": 0.081060171127319336 } }, "spec/glsl-1.10/execution/variable-indexing/vs-temp-mat2-col-rd": { @@ -18595,9 +18611,9 @@ "time": 0.17930197715759277 } }, - "spec/ARB_explicit_attrib_location/1.10/compiler/layout-07.frag": { + "spec/glsl-1.10/linker/override-builtin-const-07": { "_update": { - "time": 0.15503501892089844 + "time": 0.22544097900390625 } }, "glean/glsl1-function call with in, out params": { @@ -18615,9 +18631,9 @@ "time": 0.13482403755187988 } }, - "spec/glsl-1.30/compiler/switch-statement/switch-expression-const-vec2.vert": { + "spec/glsl-1.20/compiler/structure-and-array-operations/array-size-with-side-effect.vert": { "_update": { - "time": 0.062409877777099609 + "time": 0.093689918518066406 } }, "spec/glsl-1.20/execution/built-in-functions/fs-op-sub-mat4x2-mat4x2": { @@ -18630,9 +18646,9 @@ "time": 0.2684788703918457 } }, - "spec/glsl-1.20/execution/qualifiers/vs-out-conversion-int-int-float-to-float-float-float-return": { + "spec/glsl-1.10/compiler/arithmetic-operators/division-by-zero-02.frag": { "_update": { - "time": 0.17807793617248535 + "time": 0.14828395843505859 } }, "spec/glsl-1.30/compiler/built-in-functions/max-ivec3-ivec3.vert": { @@ -18640,9 +18656,9 @@ "time": 0.058538913726806641 } }, - "spec/glsl-1.20/compiler/built-in-functions/op-mult-mat4-mat2x4.vert": { + "spec/glsl-1.30/compiler/built-in-functions/op-sub-uint-uvec4.vert": { "_update": { - "time": 0.12459611892700195 + "time": 0.058903932571411133 } }, "spec/glsl-1.20/compiler/built-in-functions/op-mult-vec3-float.frag": { @@ -18710,9 +18726,9 @@ "time": 0.096810817718505859 } }, - "spec/glsl-1.30/compiler/built-in-functions/min-uvec2-uint.frag": { + "spec/glsl-1.10/execution/variable-indexing/vs-temp-mat4-col-row-wr": { "_update": { - "time": 0.07086491584777832 + "time": 0.16272377967834473 } }, "glean/glsl1-Preprocessor test 3 (#if ==)": { @@ -18730,9 +18746,9 @@ "time": 0.047167062759399414 } }, - "spec/glsl-1.20/compiler/structure-and-array-operations/array-assign-implicit-conversion-vec4-bvec4.vert": { + "spec/glsl-1.10/execution/variable-indexing/fs-varying-mat3-col-rd": { "_update": { - "time": 0.064868927001953125 + "time": 0.1308131217956543 } }, "spec/glsl-1.20/compiler/built-in-functions/outerProduct-mat4x4.vert": { @@ -18750,14 +18766,14 @@ "time": 0.12865114212036133 } }, - "texturing/tex-miplevel-selection-lod": { + "spec/ARB_shader_texture_lod/execution/tex-miplevel-selection-texture2DLod-lod": { "_update": { - "time": 0.30028700828552246 + "time": 0.47599577903747559 } }, - "spec/glsl-1.20/compiler/built-in-functions/op-sub-float-mat4.frag": { + "spec/glsl-1.10/execution/variable-indexing/fs-temp-array-mat3-row-rd": { "_update": { - "time": 0.11300277709960938 + "time": 0.13609981536865234 } }, "spec/glsl-1.20/compiler/built-in-functions/op-sub-int-ivec2.frag": { @@ -18795,9 +18811,9 @@ "time": 0.22063994407653809 } }, - "glean/glsl1-mat3x2 construct": { + "spec/glsl-1.20/compiler/built-in-functions/op-add-float-mat3.vert": { "_update": { - "time": 0.1781461238861084 + "time": 0.24380588531494141 } }, "spec/glsl-1.20/compiler/built-in-functions/op-add-int-ivec3.frag": { @@ -18875,9 +18891,9 @@ "time": 0.25375485420227051 } }, - "spec/ARB_shader_texture_lod/compiler/tex_lod-08.frag": { + "glean/glsl1-&& operator, short-circuit": { "_update": { - "time": 0.17319798469543457 + "time": 0.18510007858276367 } }, "spec/glsl-1.30/execution/built-in-functions/vs-op-bitxor-int-ivec2": { @@ -18945,9 +18961,9 @@ "time": 0.15091800689697266 } }, - "spec/EXT_transform_feedback/position-render-bufferbase-discard": { + "spec/glsl-1.30/execution/built-in-functions/fs-op-bitand-uint-uvec2": { "_update": { - "time": 0.078507184982299805 + "time": 0.050981998443603516 } }, "spec/glsl-1.30/execution/built-in-functions/fs-op-bitand-uint-uvec3": { @@ -18955,6 +18971,11 @@ "time": 0.049403905868530273 } }, + "spec/glsl-1.20/compiler/built-in-functions/asin-float.vert": { + "_update": { + "time": 0.10732316970825195 + } + }, "spec/ARB_texture_rg/texwrap-2D-GL_R16F": { "_update": { "time": 0.084400177001953125 @@ -19075,11 +19096,6 @@ "time": 0.050230026245117188 } }, - "spec/glsl-1.20/compiler/built-in-functions/op-selection-bool-mat3-mat3.vert": { - "_update": { - "time": 0.074720859527587891 - } - }, "glean/fp1-DPH test": { "_update": { "time": 0.13324999809265137 @@ -19120,9 +19136,9 @@ "time": 0.16946983337402344 } }, - "spec/glsl-1.10/execution/variable-indexing/fs-temp-array-mat4-rd": { + "spec/!OpenGL 1.1/texwrap-2D-GL_LUMINANCE8-bordercolor": { "_update": { - "time": 0.19623398780822754 + "time": 0.24467301368713379 } }, "spec/EXT_texture_snorm/texwrap-2D-GL_LUMINANCE8_SNORM-bordercolor": { @@ -19130,9 +19146,9 @@ "time": 0.2276458740234375 } }, - "spec/EXT_transform_feedback/position-render-bufferrange": { + "spec/ARB_shader_texture_lod/compiler/tex_lod-02.frag": { "_update": { - "time": 0.085337162017822266 + "time": 0.19283008575439453 } }, "spec/glsl-1.20/compiler/built-in-functions/sin-vec2.vert": { @@ -19181,9 +19197,9 @@ "time": 0.17541909217834473 } }, - "spec/glsl-1.30/compiler/precision-qualifiers/precision-literal-const-01.frag": { + "spec/ARB_draw_elements_base_vertex/draw-elements-base-vertex": { "_update": { - "time": 0.10618019104003906 + "time": 0.32623505592346191 } }, "spec/glsl-1.20/compiler/structure-and-array-operations/array-ctor-implicit-conversion-vec3-ivec3.vert": { @@ -19256,14 +19272,9 @@ "time": 0.29448890686035156 } }, - "spec/ARB_color_buffer_float/GL_RGBA16F-getteximage": { - "_update": { - "time": 0.10454583168029785 - } - }, - "spec/glsl-1.10/execution/built-in-functions/vs-op-selection-bool-mat3-mat3": { + "spec/glsl-1.10/execution/variable-indexing/vs-temp-array-mat3-col-wr": { "_update": { - "time": 0.16520404815673828 + "time": 0.1334378719329834 } }, "spec/glsl-1.20/compiler/built-in-functions/op-ne-bvec2-bvec2.vert": { @@ -19291,9 +19302,9 @@ "time": 0.08207392692565918 } }, - "spec/glsl-1.30/execution/built-in-functions/fs-op-bitxor-ivec3-ivec3": { + "spec/glsl-1.10/execution/built-in-functions/vs-pow-vec2-vec2": { "_update": { - "time": 0.046517848968505859 + "time": 0.18479013442993164 } }, "spec/glsl-1.20/execution/built-in-functions/fs-op-add-mat2x3-float": { @@ -19381,9 +19392,9 @@ "time": 0.13804316520690918 } }, - "spec/glsl-1.30/execution/built-in-functions/fs-op-div-uvec2-uint": { + "spec/glsl-1.20/execution/vs-outerProduct-mat3x3": { "_update": { - "time": 0.047860145568847656 + "time": 0.19958114624023438 } }, "spec/glsl-1.20/execution/vs-outerProduct-mat3x2": { @@ -19456,6 +19467,11 @@ "time": 0.17058300971984863 } }, + "spec/glsl-1.10/execution/built-in-functions/fs-sin-vec4": { + "_update": { + "time": 0.17536401748657227 + } + }, "spec/glsl-1.10/execution/built-in-functions/fs-notEqual-bvec3-bvec3": { "_update": { "time": 0.20469808578491211 @@ -19466,9 +19482,9 @@ "time": 0.047163963317871094 } }, - "spec/glsl-1.20/compiler/built-in-functions/ceil-vec4.vert": { + "spec/EXT_texture_snorm/texwrap-2D-GL_ALPHA16_SNORM-bordercolor": { "_update": { - "time": 0.078414201736450195 + "time": 0.31384086608886719 } }, "spec/glsl-1.10/execution/built-in-functions/vs-clamp-vec4-vec4-vec4": { @@ -19571,11 +19587,6 @@ "time": 0.060841083526611328 } }, - "glean/glsl1-gl_FrontFacing var (1)": { - "_update": { - "time": 0.16040897369384766 - } - }, "spec/glsl-1.10/execution/built-in-functions/vs-dot-vec3-vec3": { "_update": { "time": 0.12592697143554688 @@ -19696,9 +19707,9 @@ "time": 0.2496190071105957 } }, - "spec/glsl-1.30/compiler/precision-qualifiers/precision-float-04.frag": { + "shaders/glsl-fs-convolution-1": { "_update": { - "time": 0.056843042373657227 + "time": 0.37444305419921875 } }, "shaders/glsl-fs-convolution-2": { @@ -19711,9 +19722,9 @@ "time": 0.10728812217712402 } }, - "spec/glsl-1.30/compiler/built-in-functions/op-bitand-ivec4-int.frag": { + "spec/glsl-1.20/execution/variable-indexing/vs-temp-mat4-col-wr": { "_update": { - "time": 0.10823488235473633 + "time": 0.27948713302612305 } }, "spec/glsl-1.10/execution/built-in-functions/fs-op-add-mat2-float": { @@ -19751,9 +19762,9 @@ "time": 0.045572042465209961 } }, - "spec/glsl-1.10/execution/built-in-functions/vs-op-selection-bool-mat4-mat4": { + "spec/glsl-1.10/execution/built-in-functions/vs-op-ne-vec3-vec3-using-if": { "_update": { - "time": 0.17972707748413086 + "time": 0.16051983833312988 } }, "spec/glsl-1.20/execution/built-in-functions/vs-op-mult-mat2x3-vec2": { @@ -19776,9 +19787,9 @@ "time": 0.20102691650390625 } }, - "spec/glsl-1.30/execution/built-in-functions/fs-max-uvec4-uint": { + "spec/glsl-1.10/execution/built-in-functions/fs-lessThanEqual-vec3-vec3": { "_update": { - "time": 0.1002650260925293 + "time": 0.2257540225982666 } }, "spec/ARB_draw_instanced/instance-array-dereference": { @@ -19806,9 +19817,9 @@ "time": 0.12190508842468262 } }, - "texturing/texture-al": { + "spec/glsl-1.10/execution/built-in-functions/vs-op-mult-mat2-vec2": { "_update": { - "time": 0.26621294021606445 + "time": 0.23677301406860352 } }, "spec/EXT_packed_float/texwrap-2D-GL_R11F_G11F_B10F-bordercolor": { @@ -19856,9 +19867,9 @@ "time": 0.075665950775146484 } }, - "spec/EXT_texture_compression_s3tc/texwrap-2D-GL_COMPRESSED_RGBA_S3TC_DXT3-bordercolor": { + "spec/ARB_depth_texture/fbo-depth-GL_DEPTH_COMPONENT24-drawpixels": { "_update": { - "time": 0.1255948543548584 + "time": 0.29399800300598145 } }, "spec/glsl-1.10/execution/variable-indexing/fs-temp-mat2-col-wr": { @@ -19881,9 +19892,9 @@ "time": 0.1156151294708252 } }, - "spec/glsl-1.20/recursion/indirect-complex-separate": { + "spec/glsl-1.10/execution/built-in-functions/vs-asin-float": { "_update": { - "time": 0.1393890380859375 + "time": 0.14106082916259766 } }, "spec/glsl-1.30/compiler/built-in-functions/op-add-uvec4-uint.vert": { @@ -20031,9 +20042,9 @@ "time": 0.26472616195678711 } }, - "spec/ARB_depth_texture/fbo-depth-GL_DEPTH_COMPONENT16-drawpixels": { + "spec/glsl-1.10/execution/built-in-functions/fs-op-add-mat3-mat3": { "_update": { - "time": 0.25059604644775391 + "time": 0.18673491477966309 } }, "spec/glsl-1.30/compiler/built-in-functions/min-uvec3-uint.vert": { @@ -20116,14 +20127,14 @@ "time": 0.25842499732971191 } }, - "spec/glsl-1.30/execution/built-in-functions/fs-max-ivec4-ivec4": { + "shaders/glsl-fs-uniform-array-2": { "_update": { - "time": 0.085155010223388672 + "time": 0.2444610595703125 } }, - "spec/glsl-1.20/compiler/built-in-functions/op-mult-mat4x2-float.vert": { + "shaders/glsl-fs-uniform-array-3": { "_update": { - "time": 0.075650930404663086 + "time": 0.18308782577514648 } }, "shaders/glsl-fs-uniform-array-4": { @@ -20146,9 +20157,9 @@ "time": 0.18274092674255371 } }, - "spec/glsl-1.10/execution/built-in-functions/vs-op-eq-ivec4-ivec4-using-if": { + "spec/EXT_framebuffer_object/fbo-generatemipmap-noimage": { "_update": { - "time": 0.2346489429473877 + "time": 0.89574790000915527 } }, "glean/glsl1-struct (1)": { @@ -20161,9 +20172,9 @@ "time": 0.22078204154968262 } }, - "spec/glsl-1.20/compiler/structure-and-array-operations/array-assign-implicit-conversion-ivec2-vec2.vert": { + "spec/ARB_shader_texture_lod/execution/glsl-fs-shadow2DGradARB-03": { "_update": { - "time": 0.16124486923217773 + "time": 0.15536212921142578 } }, "spec/ARB_shader_texture_lod/execution/glsl-fs-shadow2DGradARB-01": { @@ -20306,6 +20317,11 @@ "time": 0.36760091781616211 } }, + "spec/glsl-1.20/compiler/built-in-functions/op-add-mat3x4-mat3x4.vert": { + "_update": { + "time": 0.079519987106323242 + } + }, "spec/glsl-1.20/compiler/built-in-functions/op-div-float-vec3.vert": { "_update": { "time": 0.089404106140136719 @@ -20326,9 +20342,9 @@ "time": 0.059906959533691406 } }, - "spec/glsl-1.30/compiler/storage-qualifiers/local-out-01.frag": { + "spec/glsl-1.30/compiler/built-in-functions/op-bitand-uvec4-uint.frag": { "_update": { - "time": 0.06885981559753418 + "time": 0.092108964920043945 } }, "general/blendminmax": { @@ -20401,9 +20417,9 @@ "time": 0.094885110855102539 } }, - "spec/glsl-1.20/execution/variable-indexing/fs-varying-array-mat2-index-rd": { + "spec/EXT_texture_sRGB/fbo-generatemipmap-formats-s3tc": { "_update": { - "time": 0.33423805236816406 + "time": 0.11136388778686523 } }, "spec/glsl-1.20/compiler/built-in-functions/dot-vec4-vec4.vert": { @@ -20516,9 +20532,9 @@ "time": 0.1424710750579834 } }, - "spec/glsl-1.20/compiler/built-in-functions/mod-vec3-vec3.frag": { + "spec/glsl-1.10/execution/built-in-functions/fs-dot-vec4-vec4": { "_update": { - "time": 0.21821284294128418 + "time": 0.28076887130737305 } }, "spec/glsl-1.20/compiler/built-in-functions/equal-ivec3-ivec3.vert": { @@ -20526,11 +20542,6 @@ "time": 0.1303870677947998 } }, - "spec/EXT_texture_snorm/fbo-alphatest-formats": { - "_update": { - "time": 0.090207099914550781 - } - }, "spec/glsl-1.20/compiler/built-in-functions/length-vec3.frag": { "_update": { "time": 0.12077713012695312 @@ -20581,9 +20592,9 @@ "time": 0.27557015419006348 } }, - "spec/glsl-1.20/compiler/built-in-functions/normalize-vec2.frag": { + "spec/glsl-1.10/execution/built-in-functions/vs-log-vec4": { "_update": { - "time": 0.1266169548034668 + "time": 0.24640607833862305 } }, "spec/glsl-1.30/compiler/built-in-functions/op-eq-uint-uint.vert": { @@ -20631,11 +20642,6 @@ "time": 0.25444507598876953 } }, - "spec/glsl-1.20/execution/vs-outerProduct-const-mat2-ivec": { - "_update": { - "time": 0.2539830207824707 - } - }, "spec/ARB_explicit_attrib_location/1.20/preprocessor/define.vert": { "_update": { "time": 0.16523098945617676 @@ -20701,9 +20707,9 @@ "time": 0.16418313980102539 } }, - "shaders/glsl-algebraic-mul-one": { + "spec/glsl-1.30/compiler/built-in-functions/op-bitxor-int-ivec3.vert": { "_update": { - "time": 0.2330780029296875 + "time": 0.074227094650268555 } }, "shaders/glsl-uniform-update": { @@ -20801,11 +20807,6 @@ "time": 0.047279119491577148 } }, - "shaders/glsl-fs-dot-vec2-2": { - "_update": { - "time": 0.16657805442810059 - } - }, "spec/glsl-1.20/execution/variable-indexing/vs-temp-array-mat3-col-row-wr": { "_update": { "time": 0.2143559455871582 @@ -20851,9 +20852,9 @@ "time": 0.094048976898193359 } }, - "spec/glsl-1.20/recursion/unreachable-constant-folding": { + "spec/glsl-1.10/preprocessor/divide-by-zero.vert": { "_update": { - "time": 0.078442096710205078 + "time": 0.090542078018188477 } }, "spec/glsl-1.30/compiler/built-in-functions/min-int-int.vert": { @@ -20866,9 +20867,9 @@ "time": 0.11702394485473633 } }, - "spec/glsl-1.10/execution/built-in-functions/fs-min-vec2-float": { + "spec/!OpenGL 1.1/texwrap-1D": { "_update": { - "time": 0.21760797500610352 + "time": 0.26930499076843262 } }, "spec/glsl-1.10/execution/built-in-functions/fs-matrixCompMult-mat4-mat4": { @@ -20921,9 +20922,14 @@ "time": 0.13715100288391113 } }, - "spec/glsl-1.20/compiler/built-in-functions/sqrt-vec2.frag": { + "spec/glsl-1.20/execution/fs-outerProduct-mat3x2-ivec": { "_update": { - "time": 0.16081595420837402 + "time": 0.20082712173461914 + } + }, + "shaders/glsl-fwidth": { + "_update": { + "time": 0.43745017051696777 } }, "spec/glsl-1.20/compiler/built-in-functions/op-div-mat4x2-mat4x2.frag": { @@ -20931,9 +20937,9 @@ "time": 0.10958600044250488 } }, - "spec/glsl-1.10/compiler/declarations/bad-array-type-parameter.vert": { + "spec/glsl-1.20/compiler/structure-and-array-operations/array-logical-xor.vert": { "_update": { - "time": 0.12590384483337402 + "time": 0.11223602294921875 } }, "spec/glsl-1.20/compiler/built-in-functions/faceforward-float-float-float.frag": { @@ -20991,9 +20997,9 @@ "time": 0.25727391242980957 } }, - "spec/glsl-1.30/compiler/built-in-functions/op-bitand-uint-uvec3.frag": { + "spec/glsl-1.10/execution/built-in-functions/vs-op-ne-bool-bool": { "_update": { - "time": 0.054755210876464844 + "time": 0.15788388252258301 } }, "spec/glsl-1.30/compiler/built-in-functions/op-mod-int-ivec4.frag": { @@ -21021,9 +21027,9 @@ "time": 0.22516894340515137 } }, - "spec/glsl-1.20/execution/variable-indexing/vs-uniform-array-mat4-index-col-rd": { + "spec/glsl-1.10/execution/built-in-functions/fs-atan-vec2": { "_update": { - "time": 0.18897104263305664 + "time": 0.15349292755126953 } }, "spec/glsl-1.10/compiler/arithmetic-operators/division-by-zero-01.frag": { @@ -21031,9 +21037,9 @@ "time": 0.15883803367614746 } }, - "spec/glsl-1.20/execution/variable-indexing/vs-temp-mat4-wr": { + "spec/!OpenGL 1.1/texwrap-2D-proj": { "_update": { - "time": 0.2005460262298584 + "time": 0.2401888370513916 } }, "spec/glsl-1.20/execution/variable-indexing/vs-temp-mat2-col-wr": { @@ -21091,9 +21097,9 @@ "time": 0.16524600982666016 } }, - "spec/glsl-1.30/compiler/reserved/partition.frag": { + "glean/glsl1-all() function": { "_update": { - "time": 0.15165400505065918 + "time": 0.19284677505493164 } }, "glean/glsl1-inequality (float, pass)": { @@ -21106,14 +21112,9 @@ "time": 0.097714900970458984 } }, - "spec/glsl-1.20/execution/built-in-functions/vs-op-mult-mat4-mat2x4": { - "_update": { - "time": 0.16473698616027832 - } - }, - "spec/glsl-1.20/compiler/built-in-functions/any-bvec2.vert": { + "spec/glsl-1.30/compiler/built-in-functions/sign-ivec3.frag": { "_update": { - "time": 0.15273785591125488 + "time": 0.065616130828857422 } }, "spec/glsl-1.20/compiler/built-in-functions/mod-vec4-vec4.vert": { @@ -21201,9 +21202,9 @@ "time": 0.13197183609008789 } }, - "spec/glsl-1.30/compiler/keywords/mat2x4.frag": { + "spec/glsl-1.30/compiler/built-in-functions/op-bitxor-int-int.vert": { "_update": { - "time": 0.10838699340820312 + "time": 0.10553121566772461 } }, "spec/glsl-1.30/execution/clipping/vs-clip-distance-implicitly-sized": { @@ -21216,11 +21217,6 @@ "time": 0.12546706199645996 } }, - "glean/glsl1-varying var mismatch": { - "_update": { - "time": 0.12322902679443359 - } - }, "spec/glsl-1.20/compiler/built-in-functions/atan-vec4.vert": { "_update": { "time": 0.11730718612670898 @@ -21231,9 +21227,9 @@ "time": 0.15142607688903809 } }, - "spec/glsl-1.20/execution/variable-indexing/vs-uniform-mat2-col-row-rd": { + "spec/glsl-1.00/compiler/precision-qualifiers/default-precision-vec-01.frag": { "_update": { - "time": 0.14656305313110352 + "time": 0.1448218822479248 } }, "spec/glsl-1.20/compiler/built-in-functions/length-vec3.vert": { @@ -21241,14 +21237,14 @@ "time": 0.11695981025695801 } }, - "spec/glsl-1.20/compiler/built-in-functions/notEqual-bvec3-bvec3.frag": { + "spec/glsl-1.20/execution/built-in-functions/vs-op-mult-mat3x4-mat4x3": { "_update": { - "time": 0.16800284385681152 + "time": 0.150421142578125 } }, - "hiz/hiz-depth-stencil-test-fbo-d0-s8": { + "spec/glsl-1.30/compiler/qualifiers/centroid-01.vert": { "_update": { - "time": 0.25380492210388184 + "time": 0.096785068511962891 } }, "spec/glsl-1.30/execution/built-in-functions/vs-op-bitor-int-int": { @@ -21281,9 +21277,9 @@ "time": 0.12677192687988281 } }, - "spec/glsl-1.20/compiler/built-in-functions/op-div-ivec4-int.frag": { + "glean/glsl1-uniform matrix 2x4": { "_update": { - "time": 0.10892796516418457 + "time": 0.18230891227722168 } }, "spec/glsl-1.10/execution/variable-indexing/fs-temp-mat4-col-row-rd": { @@ -21306,9 +21302,9 @@ "time": 0.17627596855163574 } }, - "glean/vp1-MAX test": { + "glean/glsl1-post decrement (x--)": { "_update": { - "time": 0.15745282173156738 + "time": 0.20573902130126953 } }, "shaders/glsl-novertexdata": { @@ -21316,9 +21312,9 @@ "time": 0.30495595932006836 } }, - "spec/glsl-1.30/execution/built-in-functions/vs-op-lshift-uvec2-uvec2": { + "spec/glsl-1.20/execution/built-in-functions/vs-op-div-float-mat4x2": { "_update": { - "time": 0.099662065505981445 + "time": 0.16366195678710938 } }, "spec/glsl-1.20/execution/built-in-functions/vs-op-div-float-mat4x3": { @@ -21351,9 +21347,9 @@ "time": 0.18810606002807617 } }, - "spec/glsl-1.30/compiler/qualifiers/out-02.vert": { + "spec/!OpenGL 2.0/vertex-program-two-side back front2 back2": { "_update": { - "time": 0.055557966232299805 + "time": 0.112152099609375 } }, "spec/ARB_depth_buffer_float/fbo-depthstencil-GL_DEPTH32F_STENCIL8-readpixels-24_8": { @@ -21461,11 +21457,6 @@ "time": 0.059823989868164062 } }, - "spec/glsl-1.10/execution/built-in-functions/fs-asin-vec4": { - "_update": { - "time": 0.1977839469909668 - } - }, "spec/glsl-1.30/compiler/built-in-functions/abs-ivec4.frag": { "_update": { "time": 0.087827920913696289 @@ -21481,9 +21472,9 @@ "time": 0.11120104789733887 } }, - "spec/glsl-1.10/execution/variable-indexing/fs-temp-array-mat2-index-wr": { + "spec/glsl-1.30/execution/built-in-functions/vs-op-ne-uvec3-uvec3": { "_update": { - "time": 0.25262999534606934 + "time": 0.045502901077270508 } }, "spec/glsl-1.10/execution/built-in-functions/fs-op-uplus-vec3": { @@ -21581,6 +21572,11 @@ "time": 0.12936210632324219 } }, + "spec/glsl-1.20/compiler/built-in-functions/op-neg-vec3.vert": { + "_update": { + "time": 0.13554811477661133 + } + }, "spec/glsl-1.10/execution/built-in-functions/fs-op-ne-float-float": { "_update": { "time": 0.11277484893798828 @@ -21751,6 +21747,11 @@ "time": 0.20882797241210938 } }, + "spec/glsl-1.20/compiler/built-in-functions/lessThanEqual-vec4-vec4.vert": { + "_update": { + "time": 0.071943998336791992 + } + }, "spec/ARB_vertex_program/getlocal4d-with-error": { "_update": { "time": 0.096794843673706055 @@ -21811,9 +21812,9 @@ "time": 0.058247089385986328 } }, - "spec/glsl-1.30/compiler/built-in-functions/op-bitxor-int-ivec2.frag": { + "bugs/fdo24066": { "_update": { - "time": 0.094392061233520508 + "time": 0.13851189613342285 } }, "spec/glsl-1.20/compiler/structure-and-array-operations/array-function-return.vert": { @@ -21921,9 +21922,9 @@ "time": 0.11409306526184082 } }, - "spec/glsl-1.30/compiler/built-in-functions/op-ne-uint-uint.vert": { + "spec/glsl-1.10/execution/built-in-functions/vs-op-eq-int-int": { "_update": { - "time": 0.071778059005737305 + "time": 0.23882317543029785 } }, "spec/glsl-1.20/execution/variable-indexing/vs-uniform-array-mat2-index-rd": { @@ -22021,9 +22022,9 @@ "time": 0.11987400054931641 } }, - "spec/glsl-1.20/compiler/built-in-functions/inversesqrt-vec4.frag": { + "shaders/glsl-algebraic-not-notequals": { "_update": { - "time": 0.17841720581054688 + "time": 0.24479484558105469 } }, "glean/vp1-POW test (exponentiation)": { @@ -22156,9 +22157,9 @@ "time": 0.13050293922424316 } }, - "spec/glsl-1.30/execution/built-in-functions/vs-op-bitxor-ivec3-ivec3": { + "spec/glsl-1.30/compiler/built-in-functions/asinh-vec4.vert": { "_update": { - "time": 0.046481132507324219 + "time": 0.072390079498291016 } }, "spec/glsl-1.10/execution/built-in-functions/fs-op-add-int-int": { @@ -22191,9 +22192,9 @@ "time": 0.13051295280456543 } }, - "spec/glsl-1.20/execution/variable-indexing/fs-temp-array-mat4-col-rd": { + "spec/glsl-1.20/compiler/built-in-functions/op-sub-vec3-float.vert": { "_update": { - "time": 0.33054804801940918 + "time": 0.1931610107421875 } }, "fbo/fbo-blit-d24s8": { @@ -22221,9 +22222,9 @@ "time": 0.15123105049133301 } }, - "spec/glsl-1.30/compiler/basic-types/int-literal-too-large-02.frag": { + "spec/glsl-1.20/execution/variable-indexing/vs-temp-array-mat2-wr": { "_update": { - "time": 0.10790205001831055 + "time": 0.15055012702941895 } }, "spec/glsl-1.20/compiler/built-in-functions/all-bvec4.vert": { @@ -22286,9 +22287,9 @@ "time": 0.11053586006164551 } }, - "spec/glsl-1.10/execution/variable-indexing/vs-temp-array-mat3-row-rd": { + "spec/glsl-1.20/execution/built-in-functions/fs-op-add-mat3x2-mat3x2": { "_update": { - "time": 0.15814089775085449 + "time": 0.17584395408630371 } }, "spec/glsl-1.20/compiler/built-in-functions/op-gt-int-int.vert": { @@ -22316,9 +22317,9 @@ "time": 0.20860409736633301 } }, - "shaders/glsl-mat-from-int-ctor-01": { + "spec/ARB_explicit_attrib_location/1.10/compiler/layout-09.frag": { "_update": { - "time": 0.22673702239990234 + "time": 0.14737486839294434 } }, "shaders/glsl-mat-from-int-ctor-02": { @@ -22421,6 +22422,21 @@ "time": 0.19224309921264648 } }, + "spec/EXT_texture_compression_latc/fbo-generatemipmap-formats-signed": { + "_update": { + "time": 0.050770044326782227 + } + }, + "spec/glsl-1.10/execution/built-in-functions/fs-op-div-int-int": { + "_update": { + "time": 0.14468502998352051 + } + }, + "spec/glsl-1.20/compiler/built-in-functions/op-add-int-ivec3.vert": { + "_update": { + "time": 0.078819990158081055 + } + }, "shaders/fp-rfl": { "_update": { "time": 0.3372199535369873 @@ -22456,9 +22472,9 @@ "time": 0.046899080276489258 } }, - "spec/ARB_color_buffer_float/GL_RGBA32F-readpixels": { + "spec/glsl-1.10/execution/built-in-functions/fs-pow-vec2-vec2": { "_update": { - "time": 0.26082396507263184 + "time": 0.12369108200073242 } }, "glean/glsl1-Writemask": { @@ -22541,11 +22557,6 @@ "time": 0.089961051940917969 } }, - "spec/glsl-1.20/execution/variable-indexing/fs-temp-array-mat3-wr": { - "_update": { - "time": 0.27863216400146484 - } - }, "spec/glsl-1.30/execution/built-in-functions/fs-op-mod-uvec2-uint": { "_update": { "time": 0.049279928207397461 @@ -22576,9 +22587,9 @@ "time": 0.19465184211730957 } }, - "spec/glsl-1.20/compiler/assignment-operators/modulus-assign-00.frag": { + "spec/glsl-1.30/compiler/switch-statement/switch-expression-var-vec2.vert": { "_update": { - "time": 0.082973957061767578 + "time": 0.090927839279174805 } }, "spec/ARB_vertex_program/clip-plane-transformation arb": { @@ -22701,6 +22712,11 @@ "time": 0.3245699405670166 } }, + "spec/glsl-1.30/compiler/built-in-functions/op-le-uint-uint.frag": { + "_update": { + "time": 0.10466694831848145 + } + }, "shaders/glsl-vs-ff-frag": { "_update": { "time": 0.14027214050292969 @@ -22741,9 +22757,9 @@ "time": 0.40987992286682129 } }, - "spec/glsl-1.10/execution/built-in-functions/vs-mod-vec4-vec4": { + "glean/glsl1-struct (2)": { "_update": { - "time": 0.19083309173583984 + "time": 0.21209192276000977 } }, "spec/glsl-1.20/execution/variable-indexing/vs-temp-mat3-col-rd": { @@ -22796,9 +22812,9 @@ "time": 0.23267412185668945 } }, - "spec/glsl-1.10/execution/built-in-functions/vs-op-uplus-vec4": { + "spec/glsl-1.10/execution/built-in-functions/fs-normalize-float": { "_update": { - "time": 0.18427896499633789 + "time": 0.24733901023864746 } }, "spec/glsl-1.30/execution/built-in-functions/vs-op-mult-uvec3-uint": { @@ -22891,6 +22907,11 @@ "time": 0.23792886734008789 } }, + "spec/glsl-1.20/compiler/built-in-functions/sin-vec4.vert": { + "_update": { + "time": 0.19478702545166016 + } + }, "spec/glsl-1.30/compiler/built-in-functions/op-bitor-ivec2-ivec2.vert": { "_update": { "time": 0.071886062622070312 @@ -22901,9 +22922,9 @@ "time": 0.20709896087646484 } }, - "spec/glsl-1.10/execution/built-in-functions/vs-op-not-bool-using-if": { + "spec/glsl-1.30/compiler/built-in-functions/op-bitand-uvec4-uvec4.frag": { "_update": { - "time": 0.13814783096313477 + "time": 0.09681391716003418 } }, "spec/glsl-1.20/execution/variable-indexing/fs-uniform-array-mat3-rd": { @@ -22936,9 +22957,9 @@ "time": 0.12915301322937012 } }, - "shaders/glsl-useprogram-displaylist": { + "spec/ARB_shader_texture_lod/compiler/tex_grad-10.frag": { "_update": { - "time": 0.42124295234680176 + "time": 0.20987701416015625 } }, "spec/glsl-1.20/compiler/built-in-functions/op-add-mat2-float.vert": { @@ -23076,9 +23097,9 @@ "time": 0.078050136566162109 } }, - "spec/glsl-1.30/compiler/built-in-functions/op-complement-int.frag": { + "spec/glsl-1.10/execution/built-in-functions/fs-asin-vec4": { "_update": { - "time": 0.13908004760742188 + "time": 0.1977839469909668 } }, "spec/glsl-1.10/execution/variable-indexing/vs-varying-array-mat3-index-row-wr": { @@ -23096,9 +23117,9 @@ "time": 0.27725791931152344 } }, - "glean/glsl1-Preprocessor test 12 (#elif)": { + "spec/glsl-1.20/compiler/built-in-functions/abs-vec3.frag": { "_update": { - "time": 0.13571715354919434 + "time": 0.16800594329833984 } }, "spec/glsl-1.10/execution/built-in-functions/vs-op-eq-vec3-vec3": { @@ -23126,11 +23147,6 @@ "time": 0.04564213752746582 } }, - "spec/glsl-1.10/execution/built-in-functions/fs-greaterThan-vec2-vec2": { - "_update": { - "time": 0.34113216400146484 - } - }, "glean/glsl1-Global vars and initializers (2)": { "_update": { "time": 0.1814119815826416 @@ -23156,11 +23172,6 @@ "time": 0.3487250804901123 } }, - "spec/glsl-1.30/compiler/qualifiers/inout-01.vert": { - "_update": { - "time": 0.05990290641784668 - } - }, "spec/glsl-1.20/execution/variable-indexing/fs-temp-mat4-row-wr": { "_update": { "time": 0.25088906288146973 @@ -23386,9 +23397,9 @@ "time": 0.083540916442871094 } }, - "spec/glsl-1.10/execution/built-in-functions/fs-op-sub-ivec2-ivec2": { + "spec/glsl-1.30/execution/built-in-functions/vs-op-rshift-ivec3-uint": { "_update": { - "time": 0.13647198677062988 + "time": 0.047514200210571289 } }, "spec/glsl-1.10/execution/built-in-functions/vs-op-mult-vec3-vec3": { @@ -23401,9 +23412,9 @@ "time": 0.19426393508911133 } }, - "spec/glsl-1.20/compiler/built-in-functions/lessThan-ivec2-ivec2.vert": { + "spec/glsl-1.20/execution/built-in-functions/fs-op-add-mat4x2-mat4x2": { "_update": { - "time": 0.073564052581787109 + "time": 0.16237998008728027 } }, "spec/glsl-1.30/execution/built-in-functions/vs-op-add-uint-uvec4": { @@ -23486,6 +23497,11 @@ "time": 0.1582949161529541 } }, + "spec/glsl-1.30/execution/built-in-functions/fs-op-sub-uvec4-uint": { + "_update": { + "time": 0.044140100479125977 + } + }, "shaders/glsl-fs-fogcolor-statechange": { "_remove": { "note": "Returncode was 1", @@ -23521,14 +23537,19 @@ "time": 0.080572128295898438 } }, + "spec/glsl-1.30/compiler/arithmetic-operators/division-by-zero-01.frag": { + "_update": { + "time": 0.069818973541259766 + } + }, "spec/glsl-1.30/compiler/reserved/output.frag": { "_update": { "time": 0.053444862365722656 } }, - "spec/ARB_shader_texture_lod/compiler/tex_grad-04.frag": { + "spec/ARB_depth_buffer_float/fbo-depthstencil-GL_DEPTH32F_STENCIL8-clear": { "_update": { - "time": 0.22158598899841309 + "time": 0.091790199279785156 } }, "spec/glsl-1.20/execution/variable-indexing/vs-temp-mat2-rd": { @@ -23576,14 +23597,14 @@ "time": 0.07962799072265625 } }, - "spec/glsl-1.00/compiler/precision-qualifiers/precision-vs-highp-01.vert": { + "spec/!OpenGL 1.1/texwrap-2D-GL_ALPHA12-bordercolor": { "_update": { - "time": 0.16641783714294434 + "time": 0.29084491729736328 } }, - "spec/ARB_explicit_attrib_location/1.20/compiler/layout-04.vert": { + "spec/glsl-1.30/execution/built-in-functions/fs-max-ivec2-int": { "_update": { - "time": 0.063310861587524414 + "time": 0.056238889694213867 } }, "spec/ARB_depth_texture/fbo-depth-GL_DEPTH_COMPONENT32-drawpixels": { @@ -23666,9 +23687,9 @@ "time": 0.046175956726074219 } }, - "spec/EXT_transform_feedback/query-primitives_generated-bufferbase": { + "glean/glsl1-min() function": { "_update": { - "time": 0.09465789794921875 + "time": 0.13334488868713379 } }, "spec/glsl-1.20/compiler/built-in-functions/normalize-float.vert": { @@ -23766,11 +23787,6 @@ "time": 0.14402008056640625 } }, - "spec/glsl-1.10/execution/built-in-functions/vs-op-gt-int-int-using-if": { - "_update": { - "time": 0.26165509223937988 - } - }, "spec/glsl-1.10/execution/built-in-functions/fs-clamp-vec3-vec3-vec3": { "_update": { "time": 0.21616888046264648 @@ -23951,9 +23967,9 @@ "time": 0.20943999290466309 } }, - "spec/glsl-1.10/execution/variable-indexing/fs-temp-mat3-wr": { + "spec/ARB_explicit_attrib_location/1.10/compiler/layout-12.frag": { "_update": { - "time": 0.15608000755310059 + "time": 0.10419511795043945 } }, "spec/glsl-1.20/execution/variable-indexing/vs-varying-array-mat2-row-rd": { @@ -23971,9 +23987,9 @@ "time": 0.4613339900970459 } }, - "spec/ARB_texture_rg/fbo-blending-formats": { + "spec/glsl-1.30/execution/built-in-functions/vs-greaterThanEqual-uvec3-uvec3": { "_update": { - "time": 0.25916504859924316 + "time": 0.053642988204956055 } }, "spec/glsl-1.20/compiler/built-in-functions/floor-vec2.vert": { @@ -23981,11 +23997,6 @@ "time": 0.12166595458984375 } }, - "glean/fp1-swizzled move test": { - "_update": { - "time": 0.11630582809448242 - } - }, "spec/glsl-1.20/compiler/qualifiers/fn-out-array-allowed-cstyle.frag": { "_update": { "time": 0.12565994262695312 @@ -24011,9 +24022,9 @@ "time": 0.28967499732971191 } }, - "spec/glsl-1.30/execution/built-in-functions/vs-op-bitand-ivec2-int": { + "spec/glsl-1.30/execution/built-in-functions/fs-tanh-vec4": { "_update": { - "time": 0.049384117126464844 + "time": 0.059747934341430664 } }, "spec/glsl-1.30/compiler/built-in-functions/op-le-uint-uint.vert": { @@ -24257,9 +24268,9 @@ "time": 0.1870110034942627 } }, - "spec/glsl-1.20/execution/built-in-functions/fs-op-add-mat3x2-mat3x2": { + "spec/glsl-1.10/execution/variable-indexing/vs-temp-array-mat3-row-rd": { "_update": { - "time": 0.17584395408630371 + "time": 0.15814089775085449 } }, "fbo/fbo-generatemipmap-nonsquare": { @@ -24287,9 +24298,9 @@ "time": 0.24756407737731934 } }, - "glean/glsl1-function with early return (4)": { + "spec/glsl-1.20/compiler/built-in-functions/tan-float.vert": { "_update": { - "time": 0.14887499809265137 + "time": 0.11168193817138672 } }, "spec/glsl-1.10/execution/variable-indexing/vs-uniform-array-mat2-col-row-rd": { @@ -24307,9 +24318,9 @@ "time": 0.14774417877197266 } }, - "spec/glsl-1.20/compiler/built-in-functions/matrixCompMult-mat3x2-mat3x2.vert": { + "spec/glsl-1.10/execution/built-in-functions/fs-cos-vec4": { "_update": { - "time": 0.13166499137878418 + "time": 0.20428085327148438 } }, "spec/glsl-1.20/compiler/built-in-functions/op-sub-mat3x4-float.frag": { @@ -24322,9 +24333,19 @@ "time": 0.48899197578430176 } }, - "spec/EXT_texture_compression_rgtc/texwrap-2D-GL_COMPRESSED_SIGNED_RED_RGTC1-bordercolor": { + "shaders/glsl-fs-texturecube-2-bias": { + "_remove": { + "note": "Returncode was 1", + "errors": [ + "Couldn't stat program /home/matej/build/BUILD/piglit//tests/shaders/glsl-tex-mvp.vert: No such file or directory", + "You can override the source dir by setting the PIGLIT_SOURCE_DIR environment variable." + ] + }, "_update": { - "time": 0.25073599815368652 + "info": "Returncode: 0\n\nErrors:\n\n\nOutput:\n", + "returncode": 0, + "result": "pass", + "time": 0.27320003509521484 } }, "spec/glsl-1.30/compiler/built-in-functions/clamp-uvec4-uvec4-uvec4.frag": { @@ -24397,9 +24418,9 @@ "time": 0.47371888160705566 } }, - "hiz/hiz-stencil-read-window-depth1": { + "spec/glsl-1.30/compiler/built-in-functions/round-float.frag": { "_update": { - "time": 0.22611808776855469 + "time": 0.15722489356994629 } }, "spec/glsl-1.30/compiler/built-in-functions/op-mod-ivec4-ivec4.vert": { @@ -24467,9 +24488,9 @@ "time": 0.2188727855682373 } }, - "spec/glsl-1.20/compiler/built-in-functions/op-mult-float-mat2x4.vert": { + "spec/glsl-1.10/execution/built-in-functions/fs-greaterThan-ivec2-ivec2": { "_update": { - "time": 0.073262929916381836 + "time": 0.25921392440795898 } }, "spec/glsl-1.10/execution/variable-indexing/vs-temp-array-mat3-index-col-row-rd": { @@ -24477,9 +24498,9 @@ "time": 0.20244097709655762 } }, - "spec/glsl-1.30/compiler/built-in-functions/op-add-uvec3-uint.vert": { + "spec/glsl-1.30/compiler/built-in-functions/op-rshift-int-uint.frag": { "_update": { - "time": 0.12999510765075684 + "time": 0.11823606491088867 } }, "glean/glsl1-texture2D(), computed coordinate": { @@ -24512,14 +24533,14 @@ "time": 0.1557459831237793 } }, - "spec/glsl-1.20/compiler/built-in-functions/op-ne-bvec3-bvec3.frag": { + "glean/texCombine": { "_update": { - "time": 0.27752399444580078 + "time": 34.532727956771851 } }, - "spec/ARB_explicit_attrib_location/1.10/compiler/layout-09.frag": { + "shaders/glsl-mat-from-int-ctor-01": { "_update": { - "time": 0.14737486839294434 + "time": 0.22673702239990234 } }, "spec/glsl-1.20/execution/built-in-functions/fs-op-sub-mat3x2-float": { @@ -24597,9 +24618,9 @@ "time": 0.13991403579711914 } }, - "spec/glsl-1.30/compiler/keywords/vec2.frag": { + "spec/glsl-1.30/compiler/reserved/image2DShadow.frag": { "_update": { - "time": 0.093266963958740234 + "time": 0.092382907867431641 } }, "spec/ARB_transform_feedback2/draw-auto": { @@ -24637,11 +24658,6 @@ "time": 0.083381891250610352 } }, - "spec/glsl-1.10/execution/built-in-functions/vs-op-add-mat3-float": { - "_update": { - "time": 0.16816997528076172 - } - }, "shaders/glsl-vs-loop-nested": { "_remove": { "note": "Returncode was 1", @@ -24727,11 +24743,6 @@ "time": 0.16869592666625977 } }, - "shaders/glsl-const-builtin-notEqual-08": { - "_update": { - "time": 0.14254307746887207 - } - }, "spec/glsl-1.10/execution/built-in-functions/vs-op-ne-mat4-mat4": { "_update": { "time": 0.23408293724060059 @@ -24827,11 +24838,6 @@ "time": 0.31310701370239258 } }, - "spec/glsl-1.30/compiler/basic-types/assign-implicit-conversion-ivec2-uvec2.vert": { - "_update": { - "time": 0.077860116958618164 - } - }, "spec/glsl-1.10/execution/built-in-functions/vs-op-add-ivec2-int": { "_update": { "time": 0.1531059741973877 @@ -24867,9 +24873,9 @@ "time": 0.13479804992675781 } }, - "spec/glsl-1.10/execution/built-in-functions/vs-op-ne-vec3-vec3": { + "spec/EXT_texture_compression_latc/texwrap-2D-GL_COMPRESSED_SIGNED_LUMINANCE_ALPHA_LATC2": { "_update": { - "time": 0.13782691955566406 + "time": 0.068724870681762695 } }, "spec/glsl-1.10/execution/built-in-functions/fs-op-neg-int": { @@ -24892,9 +24898,9 @@ "time": 0.11417007446289062 } }, - "texturing/mipmap-setup": { + "spec/glsl-1.30/execution/built-in-functions/fs-op-mod-uvec2-uvec2": { "_update": { - "time": 0.59929203987121582 + "time": 0.052237033843994141 } }, "spec/glsl-1.20/execution/variable-indexing/fs-varying-array-mat3-rd": { @@ -24932,9 +24938,9 @@ "time": 0.10478997230529785 } }, - "spec/glsl-1.20/compiler/built-in-functions/max-float-float.vert": { + "spec/glsl-1.20/compiler/qualifiers/fn-inout-array-allowed.frag": { "_update": { - "time": 0.15725803375244141 + "time": 0.19984698295593262 } }, "spec/glsl-1.20/compiler/built-in-functions/pow-vec2-vec2.frag": { @@ -25062,11 +25068,6 @@ "time": 0.21477198600769043 } }, - "spec/glsl-1.30/compiler/built-in-functions/atanh-float.frag": { - "_update": { - "time": 0.052682161331176758 - } - }, "spec/glsl-1.20/compiler/built-in-functions/op-mult-float-mat3x4.frag": { "_update": { "time": 0.11468315124511719 @@ -25212,9 +25213,9 @@ "time": 0.22019290924072266 } }, - "spec/glsl-1.30/compiler/built-in-functions/op-neg-uvec3.frag": { + "spec/glsl-1.20/execution/variable-indexing/vs-varying-mat2-col-row-wr": { "_update": { - "time": 0.14711785316467285 + "time": 0.22728919982910156 } }, "spec/glsl-1.20/execution/built-in-functions/fs-op-sub-mat3x4-float": { @@ -25352,11 +25353,6 @@ "time": 0.11214208602905273 } }, - "spec/glsl-1.10/execution/built-in-functions/vs-atan-vec4-vec4": { - "_update": { - "time": 0.13117289543151855 - } - }, "spec/glsl-1.10/execution/built-in-functions/fs-step-float-vec2": { "_update": { "time": 0.12636184692382812 @@ -25397,11 +25393,6 @@ "time": 0.49510502815246582 } }, - "spec/glsl-1.20/compiler/built-in-functions/op-sub-vec4-vec4.frag": { - "_update": { - "time": 0.13749408721923828 - } - }, "spec/glsl-1.20/execution/variable-indexing/fs-varying-array-mat4-index-col-rd": { "_update": { "time": 0.21696114540100098 @@ -25462,9 +25453,9 @@ "time": 0.29355406761169434 } }, - "spec/glsl-1.20/execution/built-in-functions/vs-op-uplus-mat2x4": { + "spec/ARB_texture_rectangle/texwrap-RECT": { "_update": { - "time": 0.20556902885437012 + "time": 0.30951499938964844 } }, "spec/glsl-1.20/execution/variable-indexing/vs-uniform-array-mat3-index-row-rd": { @@ -25602,9 +25593,9 @@ "time": 0.1436150074005127 } }, - "spec/glsl-1.30/compiler/built-in-functions/op-bitand-uint-uint.frag": { + "spec/glsl-1.10/execution/variable-indexing/fs-temp-mat2-col-rd": { "_update": { - "time": 0.11915111541748047 + "time": 0.1833798885345459 } }, "spec/glsl-1.20/compiler/built-in-functions/lessThanEqual-ivec4-ivec4.vert": { @@ -25697,11 +25688,6 @@ "time": 0.12057995796203613 } }, - "spec/glsl-1.20/execution/vs-outerProduct-const-mat2x4-ivec": { - "_update": { - "time": 0.2553260326385498 - } - }, "spec/ARB_color_buffer_float/GL_RGBA8_SNORM-render-fog": { "_update": { "time": 0.2137000560760498 @@ -25712,9 +25698,9 @@ "time": 0.24352097511291504 } }, - "spec/glsl-1.10/compiler/qualifiers/in-02.vert": { + "spec/EXT_packed_depth_stencil/fbo-generatemipmap-formats": { "_update": { - "time": 0.11915493011474609 + "time": 0.49542617797851562 } }, "spec/glsl-1.10/execution/variable-indexing/vs-uniform-array-mat4-col-row-rd": { @@ -25947,9 +25933,14 @@ "time": 0.076615095138549805 } }, - "spec/glsl-1.30/execution/built-in-functions/vs-greaterThan-uvec2-uvec2": { + "spec/glsl-1.20/compiler/built-in-functions/cos-vec2.vert": { "_update": { - "time": 0.1042790412902832 + "time": 0.12365508079528809 + } + }, + "spec/glsl-1.30/execution/built-in-functions/fs-op-rshift-uvec3-int": { + "_update": { + "time": 0.049025058746337891 } }, "spec/glsl-1.10/execution/built-in-functions/fs-smoothstep-float-float-float": { @@ -25987,11 +25978,6 @@ "time": 0.1375892162322998 } }, - "spec/glsl-1.10/execution/variable-indexing/vs-temp-array-mat4-row-wr": { - "_update": { - "time": 0.12590813636779785 - } - }, "spec/glsl-1.10/execution/built-in-functions/fs-greaterThanEqual-ivec3-ivec3": { "_update": { "time": 0.29138708114624023 @@ -26057,9 +26043,9 @@ "time": 0.21835899353027344 } }, - "spec/glsl-1.30/compiler/switch-statement/switch-expression-var-vec2.vert": { + "spec/glsl-1.20/compiler/assignment-operators/modulus-assign-00.frag": { "_update": { - "time": 0.090927839279174805 + "time": 0.082973957061767578 } }, "spec/glsl-1.10/execution/built-in-functions/fs-op-sub-vec4-vec4": { @@ -26077,9 +26063,9 @@ "time": 0.22295498847961426 } }, - "spec/glsl-1.30/compiler/precision-qualifiers/default-precision-vec-01.frag": { + "spec/glsl-1.30/compiler/built-in-functions/op-bitxor-int-int.frag": { "_update": { - "time": 0.091624021530151367 + "time": 0.11709308624267578 } }, "spec/glsl-1.10/execution/built-in-functions/fs-lessThanEqual-ivec4-ivec4": { @@ -26102,9 +26088,9 @@ "time": 0.09413599967956543 } }, - "spec/glsl-1.30/compiler/built-in-functions/op-rshift-ivec4-uint.vert": { + "spec/glsl-1.10/execution/variable-indexing/fs-varying-mat4-row-rd": { "_update": { - "time": 0.12300395965576172 + "time": 0.21039819717407227 } }, "spec/glsl-1.30/compiler/built-in-functions/op-rshift-uvec2-ivec2.frag": { @@ -26132,11 +26118,6 @@ "time": 0.13613200187683105 } }, - "spec/glsl-1.30/execution/built-in-functions/vs-op-lshift-uvec3-ivec3": { - "_update": { - "time": 0.042543172836303711 - } - }, "spec/glsl-1.30/compiler/keywords/mat4x4.frag": { "_update": { "time": 0.10870909690856934 @@ -26147,9 +26128,9 @@ "time": 0.10860991477966309 } }, - "spec/glsl-1.20/compiler/built-in-functions/op-sub-mat2x3-mat2x3.frag": { + "spec/glsl-1.10/execution/built-in-functions/fs-atan-float": { "_update": { - "time": 0.11925101280212402 + "time": 0.21344113349914551 } }, "glx/glx-multi-context-ib-1": { @@ -26182,9 +26163,9 @@ "time": 0.2043299674987793 } }, - "spec/glsl-1.30/compiler/built-in-functions/op-mod-int-int.frag": { + "spec/ARB_texture_float/texwrap-2D-GL_RGB16F": { "_update": { - "time": 0.093995809555053711 + "time": 0.14850211143493652 } }, "spec/glsl-1.30/compiler/built-in-functions/op-bitor-ivec2-int.frag": { @@ -26222,9 +26203,9 @@ "time": 0.20939803123474121 } }, - "spec/glsl-1.20/compiler/built-in-functions/normalize-vec3.frag": { + "spec/glsl-1.30/execution/fs-texture-sampler2dshadow-02": { "_update": { - "time": 0.20361900329589844 + "time": 0.045221090316772461 } }, "spec/glsl-1.30/compiler/built-in-functions/op-selection-bool-uint-uint.frag": { @@ -26427,9 +26408,9 @@ "time": 0.13980698585510254 } }, - "spec/glsl-1.20/compiler/built-in-functions/clamp-float-float-float.vert": { + "spec/glsl-1.20/compiler/built-in-functions/acos-vec3.vert": { "_update": { - "time": 0.12880110740661621 + "time": 0.10762786865234375 } }, "spec/glsl-1.20/compiler/built-in-functions/op-uplus-mat3x2.vert": { @@ -26472,6 +26453,11 @@ "time": 0.047285079956054688 } }, + "spec/glsl-1.20/execution/variable-indexing/fs-varying-array-mat2-index-col-rd": { + "_update": { + "time": 0.31304693222045898 + } + }, "spec/glsl-1.30/execution/built-in-functions/vs-trunc-float": { "_update": { "time": 0.055980920791625977 @@ -26597,9 +26583,9 @@ "time": 0.31620597839355469 } }, - "spec/glsl-1.20/execution/variable-indexing/vs-varying-mat3-row-wr": { + "general/point-line-no-cull": { "_update": { - "time": 0.20120596885681152 + "time": 0.21175193786621094 } }, "spec/!OpenGL 2.0/vertex-program-two-side front back back2": { @@ -26877,9 +26863,9 @@ "time": 0.13691496849060059 } }, - "spec/glsl-1.30/execution/built-in-functions/vs-op-lshift-ivec2-int": { + "spec/glsl-1.30/compiler/built-in-functions/op-mod-uvec4-uvec4.vert": { "_update": { - "time": 0.048163890838623047 + "time": 0.16068100929260254 } }, "spec/glsl-1.30/execution/built-in-functions/vs-min-uvec3-uint": { @@ -27042,9 +27028,9 @@ "time": 0.049232006072998047 } }, - "spec/glsl-1.20/execution/variable-indexing/fs-varying-array-mat4-index-row-rd": { + "spec/glsl-1.10/execution/built-in-functions/vs-op-sub-int-ivec2": { "_update": { - "time": 0.3023219108581543 + "time": 0.22932004928588867 } }, "spec/glsl-1.20/execution/built-in-functions/fs-op-mult-mat4x2-float": { @@ -27107,9 +27093,9 @@ "time": 0.12261104583740234 } }, - "spec/glsl-1.20/compiler/structure-and-array-operations/array-size-with-side-effect.vert": { + "spec/glsl-1.30/compiler/switch-statement/switch-expression-const-vec2.vert": { "_update": { - "time": 0.093689918518066406 + "time": 0.062409877777099609 } }, "spec/glsl-1.20/execution/variable-indexing/fs-temp-mat2-col-rd": { @@ -27142,14 +27128,14 @@ "time": 0.13293790817260742 } }, - "general/scissor-copypixels": { + "spec/glsl-1.30/execution/built-in-functions/fs-op-eq-uvec3-uvec3-using-if": { "_update": { - "time": 0.20537805557250977 + "time": 0.045588016510009766 } }, - "spec/ARB_shader_texture_lod/execution/tex-miplevel-selection-texture2DLod-lod": { + "texturing/tex-miplevel-selection-lod": { "_update": { - "time": 0.47599577903747559 + "time": 0.30028700828552246 } }, "spec/glsl-1.10/execution/built-in-functions/fs-pow-vec4-vec4": { @@ -27167,14 +27153,14 @@ "time": 0.062269210815429688 } }, - "glean/glsl1-shadow2D(): 2": { + "spec/glsl-1.30/execution/built-in-functions/vs-op-add-uvec2-uvec2": { "_update": { - "time": 0.1859900951385498 + "time": 0.047838926315307617 } }, - "spec/glsl-1.20/execution/variable-indexing/vs-varying-mat4-col-row-wr": { + "spec/glsl-1.30/execution/built-in-functions/vs-op-mod-uint-uvec3": { "_update": { - "time": 0.15592002868652344 + "time": 0.044864892959594727 } }, "spec/glsl-1.20/compiler/built-in-functions/op-mult-mat3-vec3.frag": { @@ -27242,9 +27228,9 @@ "time": 0.23144316673278809 } }, - "spec/glsl-1.30/compiler/built-in-functions/min-uvec3-uvec3.vert": { + "spec/glsl-1.20/execution/clipping/vs-clip-vertex-homogeneity": { "_update": { - "time": 0.10086297988891602 + "time": 0.17792797088623047 } }, "spec/glsl-1.20/compiler/built-in-functions/fract-float.vert": { @@ -27272,9 +27258,9 @@ "time": 0.15986204147338867 } }, - "spec/glsl-1.30/compiler/reserved/dvec4.frag": { + "spec/ARB_shader_texture_lod/compiler/tex_grad-18.vert": { "_update": { - "time": 0.13079309463500977 + "time": 0.13075494766235352 } }, "shaders/glsl-vs-if-nested": { @@ -27302,9 +27288,9 @@ "time": 0.15055584907531738 } }, - "spec/ARB_depth_texture/fbo-depth-GL_DEPTH_COMPONENT24-drawpixels": { + "spec/EXT_texture_compression_s3tc/texwrap-2D-GL_COMPRESSED_RGBA_S3TC_DXT3-bordercolor": { "_update": { - "time": 0.29399800300598145 + "time": 0.1255948543548584 } }, "spec/glsl-1.20/execution/built-in-functions/fs-op-div-float-mat2x3": { @@ -27332,9 +27318,9 @@ "time": 0.12606501579284668 } }, - "spec/glsl-1.20/execution/built-in-functions/vs-op-eq-mat4x3-mat4x3-using-if": { + "spec/glsl-1.20/execution/variable-indexing/fs-uniform-array-mat3-col-rd": { "_update": { - "time": 0.21451997756958008 + "time": 0.26083898544311523 } }, "spec/ARB_shader_texture_lod/compiler/tex_lod-01.frag": { @@ -27422,6 +27408,11 @@ "time": 0.058687925338745117 } }, + "spec/glsl-1.20/execution/built-in-functions/fs-op-uplus-mat3x2": { + "_update": { + "time": 0.16124701499938965 + } + }, "shaders/glsl-fs-vec4-indexing-temp-dst-in-nested-loop-combined": { "_update": { "time": 0.2020118236541748 @@ -27462,9 +27453,9 @@ "time": 0.14118218421936035 } }, - "glean/glsl1-all() function": { + "spec/glsl-1.30/compiler/reserved/partition.frag": { "_update": { - "time": 0.19284677505493164 + "time": 0.15165400505065918 } }, "glean/fp1-SCS test": { @@ -27512,11 +27503,6 @@ "time": 0.1916811466217041 } }, - "spec/glsl-1.10/execution/variable-indexing/fs-varying-mat4-row-rd": { - "_update": { - "time": 0.21039819717407227 - } - }, "spec/glsl-1.30/compiler/constant-expressions/uint-01.vert": { "_update": { "time": 0.094532012939453125 @@ -27617,9 +27603,9 @@ "time": 0.38197112083435059 } }, - "spec/glsl-1.30/compiler/arithmetic-operators/division-by-zero-01.frag": { + "spec/glsl-1.20/execution/variable-indexing/vs-temp-array-mat3-index-col-row-rd": { "_update": { - "time": 0.069818973541259766 + "time": 0.13180184364318848 } }, "shaders/vpfp-generic/vp-constant-array": { @@ -27662,9 +27648,9 @@ "time": 0.048182964324951172 } }, - "spec/glsl-1.20/execution/variable-indexing/vs-temp-array-mat2-wr": { + "spec/glsl-1.30/compiler/basic-types/int-literal-too-large-02.frag": { "_update": { - "time": 0.15055012702941895 + "time": 0.10790205001831055 } }, "general/bgra-sec-color-pointer": { @@ -27707,9 +27693,9 @@ "time": 0.21826410293579102 } }, - "spec/glsl-1.10/execution/built-in-functions/fs-pow-vec2-vec2": { + "spec/ARB_color_buffer_float/GL_RGBA32F-readpixels": { "_update": { - "time": 0.12369108200073242 + "time": 0.26082396507263184 } }, "shaders/glsl-vs-point-size": { @@ -27747,11 +27733,6 @@ "time": 0.060276031494140625 } }, - "spec/glsl-1.20/execution/variable-indexing/vs-temp-array-mat3-index-col-row-rd": { - "_update": { - "time": 0.13180184364318848 - } - }, "spec/glsl-1.30/compiler/keywords/mat4x3.frag": { "_update": { "time": 0.11139798164367676 @@ -27762,9 +27743,9 @@ "time": 0.15775609016418457 } }, - "spec/glsl-1.30/compiler/built-in-functions/op-bitand-uvec4-uvec4.frag": { + "spec/glsl-1.10/execution/built-in-functions/vs-op-not-bool-using-if": { "_update": { - "time": 0.09681391716003418 + "time": 0.13814783096313477 } }, "spec/glsl-1.10/execution/variable-indexing/vs-temp-array-mat2-index-row-rd": { @@ -27802,9 +27783,9 @@ "time": 0.17048788070678711 } }, - "shaders/vpfp-generic/vp-arl-constant-array-huge-varying": { + "spec/glsl-1.10/execution/built-in-functions/vs-op-gt-int-int-using-if": { "_update": { - "time": 0.23259210586547852 + "time": 0.26165509223937988 } }, "spec/glsl-1.20/execution/variable-indexing/fs-uniform-array-mat4-row-rd": { @@ -27842,9 +27823,9 @@ "time": 0.21656489372253418 } }, - "spec/glsl-1.20/execution/built-in-functions/fs-op-add-mat4x2-mat4x2": { + "spec/glsl-1.20/compiler/built-in-functions/lessThan-ivec2-ivec2.vert": { "_update": { - "time": 0.16237998008728027 + "time": 0.073564052581787109 } }, "spec/glsl-1.30/execution/built-in-functions/vs-op-rshift-uvec3-uvec3": { @@ -27887,9 +27868,9 @@ "time": 0.045569896697998047 } }, - "spec/glsl-1.30/execution/built-in-functions/fs-max-ivec2-int": { + "spec/ARB_explicit_attrib_location/1.20/compiler/layout-04.vert": { "_update": { - "time": 0.056238889694213867 + "time": 0.063310861587524414 } }, "spec/glsl-1.10/execution/variable-indexing/vs-temp-array-mat2-index-col-row-wr": { @@ -27897,9 +27878,9 @@ "time": 0.21348786354064941 } }, - "glean/glsl1-min() function": { + "spec/EXT_transform_feedback/query-primitives_generated-bufferbase": { "_update": { - "time": 0.13334488868713379 + "time": 0.09465789794921875 } }, "spec/glsl-1.20/compiler/built-in-functions/op-selection-bool-mat2x4-mat2x4.vert": { @@ -27937,9 +27918,14 @@ "time": 0.16100907325744629 } }, - "spec/ARB_explicit_attrib_location/1.10/compiler/layout-12.frag": { + "spec/EXT_texture_snorm/texwrap-2D-GL_R8_SNORM": { "_update": { - "time": 0.10419511795043945 + "time": 0.22127294540405273 + } + }, + "spec/glsl-1.10/execution/variable-indexing/fs-temp-mat3-wr": { + "_update": { + "time": 0.15608000755310059 } }, "spec/glsl-1.30/compiler/built-in-functions/op-bitor-uint-uvec3.vert": { @@ -27952,9 +27938,9 @@ "time": 0.049440860748291016 } }, - "spec/glsl-1.10/execution/built-in-functions/vs-op-lt-float-float": { + "glean/fp1-swizzled move test": { "_update": { - "time": 0.2500760555267334 + "time": 0.11630582809448242 } }, "spec/glsl-1.10/execution/variable-indexing/vs-temp-array-mat2-index-rd": { @@ -27962,9 +27948,9 @@ "time": 0.1448969841003418 } }, - "spec/glsl-1.30/execution/built-in-functions/fs-tanh-vec4": { + "spec/glsl-1.30/execution/built-in-functions/vs-op-bitand-ivec2-int": { "_update": { - "time": 0.059747934341430664 + "time": 0.049384117126464844 } }, "spec/glsl-1.30/execution/built-in-functions/fs-tanh-vec2": { @@ -28052,6 +28038,16 @@ "time": 0.098226070404052734 } }, + "shaders/glsl-const-builtin-sin": { + "_update": { + "time": 0.28673481941223145 + } + }, + "glx/glx-pixmap-life": { + "_update": { + "time": 0.020764827728271484 + } + }, "spec/glsl-1.30/compiler/built-in-functions/op-rshift-uvec3-uvec3.vert": { "_update": { "time": 0.048007965087890625 @@ -28067,9 +28063,9 @@ "time": 0.11588120460510254 } }, - "spec/glsl-1.30/compiler/reserved/image2DShadow.frag": { + "spec/glsl-1.30/compiler/keywords/vec2.frag": { "_update": { - "time": 0.092382907867431641 + "time": 0.093266963958740234 } }, "spec/glsl-1.20/compiler/built-in-functions/lessThanEqual-vec4-vec4.frag": { @@ -28102,9 +28098,9 @@ "time": 0.080157995223999023 } }, - "spec/EXT_texture_compression_latc/texwrap-2D-GL_COMPRESSED_SIGNED_LUMINANCE_ALPHA_LATC2": { + "spec/glsl-1.10/execution/built-in-functions/vs-op-ne-vec3-vec3": { "_update": { - "time": 0.068724870681762695 + "time": 0.13782691955566406 } }, "spec/glsl-1.20/execution/built-in-functions/vs-op-ne-mat3x4-mat3x4-using-if": { @@ -28132,9 +28128,9 @@ "time": 0.1817011833190918 } }, - "spec/glsl-1.20/compiler/built-in-functions/exp-float.vert": { + "spec/glsl-1.30/compiler/built-in-functions/atanh-float.frag": { "_update": { - "time": 0.16217398643493652 + "time": 0.052682161331176758 } }, "spec/glsl-1.20/compiler/built-in-functions/dot-vec2-vec2.frag": { @@ -28247,11 +28243,6 @@ "time": 0.25289583206176758 } }, - "spec/ARB_depth_buffer_float/fbo-stencil-GL_DEPTH32F_STENCIL8-clear": { - "_update": { - "time": 0.082968950271606445 - } - }, "spec/glsl-1.30/compiler/built-in-functions/clamp-uvec3-uint-uint.frag": { "_update": { "time": 0.075469017028808594 @@ -28327,9 +28318,9 @@ "time": 0.16822004318237305 } }, - "spec/glsl-1.20/compiler/built-in-functions/cos-vec2.vert": { + "spec/glsl-1.20/compiler/built-in-functions/op-sub-vec4-vec4.frag": { "_update": { - "time": 0.12365508079528809 + "time": 0.13749408721923828 } }, "spec/ATI_draw_buffers/arbfp-no-option": { @@ -28342,14 +28333,14 @@ "time": 0.1548919677734375 } }, - "spec/glsl-1.30/compiler/built-in-functions/op-bitxor-int-int.frag": { + "spec/glsl-1.30/compiler/precision-qualifiers/default-precision-vec-01.frag": { "_update": { - "time": 0.11709308624267578 + "time": 0.091624021530151367 } }, - "spec/glsl-1.10/execution/built-in-functions/fs-atan-float": { + "spec/glsl-1.20/compiler/built-in-functions/op-sub-mat2x3-mat2x3.frag": { "_update": { - "time": 0.21344113349914551 + "time": 0.11925101280212402 } }, "spec/glsl-1.20/execution/fs-outerProduct-const-mat4x4-ivec": { @@ -28387,9 +28378,9 @@ "time": 0.11979293823242188 } }, - "spec/glsl-1.10/execution/built-in-functions/vs-sin-vec2": { + "spec/glsl-1.20/compiler/built-in-functions/normalize-vec3.frag": { "_update": { - "time": 0.1660301685333252 + "time": 0.20361900329589844 } }, "spec/glsl-1.10/execution/built-in-functions/vs-distance-vec3-vec3": { @@ -28432,9 +28423,9 @@ "time": 0.17900609970092773 } }, - "spec/glsl-1.30/execution/built-in-functions/fs-op-bitand-ivec2-ivec2": { + "spec/glsl-1.20/compiler/built-in-functions/op-uplus-ivec3.frag": { "_update": { - "time": 0.050584077835083008 + "time": 0.16686701774597168 } }, "spec/glsl-1.20/execution/variable-indexing/fs-temp-mat3-row-rd": { @@ -28502,9 +28493,9 @@ "time": 0.17411684989929199 } }, - "spec/glsl-1.30/compiler/built-in-functions/op-mod-uvec4-uvec4.vert": { + "spec/glsl-1.30/execution/built-in-functions/vs-op-lshift-ivec2-int": { "_update": { - "time": 0.16068100929260254 + "time": 0.048163890838623047 } }, "spec/EXT_texture_snorm/texwrap-2D-GL_LUMINANCE16_SNORM": { @@ -28522,9 +28513,9 @@ "time": 0.067312002182006836 } }, - "spec/glsl-1.30/compiler/built-in-functions/op-bitand-uvec4-uint.vert": { + "spec/ARB_shader_texture_lod/compiler/tex_grad-16.frag": { "_update": { - "time": 0.086604118347167969 + "time": 0.13128304481506348 } }, "spec/glsl-1.10/execution/variable-indexing/fs-temp-array-mat3-col-row-rd": { @@ -28557,9 +28548,9 @@ "time": 0.22074794769287109 } }, - "spec/glsl-1.20/execution/variable-indexing/fs-uniform-array-mat3-col-rd": { + "spec/glsl-1.20/execution/built-in-functions/vs-op-eq-mat4x3-mat4x3-using-if": { "_update": { - "time": 0.26083898544311523 + "time": 0.21451997756958008 } }, "shaders/vpfp-generic/nv-init-zero-reg": { @@ -28742,9 +28733,9 @@ "time": 0.22135806083679199 } }, - "spec/glsl-1.20/compiler/built-in-functions/op-uplus-ivec3.frag": { + "spec/glsl-1.30/execution/built-in-functions/fs-op-bitand-ivec2-ivec2": { "_update": { - "time": 0.16686701774597168 + "time": 0.050584077835083008 } }, "spec/glsl-1.20/compiler/built-in-functions/op-neg-vec4.frag": { @@ -28772,9 +28763,9 @@ "time": 0.13202190399169922 } }, - "spec/ARB_shader_texture_lod/compiler/tex_grad-16.frag": { + "spec/glsl-1.30/compiler/built-in-functions/op-bitand-uvec4-uint.vert": { "_update": { - "time": 0.13128304481506348 + "time": 0.086604118347167969 } }, "spec/glsl-1.00/compiler/precision-qualifiers/precision-int-01.frag": { @@ -28807,9 +28798,9 @@ "time": 0.090241909027099609 } }, - "spec/glsl-1.30/compiler/built-in-functions/op-complement-uvec3.vert": { + "spec/glsl-1.30/compiler/built-in-functions/greaterThanEqual-uvec3-uvec3.frag": { "_update": { - "time": 0.062072038650512695 + "time": 0.18243694305419922 } }, "spec/glsl-1.30/execution/built-in-functions/fs-op-div-uvec2-uvec2": { @@ -28958,9 +28949,9 @@ "time": 0.20918607711791992 } }, - "spec/glsl-1.20/compiler/built-in-functions/transpose-mat3x4.frag": { + "spec/ARB_shader_texture_lod/compiler/tex_grad-03.frag": { "_update": { - "time": 0.11567783355712891 + "time": 0.16913986206054688 } }, "spec/glsl-1.20/execution/variable-indexing/fs-temp-array-mat2-index-col-row-wr": { @@ -29408,9 +29399,9 @@ "time": 0.13559079170227051 } }, - "spec/ARB_shader_objects/getuniform": { + "shaders/glsl-const-builtin-log2": { "_update": { - "time": 0.17635011672973633 + "time": 0.23959612846374512 } }, "spec/glsl-1.20/compiler/built-in-functions/op-mult-mat2x3-mat3x2.frag": { @@ -29418,6 +29409,11 @@ "time": 0.113555908203125 } }, + "spec/glsl-1.20/compiler/qualifiers/inout-01.vert": { + "_update": { + "time": 0.046383142471313477 + } + }, "spec/!OpenGL 1.1/texwrap-2D-GL_ALPHA16-bordercolor": { "_update": { "time": 0.27528905868530273 @@ -29453,9 +29449,14 @@ "time": 0.28986716270446777 } }, - "spec/glsl-1.00/compiler/qualifiers/fn-out-array-allowed-cstyle.vert": { + "spec/glsl-1.20/execution/variable-indexing/fs-varying-array-mat3-index-col-rd": { "_update": { - "time": 0.25611996650695801 + "time": 0.1430351734161377 + } + }, + "spec/glsl-1.10/execution/built-in-functions/vs-op-lt-float-float": { + "_update": { + "time": 0.2500760555267334 } }, "spec/glsl-1.10/execution/variable-indexing/fs-temp-array-mat4-index-row-rd": { @@ -29633,6 +29634,11 @@ "time": 0.10698795318603516 } }, + "spec/glsl-1.30/execution/built-in-functions/vs-op-bitor-uint-uvec4": { + "_update": { + "time": 0.046233892440795898 + } + }, "spec/glsl-1.30/compiler/reserved/volatile.frag": { "_update": { "time": 0.087306022644042969 @@ -29643,9 +29649,9 @@ "time": 0.13829684257507324 } }, - "spec/glsl-1.30/compiler/built-in-functions/op-lshift-uvec3-uint.frag": { + "spec/glsl-1.10/execution/variable-indexing/vs-varying-array-mat3-rd": { "_update": { - "time": 0.13781285285949707 + "time": 0.21028518676757812 } }, "spec/glsl-1.10/execution/built-in-functions/fs-op-sub-ivec3-int": { @@ -29758,11 +29764,6 @@ "time": 0.13584494590759277 } }, - "spec/glsl-1.10/compiler/expressions/invalid-logic-not-02.vert": { - "_update": { - "time": 0.16037607192993164 - } - }, "shaders/glsl-vs-swizzle-swizzle-rhs": { "_update": { "time": 0.25594997406005859 @@ -29843,6 +29844,11 @@ "time": 0.15142989158630371 } }, + "spec/glsl-1.20/execution/variable-indexing/vs-temp-array-mat2-index-row-wr": { + "_update": { + "time": 0.21440792083740234 + } + }, "spec/glsl-1.10/execution/variable-indexing/vs-temp-array-mat2-row-wr": { "_update": { "time": 0.17316603660583496 @@ -29888,6 +29894,11 @@ "time": 0.13649392127990723 } }, + "spec/glsl-1.20/compiler/built-in-functions/notEqual-bvec4-bvec4.vert": { + "_update": { + "time": 0.20216488838195801 + } + }, "spec/glsl-1.30/compiler/built-in-functions/op-mod-ivec4-int.vert": { "_update": { "time": 0.14268207550048828 @@ -30053,11 +30064,6 @@ "time": 0.20914196968078613 } }, - "spec/ARB_explicit_attrib_location/1.10/compiler/attribute-01.vert": { - "_update": { - "time": 0.15249204635620117 - } - }, "spec/glsl-1.30/execution/built-in-functions/vs-op-eq-uvec3-uvec3": { "_update": { "time": 0.049358129501342773 @@ -30093,9 +30099,9 @@ "time": 0.2947089672088623 } }, - "spec/glsl-1.20/compiler/built-in-functions/op-sub-float-vec3.frag": { + "spec/glsl-1.30/compiler/built-in-functions/op-sub-uvec2-uvec2.vert": { "_update": { - "time": 0.2357630729675293 + "time": 0.06382298469543457 } }, "spec/glsl-1.20/execution/built-in-functions/vs-op-mult-mat3x2-float": { @@ -30123,9 +30129,9 @@ "time": 0.19057893753051758 } }, - "spec/glsl-1.10/execution/built-in-functions/fs-op-add-float-vec4": { + "spec/glsl-1.20/compiler/built-in-functions/min-vec2-vec2.frag": { "_update": { - "time": 0.13716006278991699 + "time": 0.16825699806213379 } }, "spec/glsl-1.10/execution/built-in-functions/fs-dot-vec2-vec2": { @@ -30163,9 +30169,9 @@ "time": 0.16444897651672363 } }, - "spec/glsl-1.20/execution/built-in-functions/vs-op-add-mat4x2-mat4x2": { + "glean/depthStencil": { "_update": { - "time": 0.19029092788696289 + "time": 0.095930814743041992 } }, "spec/glsl-1.20/execution/variable-indexing/fs-temp-array-mat4-index-col-rd": { @@ -30258,14 +30264,19 @@ "time": 0.20637893676757812 } }, + "glean/glsl1-matrix, vector multiply (3)": { + "_update": { + "time": 0.1929621696472168 + } + }, "spec/glsl-1.30/compiler/built-in-functions/op-bitxor-int-ivec4.frag": { "_update": { "time": 0.11135601997375488 } }, - "spec/glsl-1.30/compiler/built-in-functions/op-le-uint-uint.frag": { + "spec/EXT_texture_snorm/fbo-alphatest-formats": { "_update": { - "time": 0.10466694831848145 + "time": 0.090207099914550781 } }, "spec/glsl-1.10/execution/variable-indexing/vs-varying-array-mat3-col-wr": { @@ -30313,10 +30324,9 @@ "time": 0.045037031173706055 } }, - "glean/pointSprite": { + "spec/EXT_texture_snorm/texwrap-2D-GL_RG16_SNORM-bordercolor": { "_update": { - "info": "Returncode: 0\n\nErrors:\n\n\nOutput:\n----------------------------------------------------------------------\nTest basic point sprite functionality.\n\nIncorrect pixel at (20, 19):\n\tit should be rendered with color: (0, 0, 1), actual read: (0, 1, 0)\n\tPrimitive type: GL_POLYGON\n\tCoord Origin at: GL_UPPER_LEFT\n\tPointSize: 1.85\nIncorrect pixel at (19, 19):\n\tit should be rendered with color: (0, 0, 1), actual read: (0, 1, 0)\n\tPrimitive type: GL_POLYGON\n\tCoord Origin at: GL_LOWER_LEFT\n\tPointSize: 1.85\npointSprite: FAIL rgba8, db, z24, s8, win+pmap, id 33\n\t5 tests passed, 2 tests failed.\n\n", - "time": 0.13136410713195801 + "time": 0.26098418235778809 } }, "spec/ARB_texture_compression/texwrap-2D-GL_COMPRESSED_LUMINANCE_ALPHA": { @@ -30369,9 +30379,9 @@ "time": 0.10930085182189941 } }, - "shaders/glsl-fwidth": { + "spec/glsl-1.30/compiler/built-in-functions/op-uplus-uvec4.vert": { "_update": { - "time": 0.43745017051696777 + "time": 0.077322006225585938 } }, "spec/!OpenGL 2.0/vertex-program-two-side enabled front2": { @@ -30449,9 +30459,9 @@ "time": 0.16691088676452637 } }, - "spec/glsl-1.20/compiler/built-in-functions/op-add-int-ivec3.vert": { + "spec/glsl-1.20/execution/vs-outerProduct-const-mat2x4-ivec": { "_update": { - "time": 0.078819990158081055 + "time": 0.2553260326385498 } }, "hiz/hiz-depth-read-window-stencil0": { @@ -30479,9 +30489,9 @@ "time": 0.046362876892089844 } }, - "spec/glsl-1.30/compiler/built-in-functions/roundEven-vec3.frag": { + "spec/glsl-1.30/execution/fs-texture-sampler2dshadow-12": { "_update": { - "time": 0.063948154449462891 + "time": 0.049708127975463867 } }, "spec/glsl-1.10/execution/built-in-functions/vs-op-eq-mat3-mat3-using-if": { @@ -30534,9 +30544,9 @@ "time": 0.069285869598388672 } }, - "spec/glsl-1.20/compiler/built-in-functions/op-eq-ivec4-ivec4.frag": { + "spec/glsl-1.10/execution/built-in-functions/vs-reflect-vec3-vec3": { "_update": { - "time": 0.10820293426513672 + "time": 0.18347692489624023 } }, "spec/glsl-1.30/execution/built-in-functions/vs-op-div-large-uint-uint": { @@ -30614,9 +30624,9 @@ "time": 0.24031996726989746 } }, - "spec/glsl-1.20/compiler/built-in-functions/notEqual-bvec4-bvec4.vert": { + "spec/glsl-1.30/compiler/built-in-functions/op-lshift-uvec2-ivec2.vert": { "_update": { - "time": 0.20216488838195801 + "time": 0.24125814437866211 } }, "spec/glsl-1.30/execution/built-in-functions/fs-op-rshift-uvec4-int": { @@ -30689,9 +30699,9 @@ "time": 0.27243900299072266 } }, - "shaders/glsl-const-initializer-03": { + "spec/glsl-1.20/compiler/built-in-functions/radians-vec2.frag": { "_update": { - "time": 0.12015104293823242 + "time": 0.18780899047851562 } }, "glean/glsl1-simple if statement (scalar test)": { @@ -30754,11 +30764,6 @@ "time": 0.10475397109985352 } }, - "spec/glsl-1.30/execution/built-in-functions/vs-op-rshift-uvec4-ivec4": { - "_update": { - "time": 0.049284934997558594 - } - }, "spec/glsl-1.30/compiler/built-in-functions/op-mult-uvec2-uvec2.vert": { "_update": { "time": 0.11003708839416504 @@ -30779,9 +30784,9 @@ "time": 0.084598064422607422 } }, - "glean/glsl1-Comment test (5)": { + "spec/glsl-1.20/compiler/built-in-functions/radians-float.vert": { "_update": { - "time": 0.1652979850769043 + "time": 0.10972404479980469 } }, "spec/glsl-1.20/compiler/built-in-functions/transpose-mat3x2.vert": { @@ -30789,9 +30794,9 @@ "time": 0.1368560791015625 } }, - "spec/glsl-1.20/execution/variable-indexing/fs-temp-array-mat4-index-col-row-wr": { + "spec/glsl-1.30/execution/built-in-functions/fs-op-eq-uint-uint-using-if": { "_update": { - "time": 0.40094590187072754 + "time": 0.073058128356933594 } }, "spec/glsl-1.10/execution/variable-indexing/fs-varying-array-mat2-row-rd": { @@ -31014,9 +31019,9 @@ "time": 0.15513896942138672 } }, - "spec/glsl-1.20/execution/vs-outerProduct-mat2-ivec": { + "spec/glsl-1.20/execution/built-in-functions/fs-op-neg-mat3x4": { "_update": { - "time": 0.28846311569213867 + "time": 0.1897590160369873 } }, "fbo/fbo-alphatest-nocolor": { @@ -31044,9 +31049,9 @@ "time": 0.067769050598144531 } }, - "spec/glsl-1.10/execution/built-in-functions/fs-op-uplus-int": { + "spec/glsl-1.30/execution/built-in-functions/fs-op-lshift-ivec3-uvec3": { "_update": { - "time": 0.19833588600158691 + "time": 0.04489898681640625 } }, "spec/glsl-1.30/execution/built-in-functions/fs-op-div-uvec4-uint": { @@ -31059,9 +31064,9 @@ "time": 0.045773983001708984 } }, - "spec/glsl-1.10/execution/built-in-functions/fs-length-vec3": { + "spec/glsl-1.10/execution/variable-indexing/vs-varying-mat2-col-wr": { "_update": { - "time": 0.21349382400512695 + "time": 0.21278786659240723 } }, "spec/glsl-1.20/compiler/built-in-functions/sin-vec3.frag": { @@ -31079,9 +31084,9 @@ "time": 0.2479090690612793 } }, - "spec/glsl-1.10/execution/built-in-functions/fs-all-bvec2-using-if": { + "spec/glsl-1.20/compiler/built-in-functions/distance-vec2-vec2.vert": { "_update": { - "time": 0.17295098304748535 + "time": 0.081785917282104492 } }, "general/vao-02": { @@ -31089,9 +31094,9 @@ "time": 0.11047697067260742 } }, - "general/vao-01": { + "spec/glsl-1.20/compiler/built-in-functions/max-vec2-float.vert": { "_update": { - "time": 0.11883807182312012 + "time": 0.093425989151000977 } }, "spec/glsl-1.20/compiler/built-in-functions/op-selection-bool-ivec3-ivec3.frag": { @@ -31164,9 +31169,9 @@ "time": 0.12507200241088867 } }, - "spec/glsl-1.30/execution/built-in-functions/vs-op-complement-ivec2": { + "spec/glsl-1.20/compiler/built-in-functions/asin-float.frag": { "_update": { - "time": 0.049599170684814453 + "time": 0.11494016647338867 } }, "spec/glsl-1.30/execution/built-in-functions/vs-op-complement-ivec3": { @@ -31179,9 +31184,9 @@ "time": 0.11388707160949707 } }, - "spec/glsl-1.20/execution/built-in-functions/fs-op-ne-mat3x4-mat3x4": { + "spec/glsl-1.30/execution/built-in-functions/vs-op-complement-ivec4": { "_update": { - "time": 0.20073986053466797 + "time": 0.043473958969116211 } }, "spec/glsl-1.20/compiler/qualifiers/fn-out-array-allowed-cstyle.vert": { @@ -31219,9 +31224,9 @@ "time": 0.23822498321533203 } }, - "spec/glsl-1.20/compiler/built-in-functions/greaterThanEqual-ivec3-ivec3.vert": { + "spec/glsl-1.20/execution/built-in-functions/fs-matrixCompMult-mat3x2-mat3x2": { "_update": { - "time": 0.13065814971923828 + "time": 0.18402504920959473 } }, "spec/glsl-1.30/execution/built-in-functions/fs-op-bitor-ivec4-ivec4": { @@ -31244,9 +31249,9 @@ "time": 0.15139579772949219 } }, - "spec/glsl-1.10/execution/built-in-functions/vs-lessThan-vec4-vec4": { + "spec/glsl-1.30/execution/built-in-functions/fs-op-bitor-ivec3-ivec3": { "_update": { - "time": 0.15932106971740723 + "time": 0.049292802810668945 } }, "spec/glsl-1.20/execution/variable-indexing/vs-temp-array-mat4-col-wr": { @@ -31319,9 +31324,9 @@ "time": 0.11134600639343262 } }, - "fbo/fbo-scissor-bitmap": { + "spec/glsl-1.20/compiler/built-in-functions/op-mult-float-mat4x3.vert": { "_update": { - "time": 0.25803208351135254 + "time": 0.079216957092285156 } }, "spec/glsl-1.30/compiler/built-in-functions/op-mod-ivec3-int.frag": { @@ -31334,9 +31339,9 @@ "time": 0.21416997909545898 } }, - "bugs/fdo20701": { + "shaders/glsl-const-builtin-notEqual-08": { "_update": { - "time": 0.11078906059265137 + "time": 0.14254307746887207 } }, "shaders/glsl-const-builtin-notEqual-09": { @@ -31344,14 +31349,14 @@ "time": 0.20213603973388672 } }, - "glx/glx-pixmap-life": { + "spec/glsl-1.10/execution/variable-indexing/vs-temp-array-mat4-row-wr": { "_update": { - "time": 0.020764827728271484 + "time": 0.12590813636779785 } }, - "spec/glsl-1.20/recursion/indirect-separate": { + "shaders/glsl-const-builtin-notEqual-02": { "_update": { - "time": 0.086286067962646484 + "time": 0.29207706451416016 } }, "shaders/glsl-const-builtin-notEqual-03": { @@ -31399,9 +31404,9 @@ "time": 0.87422394752502441 } }, - "fbo/fbo-drawbuffers-maxtargets": { + "shaders/link-mismatch-layout-01": { "_update": { - "time": 0.39714908599853516 + "time": 0.3700721263885498 } }, "shaders/link-mismatch-layout-03": { @@ -31409,9 +31414,9 @@ "time": 0.31801080703735352 } }, - "shaders/link-mismatch-layout-02": { + "spec/glsl-1.20/execution/variable-indexing/vs-varying-array-mat4-row-wr": { "_update": { - "time": 0.31884002685546875 + "time": 0.12539196014404297 } }, "spec/glsl-1.20/compiler/built-in-functions/exp-vec3.vert": { @@ -31424,9 +31429,9 @@ "time": 0.20538091659545898 } }, - "spec/glsl-1.10/execution/variable-indexing/vs-varying-array-mat2-index-row-rd": { + "spec/glsl-1.20/execution/variable-indexing/fs-uniform-array-mat2-row-rd": { "_update": { - "time": 0.2220451831817627 + "time": 0.21406316757202148 } }, "spec/glsl-1.20/compiler/built-in-functions/op-sub-mat2x4-float.vert": { @@ -31564,9 +31569,9 @@ "time": 0.51520800590515137 } }, - "spec/glsl-1.30/execution/built-in-functions/fs-op-lshift-uvec2-uint": { + "spec/glsl-1.30/compiler/qualifiers/inout-01.vert": { "_update": { - "time": 0.046271085739135742 + "time": 0.05990290641784668 } }, "shaders/glsl-deadcode-self-assign": { @@ -31589,9 +31594,9 @@ "time": 0.21160197257995605 } }, - "spec/glsl-1.30/compiler/built-in-functions/op-bitor-ivec3-int.frag": { + "spec/glsl-1.10/execution/built-in-functions/vs-op-sub-float-mat2": { "_update": { - "time": 0.066723108291625977 + "time": 0.1791839599609375 } }, "spec/glsl-1.20/compiler/built-in-functions/transpose-mat2.frag": { @@ -31624,9 +31629,9 @@ "time": 0.39712905883789062 } }, - "spec/glsl-1.30/execution/built-in-functions/vs-op-bitor-uint-uvec4": { + "spec/glsl-1.10/execution/built-in-functions/vs-atan-vec4-vec4": { "_update": { - "time": 0.046233892440795898 + "time": 0.13117289543151855 } }, "spec/glsl-1.30/execution/built-in-functions/fs-min-uvec3-uint": { @@ -31699,9 +31704,9 @@ "time": 0.19692301750183105 } }, - "glean/glsl1-Addition": { + "spec/glsl-1.30/execution/built-in-functions/fs-op-div-uvec3-uvec3": { "_update": { - "time": 0.14677190780639648 + "time": 0.051265954971313477 } }, "spec/glsl-1.10/execution/variable-indexing/fs-temp-array-mat2-col-rd": { @@ -31804,9 +31809,9 @@ "time": 0.23005104064941406 } }, - "spec/glsl-1.20/execution/built-in-functions/fs-op-uplus-mat3x2": { + "spec/glsl-1.10/execution/variable-indexing/vs-uniform-array-mat4-index-col-rd": { "_update": { - "time": 0.16124701499938965 + "time": 0.13066411018371582 } }, "spec/glsl-1.20/compiler/built-in-functions/outerProduct-vec2-vec3.vert": { @@ -31819,9 +31824,9 @@ "time": 0.40358090400695801 } }, - "spec/glsl-1.20/compiler/built-in-functions/op-neg-vec3.vert": { + "spec/!OpenGL 2.0/vertex-program-two-side enabled front back front2 back2": { "_update": { - "time": 0.13554811477661133 + "time": 0.15159082412719727 } }, "spec/glsl-1.20/compiler/built-in-functions/op-add-mat3x4-mat3x4.frag": { @@ -31834,9 +31839,9 @@ "time": 0.079557895660400391 } }, - "spec/glsl-1.10/execution/variable-indexing/vs-uniform-array-mat4-row-rd": { + "spec/glsl-1.10/execution/variable-indexing/vs-varying-mat3-wr": { "_update": { - "time": 0.16309094429016113 + "time": 0.14901900291442871 } }, "spec/glsl-1.30/execution/built-in-functions/fs-op-lshift-uvec2-uvec2": { @@ -31924,14 +31929,14 @@ "time": 0.2597811222076416 } }, - "spec/glsl-1.10/execution/built-in-functions/fs-any-bvec3-using-if": { + "spec/glsl-1.30/compiler/built-in-functions/sinh-vec2.vert": { "_update": { - "time": 0.21677398681640625 + "time": 0.091425180435180664 } }, - "spec/glsl-1.20/execution/variable-indexing/vs-varying-array-mat2-index-col-wr": { + "spec/glsl-1.10/execution/built-in-functions/vs-op-eq-bool-bool": { "_update": { - "time": 0.25897216796875 + "time": 0.13918399810791016 } }, "spec/glsl-1.20/compiler/built-in-functions/log2-vec4.frag": { @@ -31969,9 +31974,9 @@ "time": 0.23125195503234863 } }, - "glean/vp1-LG2 test": { + "spec/glsl-1.10/execution/built-in-functions/vs-op-selection-bool-vec2-vec2": { "_update": { - "time": 0.18002104759216309 + "time": 0.18174219131469727 } }, "fbo/fbo-alphatest-formats": { @@ -32139,9 +32144,9 @@ "time": 0.047838926315307617 } }, - "shaders/glsl-array-compare-02": { + "spec/ARB_explicit_attrib_location/1.20/compiler/out-01.frag": { "_update": { - "time": 0.16457295417785645 + "time": 0.1719520092010498 } }, "shaders/fp-lit-src-equals-dst": { @@ -32174,9 +32179,9 @@ "time": 0.12102603912353516 } }, - "spec/glsl-1.30/preprocessor/if/if-arg-must-be-defined-01.frag": { + "bugs/fdo28551": { "_update": { - "time": 0.046392917633056641 + "time": 0.1101539134979248 } }, "glean/vp1-SLT test": { @@ -32194,9 +32199,9 @@ "time": 0.2445070743560791 } }, - "texturing/s3tc-texsubimage": { + "spec/glsl-1.30/execution/built-in-functions/fs-round-float": { "_update": { - "time": 0.11997509002685547 + "time": 0.058235883712768555 } }, "spec/glsl-1.10/execution/built-in-functions/vs-op-ge-float-float-using-if": { @@ -32209,9 +32214,9 @@ "time": 0.21902179718017578 } }, - "spec/glsl-1.00/compiler/precision-qualifiers/precision-float-02.frag": { + "spec/ARB_explicit_attrib_location/1.20/compiler/out-01.vert": { "_update": { - "time": 0.15745997428894043 + "time": 0.15198206901550293 } }, "spec/glsl-1.30/compiler/built-in-functions/op-div-uint-uvec3.frag": { @@ -32299,11 +32304,6 @@ "time": 0.15874791145324707 } }, - "bugs/r300-readcache": { - "_update": { - "time": 0.48407602310180664 - } - }, "hiz/hiz-stencil-read-fbo-d0-s8": { "_update": { "time": 0.21801900863647461 @@ -32319,9 +32319,9 @@ "time": 0.13169693946838379 } }, - "spec/glsl-1.30/compiler/built-in-functions/op-lshift-ivec4-ivec4.frag": { + "spec/glsl-1.10/execution/built-in-functions/vs-op-add-mat3-float": { "_update": { - "time": 0.23666095733642578 + "time": 0.16816997528076172 } }, "general/draw-instanced": { @@ -32359,9 +32359,9 @@ "time": 0.13340210914611816 } }, - "spec/glsl-1.20/compiler/built-in-functions/op-mult-mat4x3-mat3x4.frag": { + "spec/glsl-1.10/execution/variable-indexing/vs-temp-array-mat2-col-row-rd": { "_update": { - "time": 0.14741301536560059 + "time": 0.21581387519836426 } }, "spec/glsl-1.30/compiler/reserved/image1DArray.frag": { @@ -32429,9 +32429,9 @@ "time": 0.088392972946166992 } }, - "spec/glsl-1.30/compiler/built-in-functions/op-bitor-ivec4-ivec4.frag": { + "spec/glsl-1.30/compiler/keywords/samplerCubeShadow.frag": { "_update": { - "time": 0.056586980819702148 + "time": 0.11411809921264648 } }, "spec/glsl-1.10/compiler/samplers/nonuniform.frag": { @@ -32674,6 +32674,26 @@ "time": 0.22764205932617188 } }, + "spec/ARB_explicit_attrib_location/glsl-explicit-location-02": { + "_remove": { + "note": "Returncode was 1", + "errors": [ + "Couldn't stat program /home/matej/build/BUILD/piglit//tests/shaders/glsl-explicit-location-01.vert: No such file or directory", + "You can override the source dir by setting the PIGLIT_SOURCE_DIR environment variable." + ] + }, + "_update": { + "info": "Returncode: 0\n\nErrors:\n\n\nOutput:\n", + "returncode": 0, + "result": "pass", + "time": 0.15468621253967285 + } + }, + "spec/glsl-1.30/compiler/reserved/image2DArray.frag": { + "_update": { + "time": 0.069418907165527344 + } + }, "spec/glsl-1.10/execution/variable-indexing/fs-varying-array-mat3-index-row-rd": { "_update": { "time": 0.18767690658569336 @@ -32729,9 +32749,9 @@ "time": 0.12516903877258301 } }, - "spec/glsl-1.10/execution/built-in-functions/vs-op-sub-ivec3-ivec3": { + "glean/glsl1-varying var mismatch": { "_update": { - "time": 0.24155712127685547 + "time": 0.12322902679443359 } }, "spec/glsl-1.20/compiler/built-in-functions/op-add-int-int.vert": { @@ -32749,9 +32769,9 @@ "time": 0.20566511154174805 } }, - "spec/glsl-1.30/compiler/built-in-functions/op-mod-uvec3-uvec3.vert": { + "spec/glsl-1.30/compiler/built-in-functions/op-bitxor-uvec4-uint.frag": { "_update": { - "time": 0.096812963485717773 + "time": 0.14234209060668945 } }, "spec/glsl-1.20/compiler/built-in-functions/op-mult-mat4x2-vec4.vert": { @@ -32789,9 +32809,9 @@ "time": 0.10207009315490723 } }, - "spec/glsl-1.20/compiler/built-in-functions/op-selection-bool-mat4x2-mat4x2.vert": { + "spec/glsl-1.30/compiler/built-in-functions/max-uvec2-uint.vert": { "_update": { - "time": 0.15248799324035645 + "time": 0.12960100173950195 } }, "spec/EXT_transform_feedback/position-readback-bufferbase": { @@ -32804,9 +32824,9 @@ "time": 0.15205001831054688 } }, - "spec/glsl-1.10/execution/built-in-functions/fs-op-selection-bool-bool-bool-using-if": { + "spec/glsl-1.20/compiler/built-in-functions/op-selection-bool-mat3-mat3.vert": { "_update": { - "time": 0.11196780204772949 + "time": 0.074720859527587891 } }, "spec/glsl-1.20/compiler/built-in-functions/op-neg-mat2x4.frag": { @@ -32839,6 +32859,11 @@ "time": 0.1616520881652832 } }, + "spec/glsl-1.10/execution/variable-indexing/vs-varying-mat4-col-row-rd": { + "_update": { + "time": 0.32542085647583008 + } + }, "spec/glsl-1.10/execution/built-in-functions/vs-op-selection-bool-ivec2-ivec2": { "_update": { "time": 0.15725994110107422 @@ -32889,14 +32914,14 @@ "time": 0.05449986457824707 } }, - "spec/glsl-1.10/execution/variable-indexing/fs-uniform-array-mat2-index-row-rd": { + "spec/glsl-1.30/execution/built-in-functions/fs-op-div-uint-uint": { "_update": { - "time": 0.13642096519470215 + "time": 0.045335054397583008 } }, - "spec/glsl-1.20/compiler/built-in-functions/lessThanEqual-vec4-vec4.vert": { + "spec/glsl-1.20/compiler/built-in-functions/op-ne-float-float.frag": { "_update": { - "time": 0.071943998336791992 + "time": 0.19044399261474609 } }, "spec/glsl-1.20/compiler/structure-and-array-operations/array-equal-vector.vert": { @@ -32929,9 +32954,9 @@ "time": 0.25749707221984863 } }, - "spec/glsl-1.20/compiler/built-in-functions/op-sub-float-mat4x2.frag": { + "spec/glsl-1.20/compiler/built-in-functions/op-mult-mat4x3-vec4.vert": { "_update": { - "time": 0.10352897644042969 + "time": 0.14847517013549805 } }, "spec/EXT_transform_feedback/separate-attribs": { @@ -32944,9 +32969,9 @@ "time": 0.054572820663452148 } }, - "spec/glsl-1.20/execution/variable-indexing/vs-uniform-array-mat2-rd": { + "spec/glsl-1.20/compiler/built-in-functions/any-bvec3.frag": { "_update": { - "time": 0.19020199775695801 + "time": 0.14584493637084961 } }, "spec/glsl-1.10/execution/built-in-functions/fs-mix-float-float-float": { @@ -33029,14 +33054,14 @@ "time": 0.18689298629760742 } }, - "general/gl30basic": { + "spec/glsl-1.10/linker/override-builtin-const-06": { "_update": { - "time": 0.18033385276794434 + "time": 0.23534584045410156 } }, - "spec/glsl-1.10/linker/override-builtin-const-07": { + "spec/ARB_explicit_attrib_location/1.10/compiler/layout-07.frag": { "_update": { - "time": 0.22544097900390625 + "time": 0.15503501892089844 } }, "spec/glsl-1.10/execution/built-in-functions/vs-op-mult-mat3-vec3": { @@ -33079,14 +33104,14 @@ "time": 0.19014811515808105 } }, - "glean/glsl1-&& operator, short-circuit": { + "spec/ARB_shader_texture_lod/compiler/tex_lod-08.frag": { "_update": { - "time": 0.18510007858276367 + "time": 0.17319798469543457 } }, - "spec/glsl-1.20/compiler/built-in-functions/asin-float.vert": { + "spec/ARB_depth_buffer_float/fbo-stencil-GL_DEPTH32F_STENCIL8-clear": { "_update": { - "time": 0.10732316970825195 + "time": 0.082968950271606445 } }, "spec/!OpenGL 2.0/vertex-program-two-side enabled back front2": { @@ -33114,14 +33139,14 @@ "time": 0.13012599945068359 } }, - "spec/ARB_shader_texture_lod/compiler/tex_lod-02.frag": { + "spec/EXT_transform_feedback/position-render-bufferrange": { "_update": { - "time": 0.19283008575439453 + "time": 0.085337162017822266 } }, - "spec/ARB_draw_elements_base_vertex/draw-elements-base-vertex": { + "spec/glsl-1.30/compiler/precision-qualifiers/precision-literal-const-01.frag": { "_update": { - "time": 0.32623505592346191 + "time": 0.10618019104003906 } }, "spec/glsl-1.20/compiler/built-in-functions/op-mult-mat3-mat4x3.vert": { @@ -33189,9 +33214,9 @@ "time": 0.14725804328918457 } }, - "spec/glsl-1.20/compiler/structure-and-array-operations/array-attribute.vert": { + "spec/glsl-1.20/compiler/built-in-functions/max-vec2-float.frag": { "_update": { - "time": 0.12335205078125 + "time": 0.17759990692138672 } }, "spec/glsl-1.20/execution/variable-indexing/fs-uniform-array-mat4-index-rd": { @@ -33319,9 +33344,9 @@ "time": 0.20345401763916016 } }, - "spec/glsl-1.20/compiler/built-in-functions/op-add-mat3x4-mat3x4.vert": { + "spec/ARB_shader_stencil_export/amd-undefined.frag": { "_update": { - "time": 0.079519987106323242 + "time": 0.14235591888427734 } }, "glean/glsl1-varying variable": { @@ -33334,9 +33359,9 @@ "time": 0.11577510833740234 } }, - "shaders/glsl-const-builtin-ceil": { + "spec/glsl-1.20/execution/vs-outerProduct-const-mat3-ivec": { "_update": { - "time": 0.14552807807922363 + "time": 0.28511905670166016 } }, "spec/glsl-1.30/execution/built-in-functions/vs-op-lshift-uvec4-int": { @@ -33344,9 +33369,9 @@ "time": 0.079046010971069336 } }, - "spec/glsl-1.10/execution/built-in-functions/fs-dot-vec4-vec4": { + "spec/glsl-1.20/compiler/built-in-functions/mod-vec3-vec3.frag": { "_update": { - "time": 0.28076887130737305 + "time": 0.21821284294128418 } }, "spec/glsl-1.30/compiler/built-in-functions/clamp-ivec3-int-int.vert": { @@ -33374,9 +33399,9 @@ "time": 0.058300971984863281 } }, - "spec/glsl-1.20/execution/built-in-functions/fs-op-mult-float-mat4x2": { + "spec/glsl-1.20/compiler/built-in-functions/op-mult-mat4x2-float.frag": { "_update": { - "time": 0.21823382377624512 + "time": 0.16686797142028809 } }, "spec/EXT_texture_snorm/texwrap-2D-GL_RGB16_SNORM-bordercolor": { @@ -33434,9 +33459,9 @@ "time": 0.13716816902160645 } }, - "spec/glsl-1.30/execution/built-in-functions/vs-op-ne-uvec4-uvec4-using-if": { + "spec/glsl-1.20/execution/built-in-functions/vs-op-mult-mat4-mat2x4": { "_update": { - "time": 0.051195144653320312 + "time": 0.16473698616027832 } }, "spec/glsl-1.10/execution/built-in-functions/fs-degrees-float": { @@ -33509,14 +33534,14 @@ "time": 0.13328385353088379 } }, - "spec/glsl-1.10/execution/variable-indexing/vs-temp-array-mat2-wr": { + "spec/glsl-1.10/execution/built-in-functions/vs-op-div-int-ivec4": { "_update": { - "time": 0.19779610633850098 + "time": 0.25446009635925293 } }, - "spec/glsl-1.10/execution/built-in-functions/vs-op-div-int-ivec2": { + "spec/ARB_explicit_attrib_location/1.10/compiler/layout-08.frag": { "_update": { - "time": 0.23489594459533691 + "time": 0.15688514709472656 } }, "spec/glsl-1.10/execution/built-in-functions/vs-op-div-int-ivec3": { @@ -33627,9 +33652,9 @@ "time": 0.17786598205566406 } }, - "bugs/fdo24066": { + "spec/glsl-1.30/compiler/built-in-functions/op-bitxor-int-ivec2.frag": { "_update": { - "time": 0.13851189613342285 + "time": 0.094392061233520508 } }, "spec/glsl-1.20/compiler/built-in-functions/step-vec2-vec2.vert": { @@ -33642,9 +33667,9 @@ "time": 0.18277597427368164 } }, - "shaders/glsl-fs-lots-of-tex": { + "spec/glsl-1.10/execution/variable-indexing/vs-varying-mat3-col-row-wr": { "_update": { - "time": 0.14463114738464355 + "time": 0.26021218299865723 } }, "spec/glsl-1.20/compiler/built-in-functions/op-sub-mat4x3-mat4x3.frag": { @@ -33697,14 +33722,14 @@ "time": 0.11911201477050781 } }, - "spec/glsl-1.30/compiler/built-in-functions/asinh-vec4.vert": { + "spec/glsl-1.30/execution/built-in-functions/vs-op-bitxor-ivec3-ivec3": { "_update": { - "time": 0.072390079498291016 + "time": 0.046481132507324219 } }, - "spec/glsl-1.30/compiler/storage-qualifiers/static-write-centroid-in-01.frag": { + "spec/glsl-1.20/compiler/built-in-functions/op-sub-vec3-vec3.frag": { "_update": { - "time": 0.13756895065307617 + "time": 0.1248161792755127 } }, "spec/glsl-1.20/recursion/unreachable": { @@ -33717,11 +33742,6 @@ "time": 0.082711219787597656 } }, - "spec/glsl-1.30/compiler/built-in-functions/greaterThanEqual-uvec3-uvec3.frag": { - "_update": { - "time": 0.18243694305419922 - } - }, "spec/glsl-1.30/compiler/built-in-functions/op-mod-int-ivec2.frag": { "_update": { "time": 0.11854910850524902 @@ -33842,11 +33862,6 @@ "time": 0.19780993461608887 } }, - "spec/glsl-1.30/preprocessor/reserved/double-underscore-01.frag": { - "_update": { - "time": 0.055937051773071289 - } - }, "spec/glsl-1.10/execution/built-in-functions/fs-asin-vec2": { "_update": { "time": 0.18078207969665527 @@ -33857,14 +33872,14 @@ "time": 0.21214699745178223 } }, - "spec/glsl-1.10/execution/variable-indexing/vs-varying-mat4-col-row-rd": { + "spec/glsl-1.30/compiler/built-in-functions/op-complement-int.frag": { "_update": { - "time": 0.32542085647583008 + "time": 0.13908004760742188 } }, - "spec/glsl-1.20/compiler/built-in-functions/abs-vec3.frag": { + "glean/glsl1-Preprocessor test 12 (#elif)": { "_update": { - "time": 0.16800594329833984 + "time": 0.13571715354919434 } }, "shaders/glsl-const-builtin-sign": { @@ -33942,14 +33957,19 @@ "time": 0.14247608184814453 } }, - "spec/glsl-1.30/execution/built-in-functions/fs-op-sub-uvec4-uint": { + "spec/glsl-1.30/compiler/built-in-functions/op-lshift-uvec3-uint.frag": { "_update": { - "time": 0.044140100479125977 + "time": 0.13781285285949707 } }, - "spec/ARB_depth_buffer_float/fbo-depthstencil-GL_DEPTH32F_STENCIL8-clear": { + "spec/ARB_shader_texture_lod/compiler/tex_grad-04.frag": { "_update": { - "time": 0.091790199279785156 + "time": 0.22158598899841309 + } + }, + "spec/glsl-1.10/execution/built-in-functions/vs-sin-vec2": { + "_update": { + "time": 0.1660301685333252 } }, "spec/glsl-1.10/execution/built-in-functions/fs-op-add-float-float": { @@ -33957,9 +33977,9 @@ "time": 0.19991397857666016 } }, - "spec/!OpenGL 1.1/texwrap-2D-GL_ALPHA12-bordercolor": { + "spec/glsl-1.00/compiler/precision-qualifiers/precision-vs-highp-01.vert": { "_update": { - "time": 0.29084491729736328 + "time": 0.16641783714294434 } }, "spec/glsl-1.30/compiler/built-in-functions/equal-uvec4-uvec4.vert": { @@ -33987,9 +34007,9 @@ "time": 0.091261148452758789 } }, - "spec/glsl-1.20/compiler/qualifiers/inout-01.vert": { + "spec/glsl-1.10/execution/built-in-functions/vs-op-sub-mat3-mat3": { "_update": { - "time": 0.046383142471313477 + "time": 0.23678994178771973 } }, "spec/glsl-1.10/execution/built-in-functions/fs-op-ne-bvec4-bvec4": { @@ -34092,9 +34112,9 @@ "time": 0.11186790466308594 } }, - "spec/glsl-1.20/compiler/built-in-functions/tan-float.vert": { + "glean/glsl1-function with early return (4)": { "_update": { - "time": 0.11168193817138672 + "time": 0.14887499809265137 } }, "spec/glsl-1.30/compiler/keywords/continue.frag": { @@ -34167,9 +34187,9 @@ "time": 0.21798992156982422 } }, - "spec/glsl-1.10/execution/built-in-functions/fs-op-div-int-int": { + "spec/glsl-1.30/compiler/built-in-functions/op-rshift-ivec2-int.frag": { "_update": { - "time": 0.14468502998352051 + "time": 0.089838027954101562 } }, "spec/glsl-1.30/execution/clipping/fs-clip-distance-explicitly-sized": { @@ -34192,19 +34212,9 @@ "time": 0.13313412666320801 } }, - "spec/ARB_explicit_attrib_location/glsl-explicit-location-02": { - "_remove": { - "note": "Returncode was 1", - "errors": [ - "Couldn't stat program /home/matej/build/BUILD/piglit//tests/shaders/glsl-explicit-location-01.vert: No such file or directory", - "You can override the source dir by setting the PIGLIT_SOURCE_DIR environment variable." - ] - }, + "spec/glsl-1.30/compiler/basic-types/assign-implicit-conversion-ivec2-uvec2.vert": { "_update": { - "info": "Returncode: 0\n\nErrors:\n\n\nOutput:\n", - "returncode": 0, - "result": "pass", - "time": 0.15468621253967285 + "time": 0.077860116958618164 } }, "shaders/glsl-invalid-asm-01": { @@ -34232,9 +34242,9 @@ "time": 0.29687714576721191 } }, - "spec/glsl-1.20/compiler/qualifiers/fn-inout-array-allowed.frag": { + "spec/glsl-1.20/compiler/built-in-functions/max-float-float.vert": { "_update": { - "time": 0.19984698295593262 + "time": 0.15725803375244141 } }, "spec/glsl-1.10/execution/built-in-functions/fs-op-eq-bvec2-bvec2-using-if": { @@ -34252,9 +34262,9 @@ "time": 0.12726807594299316 } }, - "spec/EXT_texture_compression_latc/fbo-generatemipmap-formats-signed": { + "spec/glsl-1.20/execution/variable-indexing/fs-temp-array-mat3-wr": { "_update": { - "time": 0.050770044326782227 + "time": 0.27863216400146484 } }, "spec/glsl-1.10/execution/built-in-functions/fs-greaterThanEqual-vec3-vec3": { @@ -34307,9 +34317,9 @@ "time": 0.13666200637817383 } }, - "spec/ARB_texture_rectangle/texwrap-RECT": { + "spec/glsl-1.20/execution/built-in-functions/vs-op-uplus-mat2x4": { "_update": { - "time": 0.30951499938964844 + "time": 0.20556902885437012 } }, "spec/glsl-1.20/execution/built-in-functions/vs-op-uplus-mat2x3": { @@ -34342,9 +34352,9 @@ "time": 0.47917985916137695 } }, - "spec/glsl-1.10/execution/variable-indexing/fs-temp-mat2-col-rd": { + "spec/glsl-1.30/compiler/built-in-functions/op-bitand-uint-uint.frag": { "_update": { - "time": 0.1833798885345459 + "time": 0.11915111541748047 } }, "spec/glsl-1.10/execution/built-in-functions/vs-atan-vec2": { @@ -34357,9 +34367,9 @@ "time": 0.2840430736541748 } }, - "spec/EXT_packed_depth_stencil/fbo-generatemipmap-formats": { + "spec/glsl-1.10/compiler/qualifiers/in-02.vert": { "_update": { - "time": 0.49542617797851562 + "time": 0.11915493011474609 } }, "spec/glsl-1.20/compiler/built-in-functions/op-mult-mat2x3-vec2.vert": { @@ -34377,19 +34387,14 @@ "time": 0.13631701469421387 } }, - "spec/glsl-1.30/compiler/built-in-functions/op-lshift-ivec2-uvec2.vert": { - "_update": { - "time": 0.11888408660888672 - } - }, - "spec/glsl-1.10/compiler/expressions/invalid-equality-02.vert": { + "spec/glsl-1.30/preprocessor/reserved/double-underscore-01.frag": { "_update": { - "time": 0.081512928009033203 + "time": 0.055937051773071289 } }, - "spec/glsl-1.30/execution/built-in-functions/fs-op-rshift-uvec3-int": { + "spec/glsl-1.30/execution/built-in-functions/vs-greaterThan-uvec2-uvec2": { "_update": { - "time": 0.049025058746337891 + "time": 0.1042790412902832 } }, "spec/glsl-1.20/execution/variable-indexing/fs-uniform-mat3-row-rd": { @@ -34402,9 +34407,9 @@ "time": 0.17400813102722168 } }, - "spec/glsl-1.20/execution/built-in-functions/fs-op-eq-mat2x3-mat2x3": { + "spec/glsl-1.30/compiler/built-in-functions/op-rshift-ivec4-uint.vert": { "_update": { - "time": 0.18626189231872559 + "time": 0.12300395965576172 } }, "spec/glsl-1.10/execution/variable-indexing/fs-temp-mat3-rd": { @@ -34487,9 +34492,9 @@ "time": 0.1831200122833252 } }, - "general/point-line-no-cull": { + "spec/glsl-1.20/execution/vs-outerProduct-const-mat2-ivec": { "_update": { - "time": 0.21175193786621094 + "time": 0.2539830207824707 } }, "spec/glsl-1.10/execution/variable-indexing/fs-varying-array-mat4-index-col-row-rd": { @@ -34497,11 +34502,6 @@ "time": 0.14209794998168945 } }, - "spec/glsl-1.30/compiler/built-in-functions/op-mod-ivec2-int.frag": { - "_update": { - "time": 0.069983005523681641 - } - }, "spec/EXT_transform_feedback/interleaved-attribs": { "_update": { "time": 0.083756923675537109 @@ -34542,9 +34542,9 @@ "time": 0.16753911972045898 } }, - "spec/glsl-1.20/compiler/built-in-functions/acos-vec2.frag": { + "spec/glsl-1.30/execution/built-in-functions/vs-op-rshift-uvec4-ivec4": { "_update": { - "time": 0.11832094192504883 + "time": 0.049284934997558594 } }, "spec/glsl-1.30/compiler/built-in-functions/op-mod-uint-uvec3.vert": { @@ -34572,9 +34572,9 @@ "time": 0.058042049407958984 } }, - "spec/glsl-1.30/execution/built-in-functions/vs-op-add-uvec2-uvec2": { + "glean/glsl1-shadow2D(): 2": { "_update": { - "time": 0.047838926315307617 + "time": 0.1859900951385498 } }, "glean/glsl1-shadow2D(): 3": { @@ -34607,14 +34607,14 @@ "time": 0.16376495361328125 } }, - "spec/glsl-1.20/execution/clipping/vs-clip-vertex-homogeneity": { + "spec/glsl-1.30/compiler/built-in-functions/min-uvec3-uvec3.vert": { "_update": { - "time": 0.17792797088623047 + "time": 0.10086297988891602 } }, - "spec/ARB_shader_texture_lod/compiler/tex_grad-18.vert": { + "spec/glsl-1.30/compiler/reserved/dvec4.frag": { "_update": { - "time": 0.13075494766235352 + "time": 0.13079309463500977 } }, "hiz/hiz-depth-test-fbo-d24-s0": { @@ -34877,9 +34877,9 @@ "time": 0.27498602867126465 } }, - "shaders/glsl-const-builtin-sin": { + "spec/glsl-1.30/compiler/built-in-functions/op-complement-uvec3.vert": { "_update": { - "time": 0.28673481941223145 + "time": 0.062072038650512695 } }, "spec/glsl-1.20/execution/variable-indexing/vs-temp-array-mat4-row-wr": { @@ -34912,14 +34912,14 @@ "time": 0.22842502593994141 } }, - "spec/glsl-1.20/execution/variable-indexing/fs-varying-array-mat2-col-rd": { + "spec/glsl-1.10/execution/built-in-functions/fs-op-div-mat4-mat4": { "_update": { - "time": 0.30247616767883301 + "time": 0.14344000816345215 } }, - "spec/ARB_shader_texture_lod/compiler/tex_grad-03.frag": { + "spec/glsl-1.20/compiler/built-in-functions/transpose-mat3x4.frag": { "_update": { - "time": 0.16913986206054688 + "time": 0.11567783355712891 } }, "spec/glsl-1.20/compiler/built-in-functions/not-bvec4.frag": { @@ -35017,9 +35017,9 @@ "time": 0.17499518394470215 } }, - "spec/glsl-1.20/execution/variable-indexing/fs-varying-array-mat3-index-col-rd": { + "spec/glsl-1.00/compiler/qualifiers/fn-out-array-allowed-cstyle.vert": { "_update": { - "time": 0.1430351734161377 + "time": 0.25611996650695801 } }, "spec/glsl-1.30/execution/clipping/vs-clip-distance-inout-param": { @@ -35062,14 +35062,14 @@ "time": 0.21009397506713867 } }, - "spec/glsl-1.20/execution/variable-indexing/vs-temp-array-mat2-index-row-wr": { + "spec/glsl-1.10/compiler/expressions/invalid-logic-not-02.vert": { "_update": { - "time": 0.21440792083740234 + "time": 0.16037607192993164 } }, - "glean/glsl1-Swizzle": { + "spec/glsl-1.20/compiler/built-in-functions/floor-vec2.frag": { "_update": { - "time": 0.16532087326049805 + "time": 0.13423895835876465 } }, "spec/glsl-1.30/compiler/built-in-functions/op-rshift-uvec4-int.vert": { @@ -35157,9 +35157,9 @@ "time": 0.18961906433105469 } }, - "glean/glsl1-matrix, vector multiply (3)": { + "shaders/glsl-array-bounds-04": { "_update": { - "time": 0.1929621696472168 + "time": 0.14214992523193359 } }, "spec/glsl-1.30/execution/built-in-functions/fs-op-rshift-ivec3-ivec3": { @@ -35177,9 +35177,9 @@ "time": 0.047320842742919922 } }, - "spec/glsl-1.30/execution/fs-texture-sampler2dshadow-02": { + "spec/glsl-1.30/compiler/built-in-functions/op-mod-ivec2-int.frag": { "_update": { - "time": 0.045221090316772461 + "time": 0.069983005523681641 } }, "spec/glsl-1.30/compiler/built-in-functions/op-bitxor-uvec3-uvec3.vert": { @@ -35187,9 +35187,9 @@ "time": 0.13688802719116211 } }, - "spec/glsl-1.10/execution/built-in-functions/fs-clamp-vec2-float-float": { + "shaders/glsl-array-bounds-03": { "_update": { - "time": 0.2602999210357666 + "time": 0.20382094383239746 } }, "spec/glsl-1.20/compiler/built-in-functions/all-bvec3.frag": { @@ -35282,9 +35282,9 @@ "time": 0.25735998153686523 } }, - "spec/glsl-1.10/execution/variable-indexing/vs-varying-mat2-col-wr": { + "spec/glsl-1.10/execution/built-in-functions/fs-length-vec3": { "_update": { - "time": 0.21278786659240723 + "time": 0.21349382400512695 } }, "spec/glsl-1.10/execution/built-in-functions/fs-length-vec2": { @@ -35362,9 +35362,9 @@ "time": 0.23929214477539062 } }, - "spec/glsl-1.10/execution/built-in-functions/vs-op-sub-float-mat2": { + "spec/glsl-1.30/compiler/built-in-functions/op-bitor-ivec3-int.frag": { "_update": { - "time": 0.1791839599609375 + "time": 0.066723108291625977 } }, "spec/glsl-1.10/execution/built-in-functions/vs-op-sub-float-mat3": { @@ -35497,9 +35497,9 @@ "time": 0.049147129058837891 } }, - "spec/glsl-1.30/compiler/reserved/image2DArray.frag": { + "bugs/r300-readcache": { "_update": { - "time": 0.069418907165527344 + "time": 0.48407602310180664 } }, "spec/glsl-1.20/execution/variable-indexing/vs-temp-array-mat2-row-rd": { @@ -35667,9 +35667,9 @@ "time": 0.1116180419921875 } }, - "general/quad-invariance": { + "glean/glsl1-gl_FrontFacing var (1)": { "_update": { - "time": 0.25471210479736328 + "time": 0.16040897369384766 } }, "spec/glsl-1.20/compiler/built-in-functions/equal-bvec4-bvec4.frag": { @@ -35722,9 +35722,9 @@ "time": 0.24575614929199219 } }, - "spec/glsl-1.20/execution/vs-outerProduct-const-mat3-ivec": { + "shaders/glsl-const-builtin-ceil": { "_update": { - "time": 0.28511905670166016 + "time": 0.14552807807922363 } }, "spec/glsl-1.20/compiler/built-in-functions/op-mult-mat4x2-mat2x4.frag": { @@ -35782,9 +35782,9 @@ "time": 0.047440052032470703 } }, - "spec/glsl-1.20/compiler/built-in-functions/op-sub-vec3-vec3.frag": { + "spec/glsl-1.30/compiler/storage-qualifiers/static-write-centroid-in-01.frag": { "_update": { - "time": 0.1248161792755127 + "time": 0.13756895065307617 } }, "spec/glsl-1.20/compiler/built-in-functions/op-mult-ivec4-int.frag": { @@ -35882,9 +35882,9 @@ "time": 0.14962983131408691 } }, - "spec/glsl-1.10/execution/built-in-functions/fs-sin-vec4": { + "spec/glsl-1.10/compiler/expressions/invalid-equality-02.vert": { "_update": { - "time": 0.17536401748657227 + "time": 0.081512928009033203 } }, "spec/glsl-1.20/compiler/built-in-functions/op-mult-mat4-mat4.vert": { @@ -35917,9 +35917,9 @@ "time": 0.18207406997680664 } }, - "spec/glsl-1.20/execution/built-in-functions/vs-op-ne-mat2x4-mat2x4-using-if": { + "spec/glsl-1.30/execution/built-in-functions/vs-op-div-uvec4-uvec4": { "_update": { - "time": 0.2609250545501709 + "time": 0.05807805061340332 } }, "spec/glsl-1.30/compiler/built-in-functions/op-add-uvec4-uvec4.vert": { @@ -36072,9 +36072,9 @@ "time": 0.11653614044189453 } }, - "texturing/depth-tex-modes": { + "spec/glsl-1.30/execution/built-in-functions/vs-op-bitand-ivec4-ivec4": { "_update": { - "time": 0.23485708236694336 + "time": 0.046168088912963867 } }, "spec/glsl-1.30/compiler/built-in-functions/round-vec4.vert": { @@ -36112,9 +36112,9 @@ "time": 0.23422122001647949 } }, - "shaders/glsl-light-model": { + "spec/glsl-1.10/execution/variable-indexing/fs-varying-mat2-col-row-rd": { "_update": { - "time": 0.41177606582641602 + "time": 0.18882989883422852 } }, "spec/glsl-1.30/execution/built-in-functions/fs-op-bitxor-uvec3-uint": { @@ -36122,9 +36122,9 @@ "time": 0.058926105499267578 } }, - "spec/glsl-1.10/execution/variable-indexing/fs-varying-mat2-col-row-rd": { + "shaders/glsl-light-model": { "_update": { - "time": 0.18882989883422852 + "time": 0.41177606582641602 } } } diff --git a/test_json_diff.py b/test_json_diff.py index 2d073ea..a4f40e4 100644 --- a/test_json_diff.py +++ b/test_json_diff.py @@ -35,18 +35,6 @@ class OurTestCase(unittest.TestCase): "\n\nexpected = %s\n\nobserved = %s" % (expected, diff)) -#class TestUtilities(unittest.TestCase): -# def test_is_dict_interesting(self): -# diffator = json_diff.Comparator(StringIO(NESTED_OLD), StringIO(NESTED_NEW), -# included_attrs=('nome',)) -# old_res = diffator.dict_no_key_included(diffator.obj1) -# self.assertFalse(old_res, -# "check whether the old dict should be excluded or not") # or True? FIXME -# new_res = diffator.dict_no_key_included(diffator.obj2) -# self.assertFalse(new_res, -# "check whether the new dict should be excluded or not") # or True? FIXME - - class TestBasicJSONHappyPath(OurTestCase): def test_empty(self): diffator = json_diff.Comparator({}, {}) @@ -106,11 +94,11 @@ class TestBasicJSONHappyPath(OurTestCase): def test_nested_excluded(self): self._run_test_strings(NESTED_OLD, NESTED_NEW, NESTED_DIFF_EXCL, - "Nested objects diff.", exc=("nome",)) + "Nested objects diff with exclusion.", exc=("nome",)) -# def test_nested_included(self): -# self._run_test_strings(NESTED_OLD, NESTED_NEW, NESTED_DIFF_INCL, -# "Nested objects diff.", inc=("nome",)) + def test_nested_included(self): + self._run_test_strings(NESTED_OLD, NESTED_NEW, NESTED_DIFF_INCL, + "Nested objects diff.", inc=("nome",)) class TestBasicJSONSadPath(OurTestCase): def test_no_JSON(self): @@ -127,12 +115,10 @@ class TestBasicJSONSadPath(OurTestCase): '{"a": 01}', '{"a": 2}', '{"_update": {"a": 2}}', "Octal numbers not supported") - -#class TestPiglitData(OurTestCase): -# pass -# def test_piglit_results(self): -# self._run_test(open("test/old-testing-data.json"), open("test/new-testing-data.json"), -# open("test/diff-testing-data.json"), "Large piglit results diff.") +# class TestPiglitData(OurTestCase): +# def test_piglit_results(self): +# self._run_test(open("test/old-testing-data.json"), open("test/new-testing-data.json"), +# open("test/diff-testing-data.json"), "Large piglit results diff.") if __name__ == "__main__": unittest.main() |