-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathconfiguration.json
32 lines (32 loc) · 1 KB
/
configuration.json
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
{
"id": "configuration.json",
"title": "configuration",
"description" : "Schema definition of a Texture Configuration",
"$schema": "http://json-schema.org/schema#",
"type": "object",
"properties": {
"version" : {
"type" : "number"
},
"experimental_features": {
"type": "array",
"items": {
"type": "string",
"enum": [
"exp_text_node",
"exp_interface_state_coalesce",
"exp_infer_layer_defaults",
"exp_collection_teardown",
"exp_framesetter_cache",
"exp_skip_clear_data",
"exp_did_enter_preload_skip_asm_layout",
"exp_dispatch_apply",
"exp_drawing_global",
"exp_optimize_data_controller_pipeline",
"exp_disable_global_textkit_lock",
"exp_main_thread_only_data_controller",
]
}
}
}
}