16 Mar
2020
16 Mar
'20
7:05 p.m.
I was completely unable to find where this list is saved or generated :/ I can see JPEG/PPM/PNG/TIFF/TGA .. But how to add (say) openEXR there? In theory this format was already marked as is_image_render in file.C: int File::is_image_render(int format) { switch( format ) { case FILE_EXR: case FILE_JPEG: case FILE_PNG: case FILE_PPM: case FILE_TGA: case FILE_TIFF: return 1; } return 0; } ?