Commit 26ed93d7 by Yuly Novikov Committed by Commit Bot

Reduce number of uniforms in UniformsBenchmark perf test

To fit Nexus 5 limit. BUG=angleproject:2431 Change-Id: I2184a28c19ecadb8d7f2e8ba682fc6c4e382210e Reviewed-on: https://chromium-review.googlesource.com/979154Reviewed-by: 's avatarYuly Novikov <ynovikov@chromium.org> Commit-Queue: Yuly Novikov <ynovikov@chromium.org>
parent ad4f9642
...@@ -396,8 +396,8 @@ UniformsParams MatrixUniforms(const EGLPlatformParameters &egl, DataMode dataMod ...@@ -396,8 +396,8 @@ UniformsParams MatrixUniforms(const EGLPlatformParameters &egl, DataMode dataMod
params.dataMode = dataMode; params.dataMode = dataMode;
// Reduce the number of uniforms to fit within smaller upper limits on some configs. // Reduce the number of uniforms to fit within smaller upper limits on some configs.
params.numVertexUniforms = 64; params.numVertexUniforms = 56;
params.numFragmentUniforms = 64; params.numFragmentUniforms = 56;
return params; return params;
} }
......
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