mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-11-03 16:39:01 -06:00 
			
		
		
		
	video_core: Never apply AF to None mipmap mode
Should fix some artifacts with the "apply anisotropic filtering for all mipmap modes" option
This commit is contained in:
		@@ -62,9 +62,10 @@ std::array<float, 4> TSCEntry::BorderColor() const noexcept {
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
float TSCEntry::MaxAnisotropy() const noexcept {
 | 
					float TSCEntry::MaxAnisotropy() const noexcept {
 | 
				
			||||||
    if (max_anisotropy == 0 && (depth_compare_enabled.Value() ||
 | 
					    const bool suitable_mipmap_filter = Settings::values.use_aggressive_anisotropic_filtering
 | 
				
			||||||
                                (mipmap_filter != TextureMipmapFilter::Linear &&
 | 
					                                            ? mipmap_filter != TextureMipmapFilter::None
 | 
				
			||||||
                                 !Settings::values.use_aggressive_anisotropic_filtering))) {
 | 
					                                            : mipmap_filter != TextureMipmapFilter::Linear;
 | 
				
			||||||
 | 
					    if (max_anisotropy == 0 && (depth_compare_enabled.Value() || !suitable_mipmap_filter)) {
 | 
				
			||||||
        return 1.0f;
 | 
					        return 1.0f;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
    const auto anisotropic_settings = Settings::values.max_anisotropy.GetValue();
 | 
					    const auto anisotropic_settings = Settings::values.max_anisotropy.GetValue();
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user