dds_ktx: Ignore files that are too big for the library.
This commit is contained in:
parent
cee92ef69c
commit
fb50b3a018
1 changed files with 1 additions and 1 deletions
|
@ -168,7 +168,7 @@ type TexFlags = enum
|
|||
proc GetDdsKtxInfo*(p: pointer, len: int, is_sRGB = false): Option[KtxInfo] =
|
||||
var tc: ddsktx_texture_info
|
||||
var err: ddsktx_error
|
||||
if ddsktx_parse(tc, p, len.cint, err):
|
||||
if len < cint.high and ddsktx_parse(tc, p, len.cint, err):
|
||||
let is_cubemap = cast[int8](tc.flags).testBit FlagCubemap.int8
|
||||
let is_sRGB = is_sRGB or cast[int8](tc.flags).testBit FlagSrgb.int8
|
||||
let has_alpha = cast[int8](tc.flags).testBit FlagAlpha.int8
|
||||
|
|
Loading…
Reference in a new issue