diff --git a/src/tests/texture_format_dxt_tests.cpp b/src/tests/texture_format_dxt_tests.cpp index f8a1fa4..3a7b95f 100644 --- a/src/tests/texture_format_dxt_tests.cpp +++ b/src/tests/texture_format_dxt_tests.cpp @@ -146,7 +146,7 @@ void TextureFormatDXTTests::TestMipmap(const char *filename, auto &texture_stage = host_.GetTextureStage(0); texture_stage.SetFormat(GetTextureFormatInfo(nv2a_format)); texture_stage.SetTextureDimensions(data->width, data->height); - texture_stage.SetFilter(0, TextureStage::K_QUINCUNX, TextureStage::MIN_BOX_NEARESTLOD); + texture_stage.SetFilter(0, TextureStage::K_QUINCUNX, TextureStage::MIN_TENT_TENT_LOD); texture_stage.SetMipMapLevels(10); host_.SetRawTexture(data->data.data(), data->compressed_width, data->compressed_height, data->depth, data->pitch, diff --git a/src/tests/texture_format_tests.cpp b/src/tests/texture_format_tests.cpp index 91e5823..5fd7d3b 100644 --- a/src/tests/texture_format_tests.cpp +++ b/src/tests/texture_format_tests.cpp @@ -166,7 +166,7 @@ void TextureFormatTests::TestMipMap(const TextureFormatInfo &texture_format) { ASSERT(!update_texture_result && "Failed to set texture"); auto &texture_stage = host_.GetTextureStage(0); - texture_stage.SetFilter(0, TextureStage::K_QUINCUNX, TextureStage::MIN_BOX_NEARESTLOD); + texture_stage.SetFilter(0, TextureStage::K_QUINCUNX, TextureStage::MIN_TENT_TENT_LOD); host_.SetupTextureStages(); host_.PrepareDraw(0xFE202020);