File tree Expand file tree Collapse file tree 2 files changed +15
-2
lines changed
Expand file tree Collapse file tree 2 files changed +15
-2
lines changed Original file line number Diff line number Diff line change 1+ image_width = 1920
2+ image_height = 1080
3+ rotate = 0
4+ approximation_order = 32
5+ glitch_tolerance = 0.001
6+ frames = 9999
7+ frame_offset = 0
8+ zoom_scale = 2.0
9+ display_glitches = false
10+ auto_adjust_iterations = true
11+ probe_sampling = 3
12+ remove_centre = true
13+ export = " exr"
Original file line number Diff line number Diff line change @@ -47,8 +47,8 @@ impl FractalRenderer {
4747 let probe_sampling = settings. get_int ( "probe_sampling" ) . unwrap_or ( 3 ) as usize ;
4848 let remove_centre = settings. get_bool ( "remove_centre" ) . unwrap_or ( true ) ;
4949 let data_type = match settings. get_str ( "export" ) . unwrap_or ( String :: from ( "COLOUR" ) ) . to_ascii_uppercase ( ) . as_ref ( ) {
50- "RAW" => DataType :: RAW ,
51- "COLOUR" => DataType :: COLOUR ,
50+ "RAW" | "EXR" => DataType :: RAW ,
51+ "COLOUR" | "PNG" => DataType :: COLOUR ,
5252 "KFB" => DataType :: KFB ,
5353 "BOTH" => DataType :: BOTH ,
5454 _ => DataType :: COLOUR
You can’t perform that action at this time.
0 commit comments