Commit 9cac3c58 by Cody Northrop Committed by Commit Bot

Capture/Replay: Disable default uniform updates for arrays

We aren't properly handling them, were already firing UNIMPLEMENTED, but can't continue with the loop. Will follow up with real support. Test: MEC capture of Manhattan on Windows Bug: angleproject:3662 Change-Id: I7b77350b39971fda702eac8b19c6f29f36f78146 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2171759Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Commit-Queue: Cody Northrop <cnorthrop@google.com>
parent e07cb6e9
......@@ -1418,7 +1418,10 @@ void CaptureUpdateUniformValues(const gl::State &replayState,
if (uniform.isArray())
{
// TODO (cnorthrop): http://anglebug.com/3662
// Add support for array uniforms
UNIMPLEMENTED();
return;
}
// We need to bind the program and update its uniforms
......
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