mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-12 21:10:42 +00:00
Don't allow PNG files to fail to open in Texture_Zoo test
This commit is contained in:
@@ -443,8 +443,8 @@ class Texture_Zoo():
|
||||
status, self.controller = ret
|
||||
|
||||
# Some packed formats can't be opened, allow that
|
||||
if status == rd.ReplayStatus.ImageUnsupported:
|
||||
rdtest.log.comment("Couldn't open {} - unsupported".format(file.name))
|
||||
if status == rd.ReplayStatus.ImageUnsupported and 'dds' in file.name:
|
||||
rdtest.log.print("Couldn't open {} - unsupported".format(file.name))
|
||||
continue
|
||||
|
||||
if status != rd.ReplayStatus.Succeeded:
|
||||
|
||||
Reference in New Issue
Block a user