mirror of
https://github.com/bkaradzic/bgfx.git
synced 2026-02-17 20:52:36 +01:00
Add support for remaining unsupported ASTC formats (#2963)
* Add support for remaining unsupported ASTC formats Add new ASTC formats into pixelformats example and ninja scripts Rebuild ASTC textures * Update idl and generate Move comma in pixelformats Co-authored-by: Raziel Alphadios <raziely@gmail.com>
This commit is contained in:
@@ -33,9 +33,15 @@ rule texturec_bc7
|
||||
rule texturec_astc4x4
|
||||
command = texturec -f $in -o $out -t astc4x4 -m
|
||||
|
||||
rule texturec_astc5x4
|
||||
command = texturec -f $in -o $out -t astc5x4 -m
|
||||
|
||||
rule texturec_astc5x5
|
||||
command = texturec -f $in -o $out -t astc5x5 -m
|
||||
|
||||
rule texturec_astc6x5
|
||||
command = texturec -f $in -o $out -t astc6x5 -m
|
||||
|
||||
rule texturec_astc6x6
|
||||
command = texturec -f $in -o $out -t astc6x6 -m
|
||||
|
||||
@@ -48,6 +54,24 @@ rule texturec_astc8x6
|
||||
rule texturec_astc10x5
|
||||
command = texturec -f $in -o $out -t astc10x5 -m
|
||||
|
||||
rule texturec_astc10x6
|
||||
command = texturec -f $in -o $out -t astc10x6 -m
|
||||
|
||||
rule texturec_astc8x8
|
||||
command = texturec -f $in -o $out -t astc8x8 -m
|
||||
|
||||
rule texturec_astc10x8
|
||||
command = texturec -f $in -o $out -t astc10x8 -m
|
||||
|
||||
rule texturec_astc10x10
|
||||
command = texturec -f $in -o $out -t astc10x10 -m
|
||||
|
||||
rule texturec_astc12x10
|
||||
command = texturec -f $in -o $out -t astc12x10 -m
|
||||
|
||||
rule texturec_astc12x12
|
||||
command = texturec -f $in -o $out -t astc12x12 -m
|
||||
|
||||
rule texturec_etc1
|
||||
command = texturec -f $in -o $out -t etc1 -m
|
||||
|
||||
|
||||
Reference in New Issue
Block a user