-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
customeffectsunit.lfm
271 lines (271 loc) · 5.55 KB
/
customeffectsunit.lfm
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
object customeffectsForm: TcustomeffectsForm
Left = 1670
Height = 499
Top = 169
Width = 966
Caption = 'Advanced Effects Customization'
ClientHeight = 499
ClientWidth = 966
LCLVersion = '2.0.6.0'
object effectsGroupBox: TGroupBox
Left = 263
Height = 95
Top = 24
Width = 689
Caption = 'Effects'
ClientHeight = 77
ClientWidth = 687
TabOrder = 0
object fxaaCheckBox: TCheckBox
Left = 10
Height = 23
Top = 23
Width = 95
Caption = 'Force FXAA'
OnChange = fxaaCheckBoxChange
TabOrder = 0
end
object Label1: TLabel
Left = 157
Height = 15
Top = 4
Width = 84
Caption = 'Quality Subpix'
ParentColor = False
end
object Label2: TLabel
Left = 339
Height = 15
Top = 4
Width = 96
Caption = 'Edge Threshold'
ParentColor = False
end
object Label3: TLabel
Left = 523
Height = 15
Top = 4
Width = 118
Caption = 'Edge ThresholdMin'
ParentColor = False
end
object fxaa1ComboBox: TComboBox
Left = 157
Height = 28
Top = 21
Width = 130
Enabled = False
ItemHeight = 0
ItemIndex = 3
Items.Strings = (
'0 - Off'
'0.25 - Little'
'0.5 - Lower limit'
'0.75 - Default'
'1.0 - Upper Limit (Softer)'
)
TabOrder = 1
Text = '0.75 - Default'
end
object fxaa2ComboBox: TComboBox
Left = 339
Height = 28
Top = 21
Width = 130
Enabled = False
ItemHeight = 0
ItemIndex = 2
Items.Strings = (
'0.333 - Faster'
'0.250 - Low quality'
'0.166 - Default'
'0.125 - High Quality'
'0.063 - Overkill (slow)'
)
TabOrder = 2
Text = '0.166 - Default'
end
object fxaa3ComboBox: TComboBox
Left = 521
Height = 28
Top = 21
Width = 130
Enabled = False
ItemHeight = 0
ItemIndex = 3
Items.Strings = (
'0.0833 - Upper limit'
'0.0625 - High quality'
'0.0312 - Slower'
'0 - Default'
)
TabOrder = 3
Text = '0 - Default'
end
end
object smaaGroupBox: TGroupBox
Left = 24
Height = 95
Top = 136
Width = 928
Caption = 'SMAA'
ClientHeight = 77
ClientWidth = 926
TabOrder = 1
Visible = False
object smaaCheckBox: TCheckBox
Left = 10
Height = 23
Top = 23
Width = 97
Caption = 'Force SMAA'
TabOrder = 0
end
object Label6: TLabel
Left = 126
Height = 15
Top = 6
Width = 92
Caption = 'Edge Detection'
ParentColor = False
end
object Label7: TLabel
Left = 285
Height = 15
Top = 6
Width = 99
Caption = 'SMAA Threshold'
ParentColor = False
end
object Label8: TLabel
Left = 444
Height = 15
Top = 6
Width = 103
Caption = 'Max Search Steps'
ParentColor = False
end
object ComboBox1: TComboBox
Left = 126
Height = 27
Top = 22
Width = 140
Font.Color = clWhite
Font.Height = -13
Font.Name = 'Sans'
Font.Quality = fqAntialiased
ItemHeight = 0
ItemIndex = 0
Items.Strings = (
'Luma (default)'
'Color (expensive)'
)
ParentFont = False
TabOrder = 1
Text = 'Luma (default)'
end
object ComboBox5: TComboBox
Left = 285
Height = 27
Top = 22
Width = 140
Font.Color = clWhite
Font.Height = -13
Font.Name = 'Sans'
Font.Quality = fqAntialiased
ItemHeight = 0
ItemIndex = 4
Items.Strings = (
'0.5'
'0.4'
'0.3'
'0.2'
'0.1 - Default'
'0.05 - Overkill'
)
ParentFont = False
TabOrder = 2
Text = '0.1 - Default'
end
object ComboBox6: TComboBox
Left = 444
Height = 27
Top = 22
Width = 140
Font.Color = clWhite
Font.Height = -13
Font.Name = 'Sans'
Font.Quality = fqAntialiased
ItemHeight = 0
ItemIndex = 3
Items.Strings = (
'4 - Low'
'8 - Medium'
'16 - High'
'32 - Ultra (default)'
)
ParentFont = False
TabOrder = 3
Text = '32 - Ultra (default)'
end
object ComboBox7: TComboBox
Left = 603
Height = 27
Top = 22
Width = 140
Font.Color = clWhite
Font.Height = -13
Font.Name = 'Sans'
Font.Quality = fqAntialiased
ItemHeight = 0
ItemIndex = 3
Items.Strings = (
'0 - Low'
'4 - Medium'
'8 - High'
'16 - Ultra (default)'
''
)
ParentFont = False
TabOrder = 4
Text = '16 - Ultra (default)'
end
object Label9: TLabel
Left = 603
Height = 15
Top = 6
Width = 133
Caption = 'Max Search Steps Diag'
ParentColor = False
end
object ComboBox8: TComboBox
Left = 762
Height = 27
Top = 22
Width = 140
Font.Color = clWhite
Font.Height = -13
Font.Name = 'Sans'
Font.Quality = fqAntialiased
ItemHeight = 0
ItemIndex = 2
Items.Strings = (
'5 - low'
'15 - Medium'
'25 - High (default)'
'50 - Ultra'
)
ParentFont = False
TabOrder = 5
Text = '25 - High (default)'
end
object Label10: TLabel
Left = 762
Height = 15
Top = 6
Width = 103
Caption = 'Corner Rounding'
ParentColor = False
end
end
end