forked from BinomialLLC/basis_universal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson_options.txt
91 lines (78 loc) · 1.91 KB
/
meson_options.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
option(
'enable_astc',
type : 'boolean',
value : true,
description : 'Enable transcoding into ASTC (mobile, Intel devices, hopefully all desktop GPUs one day)'
)
option(
'enable_atc',
type : 'boolean',
value : false,
description : 'Enable transcoding into ATC (mobile, Adreno devices, this is a niche format)'
)
option(
'enable_bc7',
type : 'boolean',
value : true,
description : 'Enable transcoding into BC7 (desktop, some mobile devices)'
)
option(
'enable_dxt1',
type : 'boolean',
value : true,
description : 'Enable transcoding into DXT1'
)
option(
'enable_dxt5a',
type : 'boolean',
value : true,
description : 'Enable transcoding into DXT5A'
)
option(
'enable_etc2_eac_a8',
type : 'boolean',
value : true,
description : 'Enable transcoding into ETC2_EAC_A8'
)
option(
'enable_etc2_eac_rg11',
type : 'boolean',
value : true,
description : 'Enable transcoding into ETC2_EAC_RG11 and ETC2_EAC_R11'
)
option(
'enable_fxt1',
type : 'boolean',
value : false,
description : 'Enable transcoding into FXT1 (desktop, Intel devices, this is a super obscure format)'
)
option(
'enable_pvrtc1',
type : 'boolean',
value : false,
description : 'Enable transcoding into PVRTC1 (mobile, PowerVR devices, pow2 textures only)'
)
option(
'enable_pvrtc2',
type : 'boolean',
value : true,
description : 'Enable transcoding into PVRTC2 (mobile, PowerVR devices)'
)
option(
'enable_uastc',
type : 'boolean',
value : true,
description : 'Enable transcoding of UASTC source files'
)
option(
'enable_ktx2',
type : 'boolean',
value : true,
description : 'Enable KTX2 container support in the transcoder'
)
option(
'enable_ktx2_zstd',
type : 'boolean',
value : true,
description : 'Enable support for Zstandard-compressed KTX2 files in the transcoder'
)