blob: 66fbcae127a0630ad87957a47ea5cbf893dfa5c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# "Decode many formats into BGR888" profile.
#
# - convert is on, pattern is off
# - BGR888 is the only writable format (so all conversions land there)
# - every other format is readable only — no per-format Sink instantiations
# - BGR888 hot pivot fuses every (read-only-source → BGR888) loop
hot_pivots = ["BGR888"]
patterns = []
[features]
pattern = false
convert = true
default_format_caps = "r"
[formats]
BGR888 = "w"
|