mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-08-25 16:06:31 +00:00
Add simple OpenEXR save/load support using tinyexr
* Thanks to https://github.com/syoyo/tinyexr for the load and save code!
This commit is contained in:
@@ -150,7 +150,9 @@ namespace renderdocui.Windows.Dialogs
|
||||
|
||||
jpegCompression.Enabled = (saveData.destType == FileType.JPG);
|
||||
|
||||
alphaLDRGroup.Visible = (saveData.destType != FileType.HDR && saveData.destType != FileType.DDS);
|
||||
alphaLDRGroup.Visible = (saveData.destType != FileType.HDR &&
|
||||
saveData.destType != FileType.EXR &&
|
||||
saveData.destType != FileType.DDS);
|
||||
|
||||
bool noAlphaFormat = (saveData.destType == FileType.BMP || saveData.destType == FileType.JPG);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user