Commit 0fa6c307 by Cody Northrop Committed by Commit Bot

Enable ES 3.2 in ANGLE's loader

Test: Capture and replay ES 3.2 apps Bug: angleproject:5652 Change-Id: I2dac84d3cf6534ee1b10889ba1312ae247ae8f62 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2698391Reviewed-by: 's avatarShahbaz Youssefi <syoussefi@chromium.org> Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Commit-Queue: Cody Northrop <cnorthrop@google.com>
parent c7ae5d28
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
"scripts/egl_angle_ext.xml": "scripts/egl_angle_ext.xml":
"5bcc01462b355d933cf3ada15198fb68", "5bcc01462b355d933cf3ada15198fb68",
"scripts/generate_loader.py": "scripts/generate_loader.py":
"ef16088fdf3e7e97132f7737d20f563a", "407b69ec2eaddef2af55fbbca4b8d684",
"scripts/gl.xml": "scripts/gl.xml":
"f66967f3f3d696b5d8306fd80bbd49a8", "f66967f3f3d696b5d8306fd80bbd49a8",
"scripts/gl_angle_ext.xml": "scripts/gl_angle_ext.xml":
...@@ -22,17 +22,17 @@ ...@@ -22,17 +22,17 @@
"src/tests/restricted_traces/trace_egl_loader_autogen.h": "src/tests/restricted_traces/trace_egl_loader_autogen.h":
"dcce4c5aa0e6d66fd5856349a4f75d1e", "dcce4c5aa0e6d66fd5856349a4f75d1e",
"src/tests/restricted_traces/trace_gles_loader_autogen.cpp": "src/tests/restricted_traces/trace_gles_loader_autogen.cpp":
"16df8f02e302bc0b240156530c245c46", "14e4834c55af27b8def62b05b897e5c4",
"src/tests/restricted_traces/trace_gles_loader_autogen.h": "src/tests/restricted_traces/trace_gles_loader_autogen.h":
"c8b37aaf84aff62ccba016119baeff1d", "455d4a26b7011aecf44223d2cb4e83c2",
"util/egl_loader_autogen.cpp": "util/egl_loader_autogen.cpp":
"947db421a3f13cbc2760fa3ea4f6a4bf", "947db421a3f13cbc2760fa3ea4f6a4bf",
"util/egl_loader_autogen.h": "util/egl_loader_autogen.h":
"7dedb95af3ff96cd0dcfe12f844654bb", "7dedb95af3ff96cd0dcfe12f844654bb",
"util/gles_loader_autogen.cpp": "util/gles_loader_autogen.cpp":
"f5d53d4c15eb41884fb79ea131e18a92", "709e751ee4f688b77ba644746998a2ea",
"util/gles_loader_autogen.h": "util/gles_loader_autogen.h":
"779ce824a75809d95ce9826d5aac36ee", "0c1523fd1e58708f6cc90945f5989eee",
"util/windows/wgl_loader_autogen.cpp": "util/windows/wgl_loader_autogen.cpp":
"0f2e2d64ab53d79001901fc63b94c928", "0f2e2d64ab53d79001901fc63b94c928",
"util/windows/wgl_loader_autogen.h": "util/windows/wgl_loader_autogen.h":
......
...@@ -142,7 +142,7 @@ def gen_gles_loader(gles_preamble, path, header_lib, export, internal_prefix, fi ...@@ -142,7 +142,7 @@ def gen_gles_loader(gles_preamble, path, header_lib, export, internal_prefix, fi
# First run through the main GLES entry points. Since ES2+ is the primary use # First run through the main GLES entry points. Since ES2+ is the primary use
# case, we go through those first and then add ES1-only APIs at the end. # case, we go through those first and then add ES1-only APIs at the end.
for major_version, minor_version in [[2, 0], [3, 0], [3, 1], [1, 0]]: for major_version, minor_version in [[2, 0], [3, 0], [3, 1], [3, 2], [1, 0]]:
annotation = "{}_{}".format(major_version, minor_version) annotation = "{}_{}".format(major_version, minor_version)
name_prefix = "GL_ES_VERSION_" name_prefix = "GL_ES_VERSION_"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment