From 34602b69f1b6bcf8c0ec42aa02eb5c761002bd14 Mon Sep 17 00:00:00 2001 From: Dominik Witczak Date: Thu, 4 Feb 2016 13:32:05 +0100 Subject: [PATCH] Increase texcoord offset used by pipeline.sampler conformance tests from 0.001 to 0.002 --- external/vulkancts/modules/vulkan/pipeline/vktPipelineSamplerTests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.7.4