Added GNF stub.

This commit is contained in:
Branimir Karadžić
2017-12-11 17:20:15 -08:00
parent 499ea07b5a
commit 1948869a48
6 changed files with 96 additions and 0 deletions

View File

@@ -661,6 +661,7 @@ namespace bimg
ImageContainer* input = imageParseDds (_allocator, _data, _size, _err) ;
input = NULL == input ? imageParseKtx (_allocator, _data, _size, _err) : input;
input = NULL == input ? imageParsePvr3 (_allocator, _data, _size, _err) : input;
input = NULL == input ? imageParseGnf (_allocator, _data, _size, _err) : input;
input = NULL == input ? imageParseLodePng (_allocator, _data, _size, _err) : input;
input = NULL == input ? imageParseTinyExr (_allocator, _data, _size, _err) : input;
input = NULL == input ? imageParseJpeg (_allocator, _data, _size, _err) : input;