Commit ff161f83 by Jamie Madill Committed by Commit Bot

Fix EP generation event output format for uint.

This should be %u not %d. BUG=angleproject:1309 Change-Id: I1fe1b8df9ea4f9123fc05e9ff58afa1f7723692c Reviewed-on: https://chromium-review.googlesource.com/636521Reviewed-by: 's avatarCorentin Wallez <cwallez@chromium.org> Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Commit-Queue: Jamie Madill <jmadill@chromium.org>
parent a42a4e5e
...@@ -142,7 +142,7 @@ format_dict = { ...@@ -142,7 +142,7 @@ format_dict = {
"GLsizei": "%d", "GLsizei": "%d",
"GLsizeiptr": "%d", "GLsizeiptr": "%d",
"GLsync": "0x%0.8p", "GLsync": "0x%0.8p",
"GLuint": "%d", "GLuint": "%u",
"GLuint64": "%llu" "GLuint64": "%llu"
} }
......
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