From: Dominik Witczak Date: Thu, 4 Feb 2016 12:32:05 +0000 (+0100) Subject: Increase texcoord offset used by pipeline.sampler conformance tests from 0.001 to... X-Git-Tag: upstream/0.1.0~812^2~65^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=34602b69f1b6bcf8c0ec42aa02eb5c761002bd14;p=platform%2Fupstream%2FVK-GL-CTS.git Increase texcoord offset used by pipeline.sampler conformance tests from 0.001 to 0.002 --- diff --git a/external/vulkancts/modules/vulkan/pipeline/vktPipelineSamplerTests.cpp b/external/vulkancts/modules/vulkan/pipeline/vktPipelineSamplerTests.cpp index de60cef..0c762e0 100644 --- a/external/vulkancts/modules/vulkan/pipeline/vktPipelineSamplerTests.cpp +++ b/external/vulkancts/modules/vulkan/pipeline/vktPipelineSamplerTests.cpp @@ -301,7 +301,7 @@ std::vector SamplerTest::createVertices (void) const // TODO: Would be nice to base this on number of texels and subtexel precision. But this // seems to work. for (unsigned int i = 0; i < vertices.size(); ++i) { - vertices[i].texCoord += tcu::Vec4(0.001f, 0.001f, 0.001f, 0.0f); + vertices[i].texCoord += tcu::Vec4(0.002f, 0.002f, 0.002f, 0.0f); } return vertices; }