Ensure only one of BC/ASTC is considered native, prefer ASTC on android.
This commit is contained in:
parent
79372d6cfc
commit
71aac99e5c
1 changed files with 3 additions and 3 deletions
|
@ -295,7 +295,7 @@ proc loadOptimized*(tex: Texture, slices: seq[SliceMem[byte]],
|
||||||
tex.format.component_type != UShort
|
tex.format.component_type != UShort
|
||||||
|
|
||||||
var native_bc, native_astc = false
|
var native_bc, native_astc = false
|
||||||
if has_bptc_support:
|
if has_bptc_support and not defined(android):
|
||||||
native_bc = true
|
native_bc = true
|
||||||
# TODO: BC6H or RGBM
|
# TODO: BC6H or RGBM
|
||||||
will_compress = will_compress and
|
will_compress = will_compress and
|
||||||
|
@ -365,7 +365,7 @@ proc loadOptimized*(tex: Texture, slices: seq[SliceMem[byte]],
|
||||||
let channels = tex.format.channel_count
|
let channels = tex.format.channel_count
|
||||||
|
|
||||||
when defined(myouUseBC7Encoder) and not defined(myouForceAstc):
|
when defined(myouUseBC7Encoder) and not defined(myouForceAstc):
|
||||||
if has_bptc_support or will_encode_all:
|
if native_bc or will_encode_all:
|
||||||
let bc_format = if channels == 1:
|
let bc_format = if channels == 1:
|
||||||
4.int8 # BC4
|
4.int8 # BC4
|
||||||
else:
|
else:
|
||||||
|
@ -373,7 +373,7 @@ proc loadOptimized*(tex: Texture, slices: seq[SliceMem[byte]],
|
||||||
bcn_compress(tex, pixels, cb, bc_format, settings.quality_speed)
|
bcn_compress(tex, pixels, cb, bc_format, settings.quality_speed)
|
||||||
if not will_encode_all: return
|
if not will_encode_all: return
|
||||||
when defined(myouUseAstcEncoder):
|
when defined(myouUseAstcEncoder):
|
||||||
if has_astc_support or will_encode_all:
|
if native_astc or will_encode_all:
|
||||||
let blk_size = if channels == 1:
|
let blk_size = if channels == 1:
|
||||||
settings.astc_block_1ch
|
settings.astc_block_1ch
|
||||||
elif channels == 2:
|
elif channels == 2:
|
||||||
|
|
Loading…
Reference in a new issue