Commit 65ccbd71 by Cody Northrop Committed by Commit Bot

Capture/Replay: Fix 1010102 vertex attrib type name

The string for VertexAttribType::Int2101010 was wrong, similar to the fix in ffb31229. Test: Capture and replay first 1200 frames of COD. Bug: b/164426913 Bug: angleproject:4048 Change-Id: I86a9ad844cde211d8273840ef7e8ecb055521316 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2357170Reviewed-by: 's avatarMohan Maiya <m.maiya@samsung.com> Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Commit-Queue: Cody Northrop <cnorthrop@google.com>
parent 064bbf29
...@@ -381,7 +381,7 @@ std::ostream &operator<<(std::ostream &os, VertexAttribType value) ...@@ -381,7 +381,7 @@ std::ostream &operator<<(std::ostream &os, VertexAttribType value)
os << "GL_INT"; os << "GL_INT";
break; break;
case VertexAttribType::Int2101010: case VertexAttribType::Int2101010:
os << "GL_INT_10_10_10_2"; os << "GL_INT_2_10_10_10_REV";
break; break;
case VertexAttribType::Int1010102: case VertexAttribType::Int1010102:
os << "GL_INT_10_10_10_2_OES"; os << "GL_INT_10_10_10_2_OES";
......
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