Commit 2810a20c by Jamie Madill

Fix the InputLayoutCache test on Windows 8.

On some configs, this would use an RGBA4 16-bit backbuffer, which is not enough resolution for the test. Fix this by requiring 32-bit backbuffers. We might also want to figure out if we want to default to 16-bit on Windows 8 desktop, which seems less than ideal. BUG=angleproject:959 Change-Id: I53b3a9ef6cbecf76c7c764623e5eb1f454a6b72d Reviewed-on: https://chromium-review.googlesource.com/283773Tested-by: 's avatarJamie Madill <jmadill@chromium.org> Reviewed-by: 's avatarAustin Kinross <austin.kinross@gmail.com> Reviewed-by: 's avatarCooper Partin <coopp@microsoft.com> Reviewed-by: 's avatarGeoff Lang <geofflang@chromium.org>
parent fda3ec74
......@@ -22,6 +22,13 @@ namespace
class D3D11InputLayoutCacheTest : public ANGLETest
{
protected:
D3D11InputLayoutCacheTest()
{
setWindowWidth(64);
setWindowHeight(64);
setConfigRedBits(8);
}
GLuint makeProgramWithAttribCount(unsigned int attribCount)
{
std::stringstream strstr;
......
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