File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -273,16 +273,29 @@ impl Commands {
273273 } => {
274274 if scene. is_empty ( ) {
275275 vec ! [
276+ Box :: new(
277+ large_scenes:: LargeScene :: on(
278+ "bistro" . to_string( ) ,
279+ vec![ ( "compress" . to_string( ) , None ) ] ,
280+ 25000 ,
281+ )
282+ . with_features( vec![ "mipmap_generator/compress" ] ) ,
283+ ) ,
276284 Box :: new( large_scenes:: LargeScene :: on(
277285 "bistro" . to_string( ) ,
278- vec![ ] ,
286+ vec![ ( "no-mip-generation" . to_string ( ) , None ) ] ,
279287 25000 ,
280288 ) ) ,
281289 Box :: new( large_scenes:: LargeScene :: on(
282290 "caldera_hotel" . to_string( ) ,
283291 vec![ ] ,
284292 25000 ,
285293 ) ) ,
294+ Box :: new( large_scenes:: LargeScene :: on(
295+ "bevy_city" . to_string( ) ,
296+ vec![ ] ,
297+ 25000 ,
298+ ) ) ,
286299 ]
287300 } else {
288301 let parameters: Vec < String > =
@@ -302,9 +315,10 @@ impl Commands {
302315 } )
303316 . collect ( ) ;
304317
305- vec ! [ Box :: new( large_scenes:: LargeScene :: on(
306- scene, parameters, nb_frames,
307- ) ) ]
318+ vec ! [ Box :: new(
319+ large_scenes:: LargeScene :: on( scene, parameters, nb_frames)
320+ . with_features( vec![ "mipmap_generator/compress" ] ) ,
321+ ) ]
308322 }
309323 }
310324 Commands :: Benchmarks => {
You can’t perform that action at this time.
0 commit comments