test(render): reenable cache

This commit is contained in:
chyyran 2024-09-24 19:42:43 -04:00 committed by Ronny Chan
parent 41034330a7
commit 5a35a2bd1e
4 changed files with 4 additions and 4 deletions

View file

@ -22,7 +22,7 @@ impl RenderTest for Direct3D11 {
&self.device, &self.device,
Some(&FilterChainOptions { Some(&FilterChainOptions {
force_no_mipmaps: false, force_no_mipmaps: false,
disable_cache: true, disable_cache: false,
}), }),
)?; )?;
filter_chain.frame( filter_chain.frame(

View file

@ -38,7 +38,7 @@ impl RenderTest for OpenGl3 {
glsl_version: 330, glsl_version: 330,
use_dsa: false, use_dsa: false,
force_no_mipmaps: false, force_no_mipmaps: false,
disable_cache: true, disable_cache: false,
}), }),
) )
}?; }?;

View file

@ -41,7 +41,7 @@ impl RenderTest for Vulkan {
frames_in_flight: 3, frames_in_flight: 3,
force_no_mipmaps: false, force_no_mipmaps: false,
use_dynamic_rendering: false, use_dynamic_rendering: false,
disable_cache: true, disable_cache: false,
}), }),
)?; )?;

View file

@ -63,7 +63,7 @@ impl RenderTest for Wgpu {
Arc::clone(&self.queue), Arc::clone(&self.queue),
Some(&FilterChainOptions { Some(&FilterChainOptions {
force_no_mipmaps: false, force_no_mipmaps: false,
enable_cache: false, enable_cache: true,
adapter_info: None, adapter_info: None,
}), }),
)?; )?;