Commit 0a450363 by Jamie Madill Committed by Commit Bot

Fix MultipleDrawBuffers sample.

Was attempting to read invalid shader paths. Noticed when working on trace/replay. Bug: angleproject:4433 Change-Id: If43c08891b40f210112db8ffb98b8c6f53528496 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2076137Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Commit-Queue: Jamie Madill <jmadill@chromium.org>
parent 93e72f5f
......@@ -56,7 +56,7 @@ class MultipleDrawBuffersSample : public SampleApplication
fsStream << angle::GetExecutableDirectory() << "/multiple_draw_buffers_fs.glsl";
std::stringstream copyFsStream;
fsStream << angle::GetExecutableDirectory() << "/multiple_draw_buffers_copy_fs.glsl";
copyFsStream << angle::GetExecutableDirectory() << "/multiple_draw_buffers_copy_fs.glsl";
mMRTProgram = CompileProgramFromFiles(vsStream.str(), fsStream.str());
if (!mMRTProgram)
......
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