test(render): reenable cache
This commit is contained in:
parent
41034330a7
commit
5a35a2bd1e
|
@ -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(
|
||||||
|
|
|
@ -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,
|
||||||
}),
|
}),
|
||||||
)
|
)
|
||||||
}?;
|
}?;
|
||||||
|
|
|
@ -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,
|
||||||
}),
|
}),
|
||||||
)?;
|
)?;
|
||||||
|
|
||||||
|
|
|
@ -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,
|
||||||
}),
|
}),
|
||||||
)?;
|
)?;
|
||||||
|
|
Loading…
Reference in a new issue