Commit 5d0a30bf by Jamie Madill Committed by Commit Bot

Fix warnings in TransformFeedbackTest.

Introduced in cd2ed608. BUG=angleproject:1570 Change-Id: I71ef8a06e379eca853e7729863976e868066df95 Reviewed-on: https://chromium-review.googlesource.com/403313Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Commit-Queue: Jamie Madill <jmadill@chromium.org>
parent 51c4768b
......@@ -746,8 +746,8 @@ TEST_P(TransformFeedbackTest, PackingBug)
std::vector<Vector2> attrib2Data;
int counter = 0;
for (size_t i = 0; i < 6; i++) {
attrib1Data.push_back(Vector2(counter + 0, counter + 1));
attrib2Data.push_back(Vector2(counter + 2, counter + 3));
attrib1Data.push_back(Vector2(counter + 0.0f, counter + 1.0f));
attrib2Data.push_back(Vector2(counter + 2.0f, counter + 3.0f));
counter += 4;
}
......
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