Commit 4360c6b9 by Cody Northrop Committed by Commit Bot

Perf: Ensure last frame is replayed for traces

This is now required for upcoming buffer mapping resets. Test: Angry Birds 2 MEC Bug: b/157672184 Change-Id: I6358acf42ca9b92bfff621f12f207be7c3655e52 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2231801Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Commit-Queue: Cody Northrop <cnorthrop@google.com>
parent 66ec30a7
......@@ -182,7 +182,7 @@ void TracePerfTest::drawBenchmark()
startGpuTimer();
for (uint32_t frame = mStartFrame; frame < mEndFrame; ++frame)
for (uint32_t frame = mStartFrame; frame <= mEndFrame; ++frame)
{
char frameName[32];
sprintf(frameName, "Frame %u", frame);
......
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