Commit ba162708 by Brandon Jones Committed by Commit Bot

Fix entry point generation on non-Windows

In "Implement EGL_ANGLE_explicit_context", backslashes were introduced in a file path, which broke generation on non-Windows machines. This fixes the issue. Bug:angleproject:1395 Change-Id: I188c42c2a92afec37d7cb7dac5bffd7e855a0d2b Reviewed-on: https://chromium-review.googlesource.com/1072509Reviewed-by: 's avatarGeoff Lang <geofflang@chromium.org> Commit-Queue: Geoff Lang <geofflang@chromium.org>
parent 9d4277b0
...@@ -589,7 +589,7 @@ def write_glext_explicit_context_inc(version, ptrs, protos): ...@@ -589,7 +589,7 @@ def write_glext_explicit_context_inc(version, ptrs, protos):
function_pointers = ptrs, function_pointers = ptrs,
function_prototypes = protos) function_prototypes = protos)
path = path_to("..\include\GLES{}".format(folder_version), path = path_to("../include/GLES{}".format(folder_version),
"gl{}ext_explicit_context_autogen.inc".format(version)) "gl{}ext_explicit_context_autogen.inc".format(version))
with open(path, "w") as out: with open(path, "w") as out:
......
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