color-management: use more consistent naming
This commit is contained in:
parent
32db933242
commit
83e79b68e6
65 changed files with 439 additions and 510 deletions
|
|
@ -1141,6 +1141,14 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"Eotf": {
|
||||
"type": "string",
|
||||
"description": "The EOTF of an output.\n",
|
||||
"enum": [
|
||||
"default",
|
||||
"pq"
|
||||
]
|
||||
},
|
||||
"Exec": {
|
||||
"description": "Describes how to execute a program.\n\n- Example 1:\n\n ```toml\n [shortcuts]\n ctrl-a = { type = \"exec\", exec = \"alacritty\" }\n ```\n\n- Example 2:\n\n ```toml\n [shortcuts]\n ctrl-a = { type = \"exec\", exec = [\"notify-send\", \"hello world\"] }\n ```\n\n- Example 3:\n\n ```toml\n [shortcuts]\n ctrl-a = { type = \"exec\", exec = { prog = \"notify-send\", args = [\"hello world\"], env.WAYLAND_DISPLAY = \"2\" } }\n ```\n",
|
||||
"anyOf": [
|
||||
|
|
@ -1641,8 +1649,8 @@
|
|||
"$ref": "#/$defs/ColorSpace"
|
||||
},
|
||||
"transfer-function": {
|
||||
"description": "The transfer function of the output.\n",
|
||||
"$ref": "#/$defs/TransferFunction"
|
||||
"description": "The EOTF of the output.\n",
|
||||
"$ref": "#/$defs/Eotf"
|
||||
},
|
||||
"brightness": {
|
||||
"description": "The brightness of the output.\n\nThis setting has no effect unless the vulkan renderer is used.\n",
|
||||
|
|
@ -1902,14 +1910,6 @@
|
|||
"floating"
|
||||
]
|
||||
},
|
||||
"TransferFunction": {
|
||||
"type": "string",
|
||||
"description": "The transfer function of an output.\n",
|
||||
"enum": [
|
||||
"default",
|
||||
"pq"
|
||||
]
|
||||
},
|
||||
"Transform": {
|
||||
"type": "string",
|
||||
"description": "An output transformation.",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue