diff --git a/tests/Testbed/Reference/ResourceArrays.Ref.png b/tests/Testbed/Reference/ResourceArrays.Ref.png index d3de1b23c0..59cb443b7a 100644 Binary files a/tests/Testbed/Reference/ResourceArrays.Ref.png and b/tests/Testbed/Reference/ResourceArrays.Ref.png differ diff --git a/tests/Testbed/TestbedContext.cpp b/tests/Testbed/TestbedContext.cpp index 6742b8335d..e43c802869 100644 --- a/tests/Testbed/TestbedContext.cpp +++ b/tests/Testbed/TestbedContext.cpp @@ -1047,10 +1047,10 @@ void TestbedContext::CreateSamplerStates() { samplers[SamplerNearest] = renderer->CreateSampler(Parse("filter=nearest")); samplers[SamplerNearestClamp] = renderer->CreateSampler(Parse("filter=nearest,address=clamp")); - samplers[SamplerNearestNoMips] = renderer->CreateSampler(Parse("filter.min=nearest,filter.mip=none")); + samplers[SamplerNearestNoMips] = renderer->CreateSampler(Parse("filter.mag=nearest,filter.mip=none")); samplers[SamplerLinear] = renderer->CreateSampler(Parse("filter=linear")); samplers[SamplerLinearClamp] = renderer->CreateSampler(Parse("filter=linear,address=clamp")); - samplers[SamplerLinearNoMips] = renderer->CreateSampler(Parse("filter.min=linear,filter.mip=none")); + samplers[SamplerLinearNoMips] = renderer->CreateSampler(Parse("filter.mag=linear,filter.mip=none")); } void TestbedContext::LoadProjectionMatrix(Gs::Matrix4f& outProjection, float aspectRatio, float nearPlane, float farPlane, float fov)