View | Details | Raw Unified | Return to bug 252362 | Differences between
and this patch

Collapse All | Expand All

(-)b/emulators/mame/Makefile (-33 / +73 lines)
Lines 1-14 Link Here
1
# Created by: alepulver
1
# Created by: alepulver
2
2
3
PORTNAME?=	mame
3
PORTNAME?=	mame
4
PORTVERSION=	0.226
4
PORTVERSION=	0.243
5
PORTREVISION=	2
5
CATEGORIES=	emulators games
6
CATEGORIES=	emulators
7
6
8
MAINTAINER=	manu@FreeBSD.org
7
MAINTAINER=	manu@FreeBSD.org
9
COMMENT=	Multi Arcade Machine Emulator
8
COMMENT=	MAME: a multi-purpose emulation framework
10
9
11
LICENSE=	GPLv2
10
LICENSE=	BSD3CLAUSE GPLv2
11
LICENSE_COMB=	multi
12
LICENSE_FILE=	${WRKSRC}/docs/LICENSE
12
13
13
ONLY_FOR_ARCHS=		amd64 armv7 i386 powerpc powerpc64 powerpc64le
14
ONLY_FOR_ARCHS=		amd64 armv7 i386 powerpc powerpc64 powerpc64le
14
ONLY_FOR_ARCHS_REASON=	not yet ported to any architecture other than armv7, x86, and powerpc*
15
ONLY_FOR_ARCHS_REASON=	not yet ported to any architecture other than armv7, x86, and powerpc*
Lines 21-27 LIB_DEPENDS= libFLAC.so:audio/flac \ Link Here
21
RUN_DEPENDS=	liberation-fonts-ttf>=0:x11-fonts/liberation-fonts-ttf
22
RUN_DEPENDS=	liberation-fonts-ttf>=0:x11-fonts/liberation-fonts-ttf
22
23
23
USES=		compiler:c++14-lang gl gmake jpeg localbase pkgconfig \
24
USES=		compiler:c++14-lang gl gmake jpeg localbase pkgconfig \
24
		python:3.7,build qt:5 sdl shebangfix sqlite:3 xorg
25
		python:3.8,build qt:5 sdl shebangfix sqlite:3 xorg
25
26
26
USE_GITHUB=	yes
27
USE_GITHUB=	yes
27
GH_ACCOUNT=	mamedev
28
GH_ACCOUNT=	mamedev
Lines 32-38 USE_QT= buildtools core gui qmake_build widgets Link Here
32
USE_SDL=	sdl2 ttf2
33
USE_SDL=	sdl2 ttf2
33
USE_XORG=	x11 xext xi xinerama xrender
34
USE_XORG=	x11 xext xi xinerama xrender
34
35
35
SHEBANG_FILES=	src/devices/cpu/m6502/m6502make.py \
36
SHEBANG_FILES=	src/devices/cpu/h8/h8make.py \
37
		src/devices/cpu/m6502/m6502make.py \
38
		src/devices/cpu/m68000/m68kmake.py \
36
		src/devices/cpu/m6809/m6809make.py \
39
		src/devices/cpu/m6809/m6809make.py \
37
		src/devices/cpu/mcs96/mcs96make.py \
40
		src/devices/cpu/mcs96/mcs96make.py \
38
		src/devices/cpu/tms57002/tmsmake.py
41
		src/devices/cpu/tms57002/tmsmake.py
Lines 43-58 MAKE_ARGS= TARGETOS=freebsd VERBOSE=1 TOOLS=1 USE_SYSTEM_LIB_PUGIXML=1 \ Link Here
43
MAKE_ENV=	NOWERROR=1 USE_NETWORK=1 \
46
MAKE_ENV=	NOWERROR=1 USE_NETWORK=1 \
44
		LD="${CXX}" PYTHON="${PYTHON_CMD}" \
47
		LD="${CXX}" PYTHON="${PYTHON_CMD}" \
45
		OPT_FLAGS="${CXXFLAGS}" GCC_LDFLAGS="${LDFLAGS}" \
48
		OPT_FLAGS="${CXXFLAGS}" GCC_LDFLAGS="${LDFLAGS}" \
46
		TARGET="${MTARGET}" SUBTARGET="${MSUBTARGET}" FULLNAME="mame" SDL_NETWORK="pcap"
49
		TARGET="${MTARGET}" SUBTARGET="${MSUBTARGET}" FULLNAME="mame" \
50
		SDL_NETWORK="pcap"
47
MAKE_JOBS_UNSAFE=	yes
51
MAKE_JOBS_UNSAFE=	yes
48
52
49
SUB_FILES=	pkg-message target.ini
53
SUB_FILES=	pkg-message target.ini
50
SUB_LIST=	MTARGET=${MTARGET} MSUBTARGET=${MSUBTARGET}
54
SUB_LIST=	MTARGET=${MTARGET} MSUBTARGET=${MSUBTARGET}
51
55
52
PORTDOCS=	*
56
DOCS_PORTDOCS=		html/* legal/* LICENSE
53
PORTEXAMPLES=	${MSUBTARGET}.ini
57
DOCS_PORTEXAMPLES=	${MSUBTARGET}.ini
54
55
OPTIONS_DEFINE=		DEBUG DOCS EXAMPLES
56
58
57
DEBUG_MAKE_ENV=		DEBUG=1
59
DEBUG_MAKE_ENV=		DEBUG=1
58
60
Lines 60-73 GENIE= ${WRKSRC}/3rdparty/genie Link Here
60
MSUBTARGET?=	mame
62
MSUBTARGET?=	mame
61
MTARGET?=	mame
63
MTARGET?=	mame
62
64
65
OPTIONS_DEFINE=	DEBUG DOCS EXAMPLES
66
DEBUG_DESC=	Build with debug profiling and symbols
67
DOCS_DESC=	Manual pages and additional MAME documentaion
68
EXAMPLES_DESC=	Install example ${MSUBTARGET}.ini configuration
69
70
DOCS_BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}sphinxcontrib-svg2pdfconverter>0:textproc/py-sphinxcontrib-svg2pdfconverter@${PY_FLAVOR}
71
63
.include <bsd.port.options.mk>
72
.include <bsd.port.options.mk>
64
73
74
.if ${PORT_OPTIONS:MDEBUG}
75
WITH_DEBUG=	"YES"
76
MAKE_ENV+=	DEBUG="1" OPTIMIZE="0" PROFILER="1" SYMBOLS="1"
77
.endif
78
65
.if ${ARCH} == amd64 || ${ARCH:Mpowerpc64*}
79
.if ${ARCH} == amd64 || ${ARCH:Mpowerpc64*}
66
MAKE_ARGS+=	PTR64=1
80
MAKE_ARGS+=	PTR64=1
67
EMULATOR=	${MSUBTARGET}64
68
.else
69
EMULATOR=	${MSUBTARGET}
70
.endif
81
.endif
82
EMULATOR=	${MSUBTARGET}
71
PLIST_SUB+=	EMULATOR=${EMULATOR}
83
PLIST_SUB+=	EMULATOR=${EMULATOR}
72
84
73
post-patch:
85
post-patch:
Lines 93-100 post-patch: Link Here
93
		${GENIE}/src/host/scripts.c
105
		${GENIE}/src/host/scripts.c
94
	# we can't fix two types of python shebangs, so do these manually
106
	# we can't fix two types of python shebangs, so do these manually
95
	@${REINPLACE_CMD} -i "" -e "s|/usr/bin/env python|${PYTHON_CMD}|" \
107
	@${REINPLACE_CMD} -i "" -e "s|/usr/bin/env python|${PYTHON_CMD}|" \
96
		${WRKSRC}/scripts/build/png*.py
108
		${WRKSRC}/scripts/build/*.py
97
	@${REINPLACE_CMD} -e 's|"python"|"${PYTHON_CMD}"|' \
109
	@${REINPLACE_CMD} -i "" -e "s|/usr/bin/python|${PYTHON_CMD}|" \
110
		${WRKSRC}/scripts/build/*.py
111
	@${REINPLACE_CMD} -e 's|"python3"|"${PYTHON_CMD}"|' \
98
		${WRKSRC}/scripts/genie.lua
112
		${WRKSRC}/scripts/genie.lua
99
	@${GREP} -rl '"png.h"' ${WRKSRC}/src | ${XARGS} ${REINPLACE_CMD} \
113
	@${GREP} -rl '"png.h"' ${WRKSRC}/src | ${XARGS} ${REINPLACE_CMD} \
100
		-e 's|"png.h"|"localpng.h"|'
114
		-e 's|"png.h"|"localpng.h"|'
Lines 102-128 post-patch: Link Here
102
		${WRKSRC}/src/frontend/mame/ui/icorender.cpp
116
		${WRKSRC}/src/frontend/mame/ui/icorender.cpp
103
	@${MV} ${WRKSRC}/src/lib/util/png.h ${WRKSRC}/src/lib/util/localpng.h
117
	@${MV} ${WRKSRC}/src/lib/util/png.h ${WRKSRC}/src/lib/util/localpng.h
104
118
105
do-install:
119
do-build-DOCS-on:
106
	@${MKDIR} ${STAGEDIR}${DATADIR} \
107
		${STAGEDIR}${DOCSDIR} \
108
		${STAGEDIR}${EXAMPLESDIR} \
109
		${STAGEDIR}${PREFIX}/libexec/${MSUBTARGET}
110
	${INSTALL_PROGRAM} ${WRKSRC}/${EMULATOR} ${STAGEDIR}${PREFIX}/bin
111
.if ${MSUBTARGET:Mmame}
120
.if ${MSUBTARGET:Mmame}
112
	(cd ${WRKSRC} && \
121
.for t in html man
113
		${INSTALL_PROGRAM} chdman jedutil ldresample ldverify \
122
	cd ${WRKSRC}/docs && ${SETENV} ${MAKE_ENV} \
114
		romcmp unidasm \
123
        	${MAKE_CMD} ${MAKE_ARGS} ${t} SPHINXBUILD=sphinx-build-${PYTHON_VER}
115
		${STAGEDIR}${PREFIX}/libexec/mame)
124
.endfor
116
.endif
125
.endif
117
.if ${MSUBTARGET:Mmess}
126
118
	(cd ${WRKSRC} && ${INSTALL_PROGRAM} castool chdman floptool imgtool jedutil \
127
do-install:
119
		ldresample ldverify nltool nlwav pngcmp regrep romcmp split \
128
.if ${MSUBTARGET:Mmame}
120
		srcclean unidasm \
129
	(cd ${WRKSRC} && ${INSTALL_PROGRAM} castool chdman floptool imgtool \
121
		${STAGEDIR}${PREFIX}/libexec/mess)
130
		jedutil ldresample ldverify nltool nlwav pngcmp regrep romcmp \
131
		split srcclean testkeys unidasm \
132
		${STAGEDIR}${PREFIX}/bin)
122
.endif
133
.endif
134
123
	(cd ${WRKSRC} && ${COPYTREE_SHARE} artwork ${STAGEDIR}${DATADIR})
135
	(cd ${WRKSRC} && ${COPYTREE_SHARE} artwork ${STAGEDIR}${DATADIR})
136
	(cd ${WRKSRC} && ${COPYTREE_SHARE} bgfx ${STAGEDIR}${DATADIR})
137
	(cd ${WRKSRC} && ${COPYTREE_SHARE} ctrlr ${STAGEDIR}${DATADIR})
138
	(cd ${WRKSRC} && ${COPYTREE_SHARE} ini ${STAGEDIR}${DATADIR})
139
	(cd ${WRKSRC} && ${COPYTREE_SHARE} language ${STAGEDIR}${DATADIR})
124
	(cd ${WRKSRC} && ${COPYTREE_SHARE} hash ${STAGEDIR}${DATADIR})
140
	(cd ${WRKSRC} && ${COPYTREE_SHARE} hash ${STAGEDIR}${DATADIR})
125
	(cd ${WRKSRC} && ${COPYTREE_SHARE} docs ${STAGEDIR}${DOCSDIR})
141
	(cd ${WRKSRC} && ${COPYTREE_SHARE} plugins ${STAGEDIR}${DATADIR})
142
	(cd ${WRKSRC} && ${COPYTREE_SHARE} samples ${STAGEDIR}${DATADIR})
143
144
do-install-DEBUG-on:
145
	${INSTALL_PROGRAM} ${WRKSRC}/${EMULATOR}d \
146
		${STAGEDIR}${PREFIX}/bin/${EMULATOR}
147
148
do-install-DEBUG-off:
149
	${INSTALL_PROGRAM} ${WRKSRC}/${EMULATOR} \
150
		${STAGEDIR}${PREFIX}/bin/${EMULATOR}
151
152
post-install-DOCS-on:
153
	${MKDIR} ${STAGEDIR}${DOCSDIR}
154
.if ${MSUBTARGET:Mmame}
155
	${INSTALL_MAN} ${WRKSRC}/docs/man/*.1 ${STAGEDIR}${MANPREFIX}/man/man1
156
	${INSTALL_MAN} ${WRKSRC}/docs/build/man/*.1 ${STAGEDIR}${MANPREFIX}/man/man1
157
	(cd ${WRKSRC}/docs/build && ${COPYTREE_SHARE} html ${STAGEDIR}${DOCSDIR})
158
.endif
159
160
	${INSTALL_MAN} ${WRKSRC}/docs/LICENSE ${STAGEDIR}${DOCSDIR}
161
	(cd ${WRKSRC}/docs && ${COPYTREE_SHARE} legal ${STAGEDIR}${DOCSDIR})
162
	${INSTALL_MAN} ${WRKSRC}/docs/man/${MSUBTARGET}.6 ${STAGEDIR}${MANPREFIX}/man/man6
163
164
post-install-EXAMPLES-on:
165
	${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
126
	${INSTALL_DATA} ${WRKDIR}/target.ini \
166
	${INSTALL_DATA} ${WRKDIR}/target.ini \
127
		${STAGEDIR}${EXAMPLESDIR}/${MSUBTARGET}.ini
167
		${STAGEDIR}${EXAMPLESDIR}/${MSUBTARGET}.ini
128
168
(-)b/emulators/mame/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1608936229
1
TIMESTAMP = 1651290926
2
SHA256 (mamedev-mame-0.226-mame0226_GH0.tar.gz) = 7c4c9ec232ba988e65fd29665c9b8e40b5ac3aa9f561eeb107cebbf08ba94baf
2
SHA256 (mamedev-mame-0.243-mame0243_GH0.tar.gz) = 8cddb7d6cee5d736d1ce7ef2022e2d09b5c61bea02b5df7e369010a47a5d2133
3
SIZE (mamedev-mame-0.226-mame0226_GH0.tar.gz) = 196379874
3
SIZE (mamedev-mame-0.243-mame0243_GH0.tar.gz) = 185402979
(-)b/emulators/mame/files/patch-src_osd_eminline.h (-1 / +1 lines)
Lines 1-4 Link Here
1
--- src/osd/eminline.h.orig	2018-02-27 15:59:06 UTC
1
--- src/osd/eminline.h.orig	2022-04-29 05:37:26 UTC
2
+++ src/osd/eminline.h
2
+++ src/osd/eminline.h
3
@@ -21,7 +21,7 @@
3
@@ -21,7 +21,7 @@
4
 
4
 
(-)b/emulators/mame/files/patch-src_osd_sdl_sdlprefix.h (-3 / +6 lines)
Lines 1-7 Link Here
1
--- src/osd/sdl/sdlprefix.h.orig	2018-02-27 15:59:06 UTC
1
--- src/osd/sdl/sdlprefix.h.orig	2022-04-29 05:37:26 UTC
2
+++ src/osd/sdl/sdlprefix.h
2
+++ src/osd/sdl/sdlprefix.h
3
@@ -48,6 +48,7 @@
3
@@ -45,9 +45,9 @@
4
 #define NO_AFFINITY_NP 1
4
 
5
 #elif defined(__FreeBSD__)
6
 #define SDLMAME_FREEBSD 1
7
-#define NO_AFFINITY_NP 1
5
 #elif defined(__DragonFly__)
8
 #elif defined(__DragonFly__)
6
 #define SDLMAME_DRAGONFLY 1
9
 #define SDLMAME_DRAGONFLY 1
7
+#define NO_AFFINITY_NP 1
10
+#define NO_AFFINITY_NP 1
(-)b/emulators/mame/files/pkg-message.in (-3 / +6 lines)
Lines 2-10 Link Here
2
{ type: install
2
{ type: install
3
  message: <<EOM
3
  message: <<EOM
4
An example configuration file has been installed in
4
An example configuration file has been installed in
5
"%%EXAMPLESDIR%%/%%MTARGET%%.ini"
5
"%%EXAMPLESDIR%%/%%MTARGET%%.ini" This configuration can be copied to your
6
Should you create a "~/.%%MTARGET%%" directory and place it here or
6
"~/.%%MTARGET%%" directory; alternatively, run "%%MTARGET%% -createconfig" to
7
launch "%%MTARGET%% -createconfig" and place the %%MTARGET%%.ini created instead.
7
create a clean copy of "%%MTARGET%%.ini", which can be copied to
8
"~/.%%MTARGET%%", or eleswhere.
9
Run "%%MTARGET%% -inipath path-to-%%MTARGET%%.ini" to launch MAME with a custom
10
configuration path.
8
EOM
11
EOM
9
}
12
}
10
]
13
]
(-)b/emulators/mame/files/target.ini.in (-76 / +225 lines)
Lines 1-6 Link Here
1
<UNADORNED0>              
1
#
2
3
#
4
# CORE CONFIGURATION OPTIONS
2
# CORE CONFIGURATION OPTIONS
5
#
3
#
6
readconfig                1
4
readconfig                1
Lines 9-49 writeconfig 0 Link Here
9
#
7
#
10
# CORE SEARCH PATH OPTIONS
8
# CORE SEARCH PATH OPTIONS
11
#
9
#
12
rompath                   $HOME/.%%MTARGET%%/roms
10
rompath                   $HOME/.%%MTARGET%%/roms;/usr/local/share/%%MTARGET%%/roms/
13
hashpath                  $HOME/.%%MTARGET%%/hash;/usr/local/share/%%MTARGET%%/hash/
11
hashpath                  $HOME/.%%MTARGET%%/hash;/usr/local/share/%%MTARGET%%/hash/
14
samplepath                $HOME/.%%MTARGET%%/samples
12
samplepath                $HOME/.%%MTARGET%%/samples;/usr/local/share/%%MTARGET%%/samples/
15
artpath                   $HOME/.%%MTARGET%%/artwork;/usr/local/share/%%MTARGET%%/artwork/
13
artpath                   $HOME/.%%MTARGET%%/artwork;/usr/local/share/%%MTARGET%%/artwork/
16
ctrlrpath                 $HOME/.%%MTARGET%%/ctrlr
14
ctrlrpath                 $HOME/.%%MTARGET%%/ctrlr;/usr/local/share/%%MTARGET%%/ctrlr/
17
inipath                   $HOME/.%%MTARGET%%;.;ini
15
inipath                   $HOME/.%%MTARGET%%;.;ini;/usr/local/share/%%MTARGET%%/ini/
18
fontpath                  $HOME/.%%MTARGET%%/font;/usr/local/share/%%MTARGET%%/
16
fontpath                  $HOME/.%%MTARGET%%/font
19
cheatpath                 $HOME/.%%MTARGET%%/cheat
17
cheatpath                 $HOME/.%%MTARGET%%/cheat
20
crosshairpath             $HOME/.%%MTARGET%%/crosshair
18
crosshairpath             $HOME/.%%MTARGET%%/crosshair
19
pluginspath               $HOME/.%%MTARGET%%/plugins;/usr/local/share/%%MTARGET%%/plugins/
20
languagepath              $HOME/.%%MTARGET%%/language;/usr/local/share/%%MTARGET%%/language/
21
swpath                    $HOME/.%%MTARGET%%/software
21
22
22
#
23
#
23
# CORE OUTPUT DIRECTORY OPTIONS
24
# CORE OUTPUT DIRECTORY OPTIONS
24
#
25
#
25
cfg_directory             $HOME/.%%MTARGET%%/cfg
26
cfg_directory             $HOME/.%%MTARGET%%/cfg 
26
nvram_directory           $HOME/.%%MTARGET%%/nvram
27
nvram_directory           $HOME/.%%MTARGET%%/nvram
27
memcard_directory         $HOME/.%%MTARGET%%/memcard
28
input_directory           $HOME/.%%MTARGET%%/inp
28
input_directory           $HOME/.%%MTARGET%%/inp
29
state_directory           $HOME/.%%MTARGET%%/sta
29
state_directory           $HOME/.%%MTARGET%%/state
30
snapshot_directory        $HOME/.%%MTARGET%%/snap
30
snapshot_directory        $HOME/.%%MTARGET%%/snapshot
31
diff_directory            $HOME/.%%MTARGET%%/diff
31
diff_directory            $HOME/.%%MTARGET%%/diff
32
comment_directory         $HOME/.%%MTARGET%%/comments
32
comment_directory         $HOME/.%%MTARGET%%/comments
33
share_directory           $HOME/.%%MTARGET%%/share
33
34
34
#
35
#
35
# CORE STATE/PLAYBACK OPTIONS
36
# CORE STATE/PLAYBACK OPTIONS
36
#
37
#
37
state                     
38
state                     
38
autosave                  0
39
autosave                  0
40
rewind                    0
41
rewind_capacity           100
39
playback                  
42
playback                  
40
record                    
43
record                    
44
exit_after_playback       0
41
mngwrite                  
45
mngwrite                  
42
aviwrite                  
46
aviwrite                  
43
wavwrite                  
47
wavwrite                  
44
snapname                  %g/%i
48
snapname                  %g/%i
45
snapsize                  auto
49
snapsize                  auto
46
snapview                  internal
50
snapview                  auto
51
snapbilinear              1
52
statename                 %g
47
burnin                    0
53
burnin                    0
48
54
49
#
55
#
Lines 56-61 throttle 1 Link Here
56
sleep                     1
62
sleep                     1
57
speed                     1.0
63
speed                     1.0
58
refreshspeed              0
64
refreshspeed              0
65
lowlatency                0
66
67
#
68
# CORE RENDER OPTIONS
69
#
70
keepaspect                1
71
unevenstretch             1
72
unevenstretchx            0
73
unevenstretchy            0
74
autostretchxy             0
75
intoverscan               0
76
intscalex                 0
77
intscaley                 0
59
78
60
#
79
#
61
# CORE ROTATION OPTIONS
80
# CORE ROTATION OPTIONS
Lines 72-82 flipy 0 Link Here
72
# CORE ARTWORK OPTIONS
91
# CORE ARTWORK OPTIONS
73
#
92
#
74
artwork_crop              0
93
artwork_crop              0
75
use_backdrops             1
94
fallback_artwork          
76
use_overlays              1
95
override_artwork          
77
use_bezels                1
78
use_cpanels               1
79
use_marquees              1
80
96
81
#
97
#
82
# CORE SCREEN OPTIONS
98
# CORE SCREEN OPTIONS
Lines 90-106 effect none Link Here
90
#
106
#
91
# CORE VECTOR OPTIONS
107
# CORE VECTOR OPTIONS
92
#
108
#
93
antialias                 1
109
beam_width_min            1.0
94
beam                      1.0
110
beam_width_max            1.0
111
beam_dot_size             1.0
112
beam_intensity_weight     0
95
flicker                   0
113
flicker                   0
96
114
97
#
115
#
98
# CORE SOUND OPTIONS
116
# CORE SOUND OPTIONS
99
#
117
#
100
sound                     1
101
samplerate                48000
118
samplerate                48000
102
samples                   1
119
samples                   1
103
volume                    0
120
volume                    0
121
compressor                1
122
speaker_report            0
104
123
105
#
124
#
106
# CORE INPUT OPTIONS
125
# CORE INPUT OPTIONS
Lines 113-118 lightgun 0 Link Here
113
multikeyboard             0
132
multikeyboard             0
114
multimouse                0
133
multimouse                0
115
steadykey                 0
134
steadykey                 0
135
ui_active                 0
116
offscreen_reload          0
136
offscreen_reload          0
117
joystick_map              auto
137
joystick_map              auto
118
joystick_deadzone         0.3
138
joystick_deadzone         0.3
Lines 136-222 mouse_device mouse Link Here
136
#
156
#
137
# CORE DEBUGGING OPTIONS
157
# CORE DEBUGGING OPTIONS
138
#
158
#
139
log                       0
140
verbose                   0
159
verbose                   0
141
update_in_pause           0
160
log                       0
161
oslog                     0
142
debug                     0
162
debug                     0
163
update_in_pause           0
143
debugscript               
164
debugscript               
144
debug_internal            0
165
debuglog                  0
166
167
#
168
# CORE COMM OPTIONS
169
#
170
comm_localhost            0.0.0.0
171
comm_localport            15112
172
comm_remotehost           127.0.0.1
173
comm_remoteport           15112
174
comm_framesync            0
145
175
146
#
176
#
147
# CORE MISC OPTIONS
177
# CORE MISC OPTIONS
148
#
178
#
179
drc                       1
180
drc_use_c                 0
181
drc_log_uml               0
182
drc_log_native            0
149
bios                      
183
bios                      
150
cheat                     0
184
cheat                     0
151
skip_gameinfo             0
185
skip_gameinfo             0
152
uifont                    default
186
uifont                    default
187
ui                        cabinet
153
ramsize                   
188
ramsize                   
154
confirm_quit              0
189
confirm_quit              0
190
ui_mouse                  1
191
language                  
192
nvram_save                1
155
193
156
#
194
#
157
# DEBUGGING OPTIONS
195
# SCRIPTING OPTIONS
158
#
196
#
159
oslog                     0
197
autoboot_command          
198
autoboot_delay            0
199
autoboot_script           
200
console                   0
201
plugins                   1
202
plugin                    
203
noplugin                  
204
205
#
206
# HTTP SERVER OPTIONS
207
#
208
http                      0
209
http_port                 8080
210
http_root                 web
211
212
#
213
# OSD KEYBOARD MAPPING OPTIONS
214
#
215
uimodekey                 SCRLOCK
216
217
#
218
# OSD FONT OPTIONS
219
#
220
uifontprovider            auto
221
222
#
223
# OSD OUTPUT OPTIONS
224
#
225
output                    auto
226
227
#
228
# OSD INPUT OPTIONS
229
#
230
keyboardprovider          auto
231
mouseprovider             auto
232
lightgunprovider          auto
233
joystickprovider          auto
234
235
#
236
# OSD DEBUGGING OPTIONS
237
#
238
debugger                  auto
239
debugger_port             23946
240
debugger_font             auto
241
debugger_font_size        0
160
watchdog                  0
242
watchdog                  0
161
243
162
#
244
#
163
# PERFORMANCE OPTIONS
245
# OSD PERFORMANCE OPTIONS
164
#
246
#
165
multithreading            0
166
numprocessors             auto
247
numprocessors             auto
167
sdlvideofps               0
168
bench                     0
248
bench                     0
169
249
170
#
250
#
171
# VIDEO OPTIONS
251
# OSD VIDEO OPTIONS
172
#
252
#
173
video                     soft
253
video                     auto
174
numscreens                1
254
numscreens                1
175
window                    0
255
window                    0
176
maximize                  1
256
maximize                  1
177
keepaspect                1
178
unevenstretch             1
179
centerh                   1
180
centerv                   1
181
waitvsync                 0
257
waitvsync                 0
182
syncrefresh               0
258
syncrefresh               0
183
scalemode                 none
259
monitorprovider           auto
184
185
#
186
# OpenGL-SPECIFIC OPTIONS
187
#
188
filter                    1
189
prescale                  1
190
gl_forcepow2texture       0
191
gl_notexturerect          0
192
gl_vbo                    1
193
gl_pbo                    1
194
gl_glsl                   0
195
gl_glsl_filter            1
196
glsl_shader.%%MTARGET%%0         none
197
glsl_shader.%%MTARGET%%1         none
198
glsl_shader.%%MTARGET%%2         none
199
glsl_shader.%%MTARGET%%3         none
200
glsl_shader.%%MTARGET%%4         none
201
glsl_shader.%%MTARGET%%5         none
202
glsl_shader.%%MTARGET%%6         none
203
glsl_shader.%%MTARGET%%7         none
204
glsl_shader.%%MTARGET%%8         none
205
glsl_shader.%%MTARGET%%9         none
206
glsl_shader_screen0       none
207
glsl_shader_screen1       none
208
glsl_shader_screen2       none
209
glsl_shader_screen3       none
210
glsl_shader_screen4       none
211
glsl_shader_screen5       none
212
glsl_shader_screen6       none
213
glsl_shader_screen7       none
214
glsl_shader_screen8       none
215
glsl_shader_screen9       none
216
gl_glsl_vid_attr          1
217
260
218
#
261
#
219
# PER-WINDOW VIDEO OPTIONS
262
# OSD PER-WINDOW VIDEO OPTIONS
220
#
263
#
221
screen                    auto
264
screen                    auto
222
aspect                    auto
265
aspect                    auto
Lines 240-261 resolution3 auto Link Here
240
view3                     auto
283
view3                     auto
241
284
242
#
285
#
243
# FULL SCREEN OPTIONS
286
# OSD FULL SCREEN OPTIONS
244
#
287
#
245
switchres                 0
288
switchres                 0
246
useallheads               0
247
289
248
#
290
#
249
# SOUND OPTIONS
291
# OSD ACCELERATED VIDEO OPTIONS
292
#
293
filter                    1
294
prescale                  1
295
296
#
297
# OpenGL-SPECIFIC OPTIONS
298
#
299
gl_forcepow2texture       0
300
gl_notexturerect          0
301
gl_vbo                    1
302
gl_pbo                    1
303
gl_glsl                   0
304
gl_glsl_filter            1
305
glsl_shader_mame0         none
306
glsl_shader_mame1         none
307
glsl_shader_mame2         none
308
glsl_shader_mame3         none
309
glsl_shader_mame4         none
310
glsl_shader_mame5         none
311
glsl_shader_mame6         none
312
glsl_shader_mame7         none
313
glsl_shader_mame8         none
314
glsl_shader_mame9         none
315
glsl_shader_screen0       none
316
glsl_shader_screen1       none
317
glsl_shader_screen2       none
318
glsl_shader_screen3       none
319
glsl_shader_screen4       none
320
glsl_shader_screen5       none
321
glsl_shader_screen6       none
322
glsl_shader_screen7       none
323
glsl_shader_screen8       none
324
glsl_shader_screen9       none
325
326
#
327
# OSD SOUND OPTIONS
250
#
328
#
251
audio_latency             3
329
sound                     auto
330
audio_latency             2
331
332
#
333
# BGFX POST-PROCESSING OPTIONS
334
#
335
bgfx_path                 bgfx
336
bgfx_backend              auto
337
bgfx_debug                0
338
bgfx_screen_chains        default
339
bgfx_shadow_mask          slot-mask.png
340
bgfx_lut                  lut-default.png
341
bgfx_avi_name             auto
342
343
#
344
# SDL PERFORMANCE OPTIONS
345
#
346
sdlvideofps               0
347
348
#
349
# SDL VIDEO OPTIONS
350
#
351
centerh                   1
352
centerv                   1
353
scalemode                 none
354
355
#
356
# SDL FULL SCREEN OPTIONS
357
#
358
useallheads               0
359
attach_window             
252
360
253
#
361
#
254
# SDL KEYBOARD MAPPING
362
# SDL KEYBOARD MAPPING
255
#
363
#
256
keymap                    0
364
keymap                    0
257
keymap_file               keymap.dat
365
keymap_file               keymap.dat
258
uimodekey                 auto
259
366
260
#
367
#
261
# SDL JOYSTICK MAPPING
368
# SDL JOYSTICK MAPPING
Lines 271-278 joy_idx8 auto Link Here
271
sixaxis                   0
378
sixaxis                   0
272
379
273
#
380
#
274
# SDL LOWLEVEL DRIVER OPTIONS
381
# SDL LIGHTGUN MAPPING
382
#
383
lightgun_index1           auto
384
lightgun_index2           auto
385
lightgun_index3           auto
386
lightgun_index4           auto
387
lightgun_index5           auto
388
lightgun_index6           auto
389
lightgun_index7           auto
390
lightgun_index8           auto
391
392
#
393
# SDL MOUSE MAPPING
394
#
395
mouse_index1              auto
396
mouse_index2              auto
397
mouse_index3              auto
398
mouse_index4              auto
399
mouse_index5              auto
400
mouse_index6              auto
401
mouse_index7              auto
402
mouse_index8              auto
403
404
#
405
# SDL KEYBOARD MAPPING
406
#
407
keyb_idx1                 auto
408
keyb_idx2                 auto
409
keyb_idx3                 auto
410
keyb_idx4                 auto
411
keyb_idx5                 auto
412
keyb_idx6                 auto
413
keyb_idx7                 auto
414
keyb_idx8                 auto
415
416
#
417
# SDL LOW-LEVEL DRIVER OPTIONS
275
#
418
#
276
videodriver               auto
419
videodriver               auto
420
renderdriver              auto
277
audiodriver               auto
421
audiodriver               auto
278
gl_lib                    auto
422
gl_lib                    auto
423
424
#
425
# FRONTEND COMMAND OPTIONS
426
#
427
dtd                       1
(-)b/emulators/mame/pkg-descr (-7 / +6 lines)
Lines 1-8 Link Here
1
MAME stands for Multiple Arcade Machine Emulator. When used in
1
MAME is a multi-purpose emulation framework, with the aim of documenting and
2
conjunction with images of the original arcade game's ROM and disk
2
preserving vintage software and hardware from becoming lost. When used with
3
data, MAME attempts to reproduce that game as faithfully as possible
3
vintage firmware (or BIOS), and duplicated Read Only Memory (ROMs), on modern
4
on a more modern general-purpose computer. MAME can currently emulate
4
hardware, users are able to play and explore systems and games from ≆1970
5
several thousand different classic arcade video games from the late
5
through to the modern era.
6
1970s through the modern era.
7
6
8
WWW: http://mamedev.org/
7
WWW: https://mamedev.org/
(-)b/emulators/mame/pkg-plist (-49 / +1614 lines)
Lines 1-10 Link Here
1
bin/castool
2
bin/chdman
3
bin/floptool
4
bin/imgtool
5
bin/jedutil
6
bin/ldresample
7
bin/ldverify
1
bin/%%EMULATOR%%
8
bin/%%EMULATOR%%
2
libexec/mame/chdman
9
bin/nltool
3
libexec/mame/jedutil
10
bin/nlwav
4
libexec/mame/ldresample
11
bin/pngcmp
5
libexec/mame/ldverify
12
bin/regrep
6
libexec/mame/romcmp
13
bin/romcmp
7
libexec/mame/unidasm
14
bin/split
15
bin/srcclean
16
bin/testkeys
17
bin/unidasm
18
man/man1/MAME.1.gz
19
man/man1/castool.1.gz
20
man/man1/chdman.1.gz
21
man/man1/floptool.1.gz
22
man/man1/imgtool.1.gz
23
man/man1/jedutil.1.gz
24
man/man1/ldplayer.1.gz
25
man/man1/ldresample.1.gz
26
man/man1/ldverify.1.gz
27
man/man1/romcmp.1.gz
28
man/man6/%%EMULATOR%%.6.gz
29
%%DATADIR%%/artwork/LICENSE
30
%%DATADIR%%/artwork/README.md
8
%%DATADIR%%/artwork/aperture-grille.png
31
%%DATADIR%%/artwork/aperture-grille.png
9
%%DATADIR%%/artwork/aperture.png
32
%%DATADIR%%/artwork/aperture.png
10
%%DATADIR%%/artwork/aperture1x2rb.png
33
%%DATADIR%%/artwork/aperture1x2rb.png
Lines 13-18 libexec/mame/unidasm Link Here
13
%%DATADIR%%/artwork/aperture2x4rb.png
36
%%DATADIR%%/artwork/aperture2x4rb.png
14
%%DATADIR%%/artwork/aperture4x6.png
37
%%DATADIR%%/artwork/aperture4x6.png
15
%%DATADIR%%/artwork/bgfx/border_blur/default.lay
38
%%DATADIR%%/artwork/bgfx/border_blur/default.lay
39
%%DATADIR%%/artwork/bgfx/chains/crt-geom/add_alpha.py
16
%%DATADIR%%/artwork/bgfx/chains/crt-geom/aperture_1_2_bgr.png
40
%%DATADIR%%/artwork/bgfx/chains/crt-geom/aperture_1_2_bgr.png
17
%%DATADIR%%/artwork/bgfx/chains/crt-geom/aperture_1_4_rgb.png
41
%%DATADIR%%/artwork/bgfx/chains/crt-geom/aperture_1_4_rgb.png
18
%%DATADIR%%/artwork/bgfx/chains/crt-geom/aperture_2_4_rgb.png
42
%%DATADIR%%/artwork/bgfx/chains/crt-geom/aperture_2_4_rgb.png
Lines 29-73 libexec/mame/unidasm Link Here
29
%%DATADIR%%/artwork/bgfx/chains/hq2x.png
53
%%DATADIR%%/artwork/bgfx/chains/hq2x.png
30
%%DATADIR%%/artwork/bgfx/chains/hq3x.png
54
%%DATADIR%%/artwork/bgfx/chains/hq3x.png
31
%%DATADIR%%/artwork/bgfx/chains/hq4x.png
55
%%DATADIR%%/artwork/bgfx/chains/hq4x.png
32
%%DATADIR%%/artwork/chess/bb.png
33
%%DATADIR%%/artwork/chess/bk.png
34
%%DATADIR%%/artwork/chess/bn.png
35
%%DATADIR%%/artwork/chess/bp.png
36
%%DATADIR%%/artwork/chess/bq.png
37
%%DATADIR%%/artwork/chess/br.png
38
%%DATADIR%%/artwork/chess/README.md
56
%%DATADIR%%/artwork/chess/README.md
39
%%DATADIR%%/artwork/chess/wb.png
57
%%DATADIR%%/artwork/chess/bb.svg
40
%%DATADIR%%/artwork/chess/wk.png
58
%%DATADIR%%/artwork/chess/bk.svg
41
%%DATADIR%%/artwork/chess/wn.png
59
%%DATADIR%%/artwork/chess/bn.svg
42
%%DATADIR%%/artwork/chess/wp.png
60
%%DATADIR%%/artwork/chess/bp.svg
43
%%DATADIR%%/artwork/chess/wq.png
61
%%DATADIR%%/artwork/chess/bq.svg
44
%%DATADIR%%/artwork/chess/wr.png
62
%%DATADIR%%/artwork/chess/br.svg
63
%%DATADIR%%/artwork/chess/wb.svg
64
%%DATADIR%%/artwork/chess/wk.svg
65
%%DATADIR%%/artwork/chess/wn.svg
66
%%DATADIR%%/artwork/chess/wp.svg
67
%%DATADIR%%/artwork/chess/wq.svg
68
%%DATADIR%%/artwork/chess/wr.svg
45
%%DATADIR%%/artwork/dir.txt
69
%%DATADIR%%/artwork/dir.txt
46
%%DATADIR%%/artwork/LICENSE
70
%%DATADIR%%/artwork/lut-default.png
47
%%DATADIR%%/artwork/monochrome-chessboard.png
71
%%DATADIR%%/artwork/monochrome-chessboard.png
48
%%DATADIR%%/artwork/monochrome-matrix.png
72
%%DATADIR%%/artwork/monochrome-matrix.png
49
%%DATADIR%%/artwork/README.md
50
%%DATADIR%%/artwork/scanlines.png
73
%%DATADIR%%/artwork/scanlines.png
51
%%DATADIR%%/artwork/shadow-mask.png
74
%%DATADIR%%/artwork/shadow-mask.png
52
%%DATADIR%%/artwork/slot-mask-aligned.png
75
%%DATADIR%%/artwork/slot-mask-aligned.png
53
%%DATADIR%%/artwork/slot-mask.png
76
%%DATADIR%%/artwork/slot-mask.png
54
%%DATADIR%%/artwork/white.png
77
%%DATADIR%%/artwork/white.png
78
%%DATADIR%%/bgfx/LICENSE
79
%%DATADIR%%/bgfx/README.md
80
%%DATADIR%%/bgfx/chains/Fighters.json
81
%%DATADIR%%/bgfx/chains/LICENSE
82
%%DATADIR%%/bgfx/chains/README.md
83
%%DATADIR%%/bgfx/chains/crt-geom-deluxe.json
84
%%DATADIR%%/bgfx/chains/crt-geom.json
85
%%DATADIR%%/bgfx/chains/default.json
86
%%DATADIR%%/bgfx/chains/eagle/super-eagle.json
87
%%DATADIR%%/bgfx/chains/hlsl.json
88
%%DATADIR%%/bgfx/chains/hqx/hq2x.json
89
%%DATADIR%%/bgfx/chains/hqx/hq3x.json
90
%%DATADIR%%/bgfx/chains/hqx/hq4x.json
91
%%DATADIR%%/bgfx/chains/lcd-grid.json
92
%%DATADIR%%/bgfx/chains/lut.json
93
%%DATADIR%%/bgfx/chains/pillarbox_left_horizontal.json
94
%%DATADIR%%/bgfx/chains/pillarbox_left_vertical.json
95
%%DATADIR%%/bgfx/chains/pillarbox_right_horizontal.json
96
%%DATADIR%%/bgfx/chains/pillarbox_right_vertical.json
97
%%DATADIR%%/bgfx/chains/unfiltered.json
98
%%DATADIR%%/bgfx/chains/xbr/super-2xbr-3d-2p.json
99
%%DATADIR%%/bgfx/chains/xbr/super-2xbr-3d-3p-smoother.json
100
%%DATADIR%%/bgfx/chains/xbr/super-4xbr-3d-4p.json
101
%%DATADIR%%/bgfx/chains/xbr/super-4xbr-3d-6p-smoother.json
102
%%DATADIR%%/bgfx/chains/xbr/super-xbr-2p.json
103
%%DATADIR%%/bgfx/chains/xbr/super-xbr-3p-smoother.json
104
%%DATADIR%%/bgfx/chains/xbr/super-xbr-6p.json
105
%%DATADIR%%/bgfx/chains/xbr/super-xbr-deposterize.json
106
%%DATADIR%%/bgfx/chains/xbr/super-xbr-fast-3p.json
107
%%DATADIR%%/bgfx/chains/xbr/super-xbr-fast-6p.json
108
%%DATADIR%%/bgfx/chains/xbr/xbr-hybrid.json
109
%%DATADIR%%/bgfx/chains/xbr/xbr-lv1-noblend.json
110
%%DATADIR%%/bgfx/chains/xbr/xbr-lv2-3d.json
111
%%DATADIR%%/bgfx/chains/xbr/xbr-lv2-accuracy-multipass.json
112
%%DATADIR%%/bgfx/chains/xbr/xbr-lv2-accuracy-smart-blur.json
113
%%DATADIR%%/bgfx/chains/xbr/xbr-lv2-deposterize.json
114
%%DATADIR%%/bgfx/chains/xbr/xbr-lv2-fast.json
115
%%DATADIR%%/bgfx/chains/xbr/xbr-lv2-multipass.json
116
%%DATADIR%%/bgfx/chains/xbr/xbr-lv2-noblend.json
117
%%DATADIR%%/bgfx/chains/xbr/xbr-lv2.json
118
%%DATADIR%%/bgfx/chains/xbr/xbr-lv3-multipass.json
119
%%DATADIR%%/bgfx/chains/xbr/xbr-lv3-noblend.json
120
%%DATADIR%%/bgfx/chains/xbr/xbr-lv3.json
121
%%DATADIR%%/bgfx/chains/xbr/xbr-mlv4-dilation.json
122
%%DATADIR%%/bgfx/chains/xbr/xbr-mlv4-multipass.json
123
%%DATADIR%%/bgfx/effects/LICENSE
124
%%DATADIR%%/bgfx/effects/README.md
125
%%DATADIR%%/bgfx/effects/blurs/smart-blur.json
126
%%DATADIR%%/bgfx/effects/crt-geom/crt-geom-deluxe.json
127
%%DATADIR%%/bgfx/effects/crt-geom/crt-geom.json
128
%%DATADIR%%/bgfx/effects/crt-geom/gaussx.json
129
%%DATADIR%%/bgfx/effects/crt-geom/gaussy.json
130
%%DATADIR%%/bgfx/effects/crt-geom/lowpass.json
131
%%DATADIR%%/bgfx/effects/crt-geom/mipmap8.json
132
%%DATADIR%%/bgfx/effects/crt-geom/phosphor_apply.json
133
%%DATADIR%%/bgfx/effects/crt-geom/phosphor_update.json
134
%%DATADIR%%/bgfx/effects/default/LICENSE
135
%%DATADIR%%/bgfx/effects/default/README.md
136
%%DATADIR%%/bgfx/effects/default/blit.json
137
%%DATADIR%%/bgfx/effects/eagle/supereagle.json
138
%%DATADIR%%/bgfx/effects/gui_add.json
139
%%DATADIR%%/bgfx/effects/gui_blend.json
140
%%DATADIR%%/bgfx/effects/gui_multiply.json
141
%%DATADIR%%/bgfx/effects/gui_opaque.json
142
%%DATADIR%%/bgfx/effects/hlsl/LICENSE
143
%%DATADIR%%/bgfx/effects/hlsl/README.md
144
%%DATADIR%%/bgfx/effects/hlsl/blit.json
145
%%DATADIR%%/bgfx/effects/hlsl/chroma.json
146
%%DATADIR%%/bgfx/effects/hlsl/color.json
147
%%DATADIR%%/bgfx/effects/hlsl/deconverge.json
148
%%DATADIR%%/bgfx/effects/hlsl/defocus.json
149
%%DATADIR%%/bgfx/effects/hlsl/distortion.json
150
%%DATADIR%%/bgfx/effects/hlsl/ntsc_decode.json
151
%%DATADIR%%/bgfx/effects/hlsl/ntsc_encode.json
152
%%DATADIR%%/bgfx/effects/hlsl/phosphor.json
153
%%DATADIR%%/bgfx/effects/hlsl/post.json
154
%%DATADIR%%/bgfx/effects/hlsl/prescale.json
155
%%DATADIR%%/bgfx/effects/hlsl/scanline.json
156
%%DATADIR%%/bgfx/effects/hqx/hq2x.json
157
%%DATADIR%%/bgfx/effects/hqx/hq3x.json
158
%%DATADIR%%/bgfx/effects/hqx/hq4x.json
159
%%DATADIR%%/bgfx/effects/lcd-grid/lcd-grid.json
160
%%DATADIR%%/bgfx/effects/lcd-grid/persistence.json
161
%%DATADIR%%/bgfx/effects/misc/bcg_adjust.json
162
%%DATADIR%%/bgfx/effects/misc/blit.json
163
%%DATADIR%%/bgfx/effects/misc/blit_palette16.json
164
%%DATADIR%%/bgfx/effects/misc/deposterize-pass0.json
165
%%DATADIR%%/bgfx/effects/misc/deposterize-pass1.json
166
%%DATADIR%%/bgfx/effects/misc/lut.json
167
%%DATADIR%%/bgfx/effects/misc/saturation.json
168
%%DATADIR%%/bgfx/effects/misc/texconv_palette16.json
169
%%DATADIR%%/bgfx/effects/misc/texconv_rgb32.json
170
%%DATADIR%%/bgfx/effects/misc/texconv_yuy16.json
171
%%DATADIR%%/bgfx/effects/pillarbox_left_horizontal/gaussian.json
172
%%DATADIR%%/bgfx/effects/pillarbox_left_horizontal/offset_sat.json
173
%%DATADIR%%/bgfx/effects/pillarbox_left_vertical/gaussian.json
174
%%DATADIR%%/bgfx/effects/pillarbox_left_vertical/offset_sat.json
175
%%DATADIR%%/bgfx/effects/pillarbox_right_horizontal/gaussian.json
176
%%DATADIR%%/bgfx/effects/pillarbox_right_horizontal/offset_sat.json
177
%%DATADIR%%/bgfx/effects/pillarbox_right_vertical/gaussian.json
178
%%DATADIR%%/bgfx/effects/pillarbox_right_vertical/offset_sat.json
179
%%DATADIR%%/bgfx/effects/screen_add.json
180
%%DATADIR%%/bgfx/effects/screen_blend.json
181
%%DATADIR%%/bgfx/effects/screen_multiply.json
182
%%DATADIR%%/bgfx/effects/screen_opaque.json
183
%%DATADIR%%/bgfx/effects/unfiltered/LICENSE
184
%%DATADIR%%/bgfx/effects/unfiltered/README.md
185
%%DATADIR%%/bgfx/effects/unfiltered/blit.json
186
%%DATADIR%%/bgfx/effects/warp/dilation-horizontal-fast.json
187
%%DATADIR%%/bgfx/effects/xbr/super-xbr/custom-jinc2-sharper.json
188
%%DATADIR%%/bgfx/effects/xbr/super-xbr/super-2xbr-3d-pass0.json
189
%%DATADIR%%/bgfx/effects/xbr/super-xbr/super-2xbr-3d-pass1.json
190
%%DATADIR%%/bgfx/effects/xbr/super-xbr/super-2xbr-3d-pass2.json
191
%%DATADIR%%/bgfx/effects/xbr/super-xbr/super-4xbr-3d-pass0.json
192
%%DATADIR%%/bgfx/effects/xbr/super-xbr/super-4xbr-3d-pass1.json
193
%%DATADIR%%/bgfx/effects/xbr/super-xbr/super-4xbr-3d-pass2.json
194
%%DATADIR%%/bgfx/effects/xbr/super-xbr/super-4xbr-3d-pass3.json
195
%%DATADIR%%/bgfx/effects/xbr/super-xbr/super-xbr-fast-pass0.json
196
%%DATADIR%%/bgfx/effects/xbr/super-xbr/super-xbr-fast-pass1.json
197
%%DATADIR%%/bgfx/effects/xbr/super-xbr/super-xbr-fast-pass2.json
198
%%DATADIR%%/bgfx/effects/xbr/super-xbr/super-xbr-pass0.json
199
%%DATADIR%%/bgfx/effects/xbr/super-xbr/super-xbr-pass1.json
200
%%DATADIR%%/bgfx/effects/xbr/super-xbr/super-xbr-pass2.json
201
%%DATADIR%%/bgfx/effects/xbr/xbr-hybrid/2xbr-hybrid-sharp.json
202
%%DATADIR%%/bgfx/effects/xbr/xbr-hybrid/2xbr-hybrid-v2-gamma.json
203
%%DATADIR%%/bgfx/effects/xbr/xbr-hybrid/2xbr-hybrid-v2.json
204
%%DATADIR%%/bgfx/effects/xbr/xbr-hybrid/2xbr-hybrid-v4-gamma.json
205
%%DATADIR%%/bgfx/effects/xbr/xbr-hybrid/2xbr-hybrid-v4.json
206
%%DATADIR%%/bgfx/effects/xbr/xbr-hybrid/2xbr-hybrid-v4b.json
207
%%DATADIR%%/bgfx/effects/xbr/xbr-hybrid/2xbr-hybrid-v5-gamma.json
208
%%DATADIR%%/bgfx/effects/xbr/xbr-hybrid/2xbr-hybrid.json
209
%%DATADIR%%/bgfx/effects/xbr/xbr-lv1-noblend.json
210
%%DATADIR%%/bgfx/effects/xbr/xbr-lv2-3d.json
211
%%DATADIR%%/bgfx/effects/xbr/xbr-lv2-fast.json
212
%%DATADIR%%/bgfx/effects/xbr/xbr-lv2-multipass/xbr-lv2-a-pass0.json
213
%%DATADIR%%/bgfx/effects/xbr/xbr-lv2-multipass/xbr-lv2-accuracy-pass0.json
214
%%DATADIR%%/bgfx/effects/xbr/xbr-lv2-multipass/xbr-lv2-accuracy-pass1.json
215
%%DATADIR%%/bgfx/effects/xbr/xbr-lv2-multipass/xbr-lv2-b-pass0.json
216
%%DATADIR%%/bgfx/effects/xbr/xbr-lv2-multipass/xbr-lv2-c-pass0.json
217
%%DATADIR%%/bgfx/effects/xbr/xbr-lv2-multipass/xbr-lv2-d-pass0.json
218
%%DATADIR%%/bgfx/effects/xbr/xbr-lv2-multipass/xbr-lv2-noblend-pass1.json
219
%%DATADIR%%/bgfx/effects/xbr/xbr-lv2-multipass/xbr-lv2-pass1.json
220
%%DATADIR%%/bgfx/effects/xbr/xbr-lv2-noblend.json
221
%%DATADIR%%/bgfx/effects/xbr/xbr-lv2.json
222
%%DATADIR%%/bgfx/effects/xbr/xbr-lv3-multipass/xbr-lv3-pass0.json
223
%%DATADIR%%/bgfx/effects/xbr/xbr-lv3-multipass/xbr-lv3-pass1.json
224
%%DATADIR%%/bgfx/effects/xbr/xbr-lv3-noblend.json
225
%%DATADIR%%/bgfx/effects/xbr/xbr-lv3.json
226
%%DATADIR%%/bgfx/effects/xbr/xbr-mlv4-multipass/xbr-mlv4-pass1.json
227
%%DATADIR%%/bgfx/effects/xbr/xbr-mlv4-multipass/xbr-mlv4-pass2.json
228
%%DATADIR%%/bgfx/effects/xbr/xbr-mlv4-multipass/xbr-mlv4-pass3.json
229
%%DATADIR%%/bgfx/effects/xbr/xbr-mlv4-multipass/xbr-mlv4-pass4.json
230
%%DATADIR%%/bgfx/layouts/sample/horizontal/default.lay
231
%%DATADIR%%/bgfx/layouts/sample/vertical/default.lay
232
%%DATADIR%%/bgfx/shaders/dx11/chains/blurs/fs_smart-blur.bin
233
%%DATADIR%%/bgfx/shaders/dx11/chains/blurs/vs_smart-blur.bin
234
%%DATADIR%%/bgfx/shaders/dx11/chains/crt-geom/fs_crt-geom-deluxe.bin
235
%%DATADIR%%/bgfx/shaders/dx11/chains/crt-geom/fs_crt-geom.bin
236
%%DATADIR%%/bgfx/shaders/dx11/chains/crt-geom/fs_gaussx.bin
237
%%DATADIR%%/bgfx/shaders/dx11/chains/crt-geom/fs_gaussy.bin
238
%%DATADIR%%/bgfx/shaders/dx11/chains/crt-geom/fs_lowpass.bin
239
%%DATADIR%%/bgfx/shaders/dx11/chains/crt-geom/fs_mipmap8.bin
240
%%DATADIR%%/bgfx/shaders/dx11/chains/crt-geom/fs_phosphor_apply.bin
241
%%DATADIR%%/bgfx/shaders/dx11/chains/crt-geom/fs_phosphor_update.bin
242
%%DATADIR%%/bgfx/shaders/dx11/chains/crt-geom/vs_crt-geom.bin
243
%%DATADIR%%/bgfx/shaders/dx11/chains/crt-geom/vs_gaussx.bin
244
%%DATADIR%%/bgfx/shaders/dx11/chains/crt-geom/vs_gaussy.bin
245
%%DATADIR%%/bgfx/shaders/dx11/chains/crt-geom/vs_lowpass.bin
246
%%DATADIR%%/bgfx/shaders/dx11/chains/crt-geom/vs_mipmap8.bin
247
%%DATADIR%%/bgfx/shaders/dx11/chains/crt-geom/vs_phosphor_apply.bin
248
%%DATADIR%%/bgfx/shaders/dx11/chains/crt-geom/vs_phosphor_update.bin
249
%%DATADIR%%/bgfx/shaders/dx11/chains/crt/fs_crt-caligari.bin
250
%%DATADIR%%/bgfx/shaders/dx11/chains/crt/vs_crt-caligari.bin
251
%%DATADIR%%/bgfx/shaders/dx11/chains/default/fs_blit.bin
252
%%DATADIR%%/bgfx/shaders/dx11/chains/default/vs_blit.bin
253
%%DATADIR%%/bgfx/shaders/dx11/chains/eagle/fs_eagle.bin
254
%%DATADIR%%/bgfx/shaders/dx11/chains/eagle/vs_eagle.bin
255
%%DATADIR%%/bgfx/shaders/dx11/chains/hlsl/fs_chroma.bin
256
%%DATADIR%%/bgfx/shaders/dx11/chains/hlsl/fs_color.bin
257
%%DATADIR%%/bgfx/shaders/dx11/chains/hlsl/fs_deconverge.bin
258
%%DATADIR%%/bgfx/shaders/dx11/chains/hlsl/fs_defocus.bin
259
%%DATADIR%%/bgfx/shaders/dx11/chains/hlsl/fs_distortion.bin
260
%%DATADIR%%/bgfx/shaders/dx11/chains/hlsl/fs_ntsc_decode.bin
261
%%DATADIR%%/bgfx/shaders/dx11/chains/hlsl/fs_ntsc_encode.bin
262
%%DATADIR%%/bgfx/shaders/dx11/chains/hlsl/fs_phosphor.bin
263
%%DATADIR%%/bgfx/shaders/dx11/chains/hlsl/fs_post.bin
264
%%DATADIR%%/bgfx/shaders/dx11/chains/hlsl/fs_prescale.bin
265
%%DATADIR%%/bgfx/shaders/dx11/chains/hlsl/fs_scanline.bin
266
%%DATADIR%%/bgfx/shaders/dx11/chains/hlsl/vs_chroma.bin
267
%%DATADIR%%/bgfx/shaders/dx11/chains/hlsl/vs_color.bin
268
%%DATADIR%%/bgfx/shaders/dx11/chains/hlsl/vs_deconverge.bin
269
%%DATADIR%%/bgfx/shaders/dx11/chains/hlsl/vs_defocus.bin
270
%%DATADIR%%/bgfx/shaders/dx11/chains/hlsl/vs_distortion.bin
271
%%DATADIR%%/bgfx/shaders/dx11/chains/hlsl/vs_ntsc_decode.bin
272
%%DATADIR%%/bgfx/shaders/dx11/chains/hlsl/vs_ntsc_encode.bin
273
%%DATADIR%%/bgfx/shaders/dx11/chains/hlsl/vs_phosphor.bin
274
%%DATADIR%%/bgfx/shaders/dx11/chains/hlsl/vs_post.bin
275
%%DATADIR%%/bgfx/shaders/dx11/chains/hlsl/vs_prescale.bin
276
%%DATADIR%%/bgfx/shaders/dx11/chains/hlsl/vs_scanline.bin
277
%%DATADIR%%/bgfx/shaders/dx11/chains/hqx/fs_hq2x.bin
278
%%DATADIR%%/bgfx/shaders/dx11/chains/hqx/fs_hq3x.bin
279
%%DATADIR%%/bgfx/shaders/dx11/chains/hqx/fs_hq4x.bin
280
%%DATADIR%%/bgfx/shaders/dx11/chains/hqx/vs_hq2x.bin
281
%%DATADIR%%/bgfx/shaders/dx11/chains/hqx/vs_hq3x.bin
282
%%DATADIR%%/bgfx/shaders/dx11/chains/hqx/vs_hq4x.bin
283
%%DATADIR%%/bgfx/shaders/dx11/chains/lcd-grid/fs_lcd-grid.bin
284
%%DATADIR%%/bgfx/shaders/dx11/chains/lcd-grid/fs_persistence.bin
285
%%DATADIR%%/bgfx/shaders/dx11/chains/lcd-grid/vs_lcd-grid.bin
286
%%DATADIR%%/bgfx/shaders/dx11/chains/lcd-grid/vs_persistence.bin
287
%%DATADIR%%/bgfx/shaders/dx11/chains/misc/fs_blit.bin
288
%%DATADIR%%/bgfx/shaders/dx11/chains/misc/fs_blit_bcg.bin
289
%%DATADIR%%/bgfx/shaders/dx11/chains/misc/fs_blit_palette16.bin
290
%%DATADIR%%/bgfx/shaders/dx11/chains/misc/fs_blit_rgb32.bin
291
%%DATADIR%%/bgfx/shaders/dx11/chains/misc/fs_blit_yuy16.bin
292
%%DATADIR%%/bgfx/shaders/dx11/chains/misc/fs_bob-and-ghost-deinterlace.bin
293
%%DATADIR%%/bgfx/shaders/dx11/chains/misc/fs_deposterize-pass0.bin
294
%%DATADIR%%/bgfx/shaders/dx11/chains/misc/fs_deposterize-pass1.bin
295
%%DATADIR%%/bgfx/shaders/dx11/chains/misc/fs_lut.bin
296
%%DATADIR%%/bgfx/shaders/dx11/chains/misc/fs_saturation.bin
297
%%DATADIR%%/bgfx/shaders/dx11/chains/misc/vs_blit.bin
298
%%DATADIR%%/bgfx/shaders/dx11/chains/misc/vs_bob-and-ghost-deinterlace.bin
299
%%DATADIR%%/bgfx/shaders/dx11/chains/misc/vs_deposterize-pass0.bin
300
%%DATADIR%%/bgfx/shaders/dx11/chains/misc/vs_deposterize-pass1.bin
301
%%DATADIR%%/bgfx/shaders/dx11/chains/misc/vs_lut.bin
302
%%DATADIR%%/bgfx/shaders/dx11/chains/misc/vs_saturation.bin
303
%%DATADIR%%/bgfx/shaders/dx11/chains/pillarbox_left_horizontal/fs_gaussian.bin
304
%%DATADIR%%/bgfx/shaders/dx11/chains/pillarbox_left_horizontal/fs_offset_sat.bin
305
%%DATADIR%%/bgfx/shaders/dx11/chains/pillarbox_left_horizontal/vs_gaussian.bin
306
%%DATADIR%%/bgfx/shaders/dx11/chains/pillarbox_left_horizontal/vs_offset_sat.bin
307
%%DATADIR%%/bgfx/shaders/dx11/chains/pillarbox_left_vertical/fs_gaussian.bin
308
%%DATADIR%%/bgfx/shaders/dx11/chains/pillarbox_left_vertical/fs_offset_sat.bin
309
%%DATADIR%%/bgfx/shaders/dx11/chains/pillarbox_left_vertical/vs_gaussian.bin
310
%%DATADIR%%/bgfx/shaders/dx11/chains/pillarbox_left_vertical/vs_offset_sat.bin
311
%%DATADIR%%/bgfx/shaders/dx11/chains/pillarbox_right_horizontal/fs_gaussian.bin
312
%%DATADIR%%/bgfx/shaders/dx11/chains/pillarbox_right_horizontal/fs_offset_sat.bin
313
%%DATADIR%%/bgfx/shaders/dx11/chains/pillarbox_right_horizontal/vs_gaussian.bin
314
%%DATADIR%%/bgfx/shaders/dx11/chains/pillarbox_right_horizontal/vs_offset_sat.bin
315
%%DATADIR%%/bgfx/shaders/dx11/chains/pillarbox_right_vertical/fs_gaussian.bin
316
%%DATADIR%%/bgfx/shaders/dx11/chains/pillarbox_right_vertical/fs_offset_sat.bin
317
%%DATADIR%%/bgfx/shaders/dx11/chains/pillarbox_right_vertical/vs_gaussian.bin
318
%%DATADIR%%/bgfx/shaders/dx11/chains/pillarbox_right_vertical/vs_offset_sat.bin
319
%%DATADIR%%/bgfx/shaders/dx11/chains/unfiltered/fs_blit.bin
320
%%DATADIR%%/bgfx/shaders/dx11/chains/unfiltered/vs_blit.bin
321
%%DATADIR%%/bgfx/shaders/dx11/chains/warp/fs_dilation-horizontal-fast.bin
322
%%DATADIR%%/bgfx/shaders/dx11/chains/warp/vs_dilation-horizontal-fast.bin
323
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/fs_xbr-lv1-noblend.bin
324
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/fs_xbr-lv2-3d.bin
325
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/fs_xbr-lv2-fast.bin
326
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/fs_xbr-lv2-noblend.bin
327
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/fs_xbr-lv2.bin
328
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/fs_xbr-lv3-noblend.bin
329
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/fs_xbr-lv3.bin
330
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/fs_custom-jinc2-sharper.bin
331
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/fs_super-2xbr-3d-pass0.bin
332
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/fs_super-2xbr-3d-pass1.bin
333
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/fs_super-2xbr-3d-pass2.bin
334
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/fs_super-4xbr-3d-pass0.bin
335
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/fs_super-4xbr-3d-pass1.bin
336
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/fs_super-4xbr-3d-pass1f.bin
337
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/fs_super-4xbr-3d-pass2.bin
338
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/fs_super-4xbr-3d-pass3.bin
339
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/fs_super-4xbr-3d-pass3f.bin
340
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/fs_super-xbr-fast-pass0.bin
341
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/fs_super-xbr-fast-pass1.bin
342
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/fs_super-xbr-fast-pass2.bin
343
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/fs_super-xbr-pass0.bin
344
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/fs_super-xbr-pass1.bin
345
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/fs_super-xbr-pass2.bin
346
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/vs_custom-jinc2-sharper.bin
347
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/vs_super-2xbr-3d-pass0.bin
348
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/vs_super-2xbr-3d-pass1.bin
349
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/vs_super-2xbr-3d-pass2.bin
350
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/vs_super-4xbr-3d-pass0.bin
351
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/vs_super-4xbr-3d-pass1.bin
352
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/vs_super-4xbr-3d-pass1f.bin
353
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/vs_super-4xbr-3d-pass2.bin
354
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/vs_super-4xbr-3d-pass3.bin
355
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/vs_super-4xbr-3d-pass3f.bin
356
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/vs_super-xbr-fast-pass0.bin
357
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/vs_super-xbr-fast-pass1.bin
358
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/vs_super-xbr-fast-pass2.bin
359
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/vs_super-xbr-pass0.bin
360
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/vs_super-xbr-pass1.bin
361
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/vs_super-xbr-pass2.bin
362
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/vs_super-xbr-pass3.bin
363
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/vs_xbr-lv1-noblend.bin
364
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/vs_xbr-lv2-3d.bin
365
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/vs_xbr-lv2-fast.bin
366
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/vs_xbr-lv2-noblend.bin
367
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/vs_xbr-lv2.bin
368
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/vs_xbr-lv3-noblend.bin
369
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/vs_xbr-lv3.bin
370
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-sharp.bin
371
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v2-gamma.bin
372
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v2.bin
373
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v4-gamma.bin
374
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v4.bin
375
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v4b.bin
376
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v5-gamma.bin
377
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-hybrid/fs_2xbr-hybrid.bin
378
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-sharp.bin
379
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v2-gamma.bin
380
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v2.bin
381
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v4-gamma.bin
382
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v4.bin
383
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v4b.bin
384
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v5-gamma.bin
385
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-hybrid/vs_2xbr-hybrid.bin
386
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-a-pass0.bin
387
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-accuracy-pass0.bin
388
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-accuracy-pass1.bin
389
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-b-pass0.bin
390
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-c-pass0.bin
391
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-d-pass0.bin
392
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-noblend-pass1.bin
393
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-pass1.bin
394
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-a-pass0.bin
395
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-accuracy-pass0.bin
396
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-accuracy-pass1.bin
397
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-b-pass0.bin
398
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-c-pass0.bin
399
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-d-pass0.bin
400
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-noblend-pass1.bin
401
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-pass1.bin
402
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-lv3-multipass/fs_xbr-lv3-pass0.bin
403
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-lv3-multipass/fs_xbr-lv3-pass1.bin
404
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-lv3-multipass/vs_xbr-lv3-pass0.bin
405
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-lv3-multipass/vs_xbr-lv3-pass1.bin
406
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass1.bin
407
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass2.bin
408
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass3.bin
409
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass4.bin
410
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass1.bin
411
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass2.bin
412
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass3.bin
413
%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass4.bin
414
%%DATADIR%%/bgfx/shaders/dx11/fs_gui.bin
415
%%DATADIR%%/bgfx/shaders/dx11/fs_screen.bin
416
%%DATADIR%%/bgfx/shaders/dx11/vs_gui.bin
417
%%DATADIR%%/bgfx/shaders/dx11/vs_screen.bin
418
%%DATADIR%%/bgfx/shaders/dx9/chains/blurs/fs_smart-blur.bin
419
%%DATADIR%%/bgfx/shaders/dx9/chains/blurs/vs_smart-blur.bin
420
%%DATADIR%%/bgfx/shaders/dx9/chains/crt-geom/fs_crt-geom-deluxe.bin
421
%%DATADIR%%/bgfx/shaders/dx9/chains/crt-geom/fs_crt-geom.bin
422
%%DATADIR%%/bgfx/shaders/dx9/chains/crt-geom/fs_gaussx.bin
423
%%DATADIR%%/bgfx/shaders/dx9/chains/crt-geom/fs_gaussy.bin
424
%%DATADIR%%/bgfx/shaders/dx9/chains/crt-geom/fs_lowpass.bin
425
%%DATADIR%%/bgfx/shaders/dx9/chains/crt-geom/fs_mipmap8.bin
426
%%DATADIR%%/bgfx/shaders/dx9/chains/crt-geom/fs_phosphor_apply.bin
427
%%DATADIR%%/bgfx/shaders/dx9/chains/crt-geom/fs_phosphor_update.bin
428
%%DATADIR%%/bgfx/shaders/dx9/chains/crt-geom/vs_crt-geom.bin
429
%%DATADIR%%/bgfx/shaders/dx9/chains/crt-geom/vs_gaussx.bin
430
%%DATADIR%%/bgfx/shaders/dx9/chains/crt-geom/vs_gaussy.bin
431
%%DATADIR%%/bgfx/shaders/dx9/chains/crt-geom/vs_lowpass.bin
432
%%DATADIR%%/bgfx/shaders/dx9/chains/crt-geom/vs_mipmap8.bin
433
%%DATADIR%%/bgfx/shaders/dx9/chains/crt-geom/vs_phosphor_apply.bin
434
%%DATADIR%%/bgfx/shaders/dx9/chains/crt-geom/vs_phosphor_update.bin
435
%%DATADIR%%/bgfx/shaders/dx9/chains/crt/fs_crt-caligari.bin
436
%%DATADIR%%/bgfx/shaders/dx9/chains/crt/vs_crt-caligari.bin
437
%%DATADIR%%/bgfx/shaders/dx9/chains/default/fs_blit.bin
438
%%DATADIR%%/bgfx/shaders/dx9/chains/default/vs_blit.bin
439
%%DATADIR%%/bgfx/shaders/dx9/chains/eagle/fs_eagle.bin
440
%%DATADIR%%/bgfx/shaders/dx9/chains/eagle/vs_eagle.bin
441
%%DATADIR%%/bgfx/shaders/dx9/chains/hlsl/fs_chroma.bin
442
%%DATADIR%%/bgfx/shaders/dx9/chains/hlsl/fs_color.bin
443
%%DATADIR%%/bgfx/shaders/dx9/chains/hlsl/fs_deconverge.bin
444
%%DATADIR%%/bgfx/shaders/dx9/chains/hlsl/fs_defocus.bin
445
%%DATADIR%%/bgfx/shaders/dx9/chains/hlsl/fs_distortion.bin
446
%%DATADIR%%/bgfx/shaders/dx9/chains/hlsl/fs_ntsc_decode.bin
447
%%DATADIR%%/bgfx/shaders/dx9/chains/hlsl/fs_ntsc_encode.bin
448
%%DATADIR%%/bgfx/shaders/dx9/chains/hlsl/fs_phosphor.bin
449
%%DATADIR%%/bgfx/shaders/dx9/chains/hlsl/fs_post.bin
450
%%DATADIR%%/bgfx/shaders/dx9/chains/hlsl/fs_prescale.bin
451
%%DATADIR%%/bgfx/shaders/dx9/chains/hlsl/fs_scanline.bin
452
%%DATADIR%%/bgfx/shaders/dx9/chains/hlsl/vs_chroma.bin
453
%%DATADIR%%/bgfx/shaders/dx9/chains/hlsl/vs_color.bin
454
%%DATADIR%%/bgfx/shaders/dx9/chains/hlsl/vs_deconverge.bin
455
%%DATADIR%%/bgfx/shaders/dx9/chains/hlsl/vs_defocus.bin
456
%%DATADIR%%/bgfx/shaders/dx9/chains/hlsl/vs_distortion.bin
457
%%DATADIR%%/bgfx/shaders/dx9/chains/hlsl/vs_ntsc_decode.bin
458
%%DATADIR%%/bgfx/shaders/dx9/chains/hlsl/vs_ntsc_encode.bin
459
%%DATADIR%%/bgfx/shaders/dx9/chains/hlsl/vs_phosphor.bin
460
%%DATADIR%%/bgfx/shaders/dx9/chains/hlsl/vs_post.bin
461
%%DATADIR%%/bgfx/shaders/dx9/chains/hlsl/vs_prescale.bin
462
%%DATADIR%%/bgfx/shaders/dx9/chains/hlsl/vs_scanline.bin
463
%%DATADIR%%/bgfx/shaders/dx9/chains/hqx/fs_hq2x.bin
464
%%DATADIR%%/bgfx/shaders/dx9/chains/hqx/fs_hq3x.bin
465
%%DATADIR%%/bgfx/shaders/dx9/chains/hqx/fs_hq4x.bin
466
%%DATADIR%%/bgfx/shaders/dx9/chains/hqx/vs_hq2x.bin
467
%%DATADIR%%/bgfx/shaders/dx9/chains/hqx/vs_hq3x.bin
468
%%DATADIR%%/bgfx/shaders/dx9/chains/hqx/vs_hq4x.bin
469
%%DATADIR%%/bgfx/shaders/dx9/chains/lcd-grid/fs_lcd-grid.bin
470
%%DATADIR%%/bgfx/shaders/dx9/chains/lcd-grid/fs_persistence.bin
471
%%DATADIR%%/bgfx/shaders/dx9/chains/lcd-grid/vs_lcd-grid.bin
472
%%DATADIR%%/bgfx/shaders/dx9/chains/lcd-grid/vs_persistence.bin
473
%%DATADIR%%/bgfx/shaders/dx9/chains/misc/fs_blit.bin
474
%%DATADIR%%/bgfx/shaders/dx9/chains/misc/fs_blit_bcg.bin
475
%%DATADIR%%/bgfx/shaders/dx9/chains/misc/fs_blit_palette16.bin
476
%%DATADIR%%/bgfx/shaders/dx9/chains/misc/fs_blit_rgb32.bin
477
%%DATADIR%%/bgfx/shaders/dx9/chains/misc/fs_blit_yuy16.bin
478
%%DATADIR%%/bgfx/shaders/dx9/chains/misc/fs_bob-and-ghost-deinterlace.bin
479
%%DATADIR%%/bgfx/shaders/dx9/chains/misc/fs_deposterize-pass0.bin
480
%%DATADIR%%/bgfx/shaders/dx9/chains/misc/fs_deposterize-pass1.bin
481
%%DATADIR%%/bgfx/shaders/dx9/chains/misc/fs_lut.bin
482
%%DATADIR%%/bgfx/shaders/dx9/chains/misc/fs_saturation.bin
483
%%DATADIR%%/bgfx/shaders/dx9/chains/misc/vs_blit.bin
484
%%DATADIR%%/bgfx/shaders/dx9/chains/misc/vs_bob-and-ghost-deinterlace.bin
485
%%DATADIR%%/bgfx/shaders/dx9/chains/misc/vs_deposterize-pass0.bin
486
%%DATADIR%%/bgfx/shaders/dx9/chains/misc/vs_deposterize-pass1.bin
487
%%DATADIR%%/bgfx/shaders/dx9/chains/misc/vs_lut.bin
488
%%DATADIR%%/bgfx/shaders/dx9/chains/misc/vs_saturation.bin
489
%%DATADIR%%/bgfx/shaders/dx9/chains/pillarbox_left_horizontal/fs_gaussian.bin
490
%%DATADIR%%/bgfx/shaders/dx9/chains/pillarbox_left_horizontal/fs_offset_sat.bin
491
%%DATADIR%%/bgfx/shaders/dx9/chains/pillarbox_left_horizontal/vs_gaussian.bin
492
%%DATADIR%%/bgfx/shaders/dx9/chains/pillarbox_left_horizontal/vs_offset_sat.bin
493
%%DATADIR%%/bgfx/shaders/dx9/chains/pillarbox_left_vertical/fs_gaussian.bin
494
%%DATADIR%%/bgfx/shaders/dx9/chains/pillarbox_left_vertical/fs_offset_sat.bin
495
%%DATADIR%%/bgfx/shaders/dx9/chains/pillarbox_left_vertical/vs_gaussian.bin
496
%%DATADIR%%/bgfx/shaders/dx9/chains/pillarbox_left_vertical/vs_offset_sat.bin
497
%%DATADIR%%/bgfx/shaders/dx9/chains/pillarbox_right_horizontal/fs_gaussian.bin
498
%%DATADIR%%/bgfx/shaders/dx9/chains/pillarbox_right_horizontal/fs_offset_sat.bin
499
%%DATADIR%%/bgfx/shaders/dx9/chains/pillarbox_right_horizontal/vs_gaussian.bin
500
%%DATADIR%%/bgfx/shaders/dx9/chains/pillarbox_right_horizontal/vs_offset_sat.bin
501
%%DATADIR%%/bgfx/shaders/dx9/chains/pillarbox_right_vertical/fs_gaussian.bin
502
%%DATADIR%%/bgfx/shaders/dx9/chains/pillarbox_right_vertical/fs_offset_sat.bin
503
%%DATADIR%%/bgfx/shaders/dx9/chains/pillarbox_right_vertical/vs_gaussian.bin
504
%%DATADIR%%/bgfx/shaders/dx9/chains/pillarbox_right_vertical/vs_offset_sat.bin
505
%%DATADIR%%/bgfx/shaders/dx9/chains/unfiltered/fs_blit.bin
506
%%DATADIR%%/bgfx/shaders/dx9/chains/unfiltered/vs_blit.bin
507
%%DATADIR%%/bgfx/shaders/dx9/chains/warp/fs_dilation-horizontal-fast.bin
508
%%DATADIR%%/bgfx/shaders/dx9/chains/warp/vs_dilation-horizontal-fast.bin
509
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/fs_xbr-lv1-noblend.bin
510
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/fs_xbr-lv2-3d.bin
511
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/fs_xbr-lv2-fast.bin
512
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/fs_xbr-lv2-noblend.bin
513
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/fs_xbr-lv2.bin
514
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/fs_xbr-lv3-noblend.bin
515
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/fs_xbr-lv3.bin
516
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/fs_custom-jinc2-sharper.bin
517
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/fs_super-2xbr-3d-pass0.bin
518
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/fs_super-2xbr-3d-pass1.bin
519
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/fs_super-2xbr-3d-pass2.bin
520
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/fs_super-4xbr-3d-pass0.bin
521
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/fs_super-4xbr-3d-pass1.bin
522
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/fs_super-4xbr-3d-pass1f.bin
523
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/fs_super-4xbr-3d-pass2.bin
524
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/fs_super-4xbr-3d-pass3.bin
525
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/fs_super-4xbr-3d-pass3f.bin
526
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/fs_super-xbr-fast-pass0.bin
527
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/fs_super-xbr-fast-pass1.bin
528
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/fs_super-xbr-fast-pass2.bin
529
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/fs_super-xbr-pass0.bin
530
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/fs_super-xbr-pass1.bin
531
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/fs_super-xbr-pass2.bin
532
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/vs_custom-jinc2-sharper.bin
533
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/vs_super-2xbr-3d-pass0.bin
534
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/vs_super-2xbr-3d-pass1.bin
535
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/vs_super-2xbr-3d-pass2.bin
536
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/vs_super-4xbr-3d-pass0.bin
537
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/vs_super-4xbr-3d-pass1.bin
538
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/vs_super-4xbr-3d-pass1f.bin
539
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/vs_super-4xbr-3d-pass2.bin
540
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/vs_super-4xbr-3d-pass3.bin
541
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/vs_super-4xbr-3d-pass3f.bin
542
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/vs_super-xbr-fast-pass0.bin
543
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/vs_super-xbr-fast-pass1.bin
544
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/vs_super-xbr-fast-pass2.bin
545
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/vs_super-xbr-pass0.bin
546
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/vs_super-xbr-pass1.bin
547
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/vs_super-xbr-pass2.bin
548
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/vs_super-xbr-pass3.bin
549
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/vs_xbr-lv1-noblend.bin
550
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/vs_xbr-lv2-3d.bin
551
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/vs_xbr-lv2-fast.bin
552
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/vs_xbr-lv2-noblend.bin
553
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/vs_xbr-lv2.bin
554
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/vs_xbr-lv3-noblend.bin
555
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/vs_xbr-lv3.bin
556
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-sharp.bin
557
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v2-gamma.bin
558
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v2.bin
559
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v4-gamma.bin
560
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v4.bin
561
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v4b.bin
562
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v5-gamma.bin
563
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-hybrid/fs_2xbr-hybrid.bin
564
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-sharp.bin
565
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v2-gamma.bin
566
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v2.bin
567
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v4-gamma.bin
568
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v4.bin
569
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v4b.bin
570
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v5-gamma.bin
571
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-hybrid/vs_2xbr-hybrid.bin
572
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-a-pass0.bin
573
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-accuracy-pass0.bin
574
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-accuracy-pass1.bin
575
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-b-pass0.bin
576
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-c-pass0.bin
577
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-d-pass0.bin
578
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-noblend-pass1.bin
579
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-pass1.bin
580
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-a-pass0.bin
581
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-accuracy-pass0.bin
582
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-accuracy-pass1.bin
583
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-b-pass0.bin
584
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-c-pass0.bin
585
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-d-pass0.bin
586
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-noblend-pass1.bin
587
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-pass1.bin
588
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-lv3-multipass/fs_xbr-lv3-pass0.bin
589
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-lv3-multipass/fs_xbr-lv3-pass1.bin
590
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-lv3-multipass/vs_xbr-lv3-pass0.bin
591
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-lv3-multipass/vs_xbr-lv3-pass1.bin
592
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass1.bin
593
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass2.bin
594
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass3.bin
595
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass4.bin
596
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass1.bin
597
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass2.bin
598
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass3.bin
599
%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass4.bin
600
%%DATADIR%%/bgfx/shaders/dx9/fs_gui.bin
601
%%DATADIR%%/bgfx/shaders/dx9/fs_screen.bin
602
%%DATADIR%%/bgfx/shaders/dx9/vs_gui.bin
603
%%DATADIR%%/bgfx/shaders/dx9/vs_screen.bin
604
%%DATADIR%%/bgfx/shaders/essl/chains/blurs/fs_smart-blur.bin
605
%%DATADIR%%/bgfx/shaders/essl/chains/blurs/vs_smart-blur.bin
606
%%DATADIR%%/bgfx/shaders/essl/chains/crt-geom/fs_crt-geom-deluxe.bin
607
%%DATADIR%%/bgfx/shaders/essl/chains/crt-geom/fs_crt-geom.bin
608
%%DATADIR%%/bgfx/shaders/essl/chains/crt-geom/fs_gaussx.bin
609
%%DATADIR%%/bgfx/shaders/essl/chains/crt-geom/fs_gaussy.bin
610
%%DATADIR%%/bgfx/shaders/essl/chains/crt-geom/fs_lowpass.bin
611
%%DATADIR%%/bgfx/shaders/essl/chains/crt-geom/fs_mipmap8.bin
612
%%DATADIR%%/bgfx/shaders/essl/chains/crt-geom/fs_phosphor_apply.bin
613
%%DATADIR%%/bgfx/shaders/essl/chains/crt-geom/fs_phosphor_update.bin
614
%%DATADIR%%/bgfx/shaders/essl/chains/crt-geom/vs_crt-geom.bin
615
%%DATADIR%%/bgfx/shaders/essl/chains/crt-geom/vs_gaussx.bin
616
%%DATADIR%%/bgfx/shaders/essl/chains/crt-geom/vs_gaussy.bin
617
%%DATADIR%%/bgfx/shaders/essl/chains/crt-geom/vs_lowpass.bin
618
%%DATADIR%%/bgfx/shaders/essl/chains/crt-geom/vs_mipmap8.bin
619
%%DATADIR%%/bgfx/shaders/essl/chains/crt-geom/vs_phosphor_apply.bin
620
%%DATADIR%%/bgfx/shaders/essl/chains/crt-geom/vs_phosphor_update.bin
621
%%DATADIR%%/bgfx/shaders/essl/chains/crt/fs_crt-caligari.bin
622
%%DATADIR%%/bgfx/shaders/essl/chains/crt/vs_crt-caligari.bin
623
%%DATADIR%%/bgfx/shaders/essl/chains/default/fs_blit.bin
624
%%DATADIR%%/bgfx/shaders/essl/chains/default/vs_blit.bin
625
%%DATADIR%%/bgfx/shaders/essl/chains/eagle/fs_eagle.bin
626
%%DATADIR%%/bgfx/shaders/essl/chains/eagle/vs_eagle.bin
627
%%DATADIR%%/bgfx/shaders/essl/chains/hlsl/fs_chroma.bin
628
%%DATADIR%%/bgfx/shaders/essl/chains/hlsl/fs_color.bin
629
%%DATADIR%%/bgfx/shaders/essl/chains/hlsl/fs_deconverge.bin
630
%%DATADIR%%/bgfx/shaders/essl/chains/hlsl/fs_defocus.bin
631
%%DATADIR%%/bgfx/shaders/essl/chains/hlsl/fs_distortion.bin
632
%%DATADIR%%/bgfx/shaders/essl/chains/hlsl/fs_ntsc_decode.bin
633
%%DATADIR%%/bgfx/shaders/essl/chains/hlsl/fs_ntsc_encode.bin
634
%%DATADIR%%/bgfx/shaders/essl/chains/hlsl/fs_phosphor.bin
635
%%DATADIR%%/bgfx/shaders/essl/chains/hlsl/fs_post.bin
636
%%DATADIR%%/bgfx/shaders/essl/chains/hlsl/fs_prescale.bin
637
%%DATADIR%%/bgfx/shaders/essl/chains/hlsl/fs_scanline.bin
638
%%DATADIR%%/bgfx/shaders/essl/chains/hlsl/vs_chroma.bin
639
%%DATADIR%%/bgfx/shaders/essl/chains/hlsl/vs_color.bin
640
%%DATADIR%%/bgfx/shaders/essl/chains/hlsl/vs_deconverge.bin
641
%%DATADIR%%/bgfx/shaders/essl/chains/hlsl/vs_defocus.bin
642
%%DATADIR%%/bgfx/shaders/essl/chains/hlsl/vs_distortion.bin
643
%%DATADIR%%/bgfx/shaders/essl/chains/hlsl/vs_ntsc_decode.bin
644
%%DATADIR%%/bgfx/shaders/essl/chains/hlsl/vs_ntsc_encode.bin
645
%%DATADIR%%/bgfx/shaders/essl/chains/hlsl/vs_phosphor.bin
646
%%DATADIR%%/bgfx/shaders/essl/chains/hlsl/vs_post.bin
647
%%DATADIR%%/bgfx/shaders/essl/chains/hlsl/vs_prescale.bin
648
%%DATADIR%%/bgfx/shaders/essl/chains/hlsl/vs_scanline.bin
649
%%DATADIR%%/bgfx/shaders/essl/chains/hqx/fs_hq2x.bin
650
%%DATADIR%%/bgfx/shaders/essl/chains/hqx/fs_hq3x.bin
651
%%DATADIR%%/bgfx/shaders/essl/chains/hqx/fs_hq4x.bin
652
%%DATADIR%%/bgfx/shaders/essl/chains/hqx/vs_hq2x.bin
653
%%DATADIR%%/bgfx/shaders/essl/chains/hqx/vs_hq3x.bin
654
%%DATADIR%%/bgfx/shaders/essl/chains/hqx/vs_hq4x.bin
655
%%DATADIR%%/bgfx/shaders/essl/chains/lcd-grid/fs_lcd-grid.bin
656
%%DATADIR%%/bgfx/shaders/essl/chains/lcd-grid/fs_persistence.bin
657
%%DATADIR%%/bgfx/shaders/essl/chains/lcd-grid/vs_lcd-grid.bin
658
%%DATADIR%%/bgfx/shaders/essl/chains/lcd-grid/vs_persistence.bin
659
%%DATADIR%%/bgfx/shaders/essl/chains/misc/fs_blit.bin
660
%%DATADIR%%/bgfx/shaders/essl/chains/misc/fs_blit_bcg.bin
661
%%DATADIR%%/bgfx/shaders/essl/chains/misc/fs_blit_palette16.bin
662
%%DATADIR%%/bgfx/shaders/essl/chains/misc/fs_blit_rgb32.bin
663
%%DATADIR%%/bgfx/shaders/essl/chains/misc/fs_blit_yuy16.bin
664
%%DATADIR%%/bgfx/shaders/essl/chains/misc/fs_bob-and-ghost-deinterlace.bin
665
%%DATADIR%%/bgfx/shaders/essl/chains/misc/fs_deposterize-pass0.bin
666
%%DATADIR%%/bgfx/shaders/essl/chains/misc/fs_deposterize-pass1.bin
667
%%DATADIR%%/bgfx/shaders/essl/chains/misc/fs_lut.bin
668
%%DATADIR%%/bgfx/shaders/essl/chains/misc/fs_saturation.bin
669
%%DATADIR%%/bgfx/shaders/essl/chains/misc/vs_blit.bin
670
%%DATADIR%%/bgfx/shaders/essl/chains/misc/vs_bob-and-ghost-deinterlace.bin
671
%%DATADIR%%/bgfx/shaders/essl/chains/misc/vs_deposterize-pass0.bin
672
%%DATADIR%%/bgfx/shaders/essl/chains/misc/vs_deposterize-pass1.bin
673
%%DATADIR%%/bgfx/shaders/essl/chains/misc/vs_lut.bin
674
%%DATADIR%%/bgfx/shaders/essl/chains/misc/vs_saturation.bin
675
%%DATADIR%%/bgfx/shaders/essl/chains/pillarbox_left_horizontal/fs_gaussian.bin
676
%%DATADIR%%/bgfx/shaders/essl/chains/pillarbox_left_horizontal/fs_offset_sat.bin
677
%%DATADIR%%/bgfx/shaders/essl/chains/pillarbox_left_horizontal/vs_gaussian.bin
678
%%DATADIR%%/bgfx/shaders/essl/chains/pillarbox_left_horizontal/vs_offset_sat.bin
679
%%DATADIR%%/bgfx/shaders/essl/chains/pillarbox_left_vertical/fs_gaussian.bin
680
%%DATADIR%%/bgfx/shaders/essl/chains/pillarbox_left_vertical/fs_offset_sat.bin
681
%%DATADIR%%/bgfx/shaders/essl/chains/pillarbox_left_vertical/vs_gaussian.bin
682
%%DATADIR%%/bgfx/shaders/essl/chains/pillarbox_left_vertical/vs_offset_sat.bin
683
%%DATADIR%%/bgfx/shaders/essl/chains/pillarbox_right_horizontal/fs_gaussian.bin
684
%%DATADIR%%/bgfx/shaders/essl/chains/pillarbox_right_horizontal/fs_offset_sat.bin
685
%%DATADIR%%/bgfx/shaders/essl/chains/pillarbox_right_horizontal/vs_gaussian.bin
686
%%DATADIR%%/bgfx/shaders/essl/chains/pillarbox_right_horizontal/vs_offset_sat.bin
687
%%DATADIR%%/bgfx/shaders/essl/chains/pillarbox_right_vertical/fs_gaussian.bin
688
%%DATADIR%%/bgfx/shaders/essl/chains/pillarbox_right_vertical/fs_offset_sat.bin
689
%%DATADIR%%/bgfx/shaders/essl/chains/pillarbox_right_vertical/vs_gaussian.bin
690
%%DATADIR%%/bgfx/shaders/essl/chains/pillarbox_right_vertical/vs_offset_sat.bin
691
%%DATADIR%%/bgfx/shaders/essl/chains/unfiltered/fs_blit.bin
692
%%DATADIR%%/bgfx/shaders/essl/chains/unfiltered/vs_blit.bin
693
%%DATADIR%%/bgfx/shaders/essl/chains/warp/fs_dilation-horizontal-fast.bin
694
%%DATADIR%%/bgfx/shaders/essl/chains/warp/vs_dilation-horizontal-fast.bin
695
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/fs_xbr-lv1-noblend.bin
696
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/fs_xbr-lv2-3d.bin
697
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/fs_xbr-lv2-fast.bin
698
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/fs_xbr-lv2-noblend.bin
699
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/fs_xbr-lv2.bin
700
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/fs_xbr-lv3-noblend.bin
701
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/fs_xbr-lv3.bin
702
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/fs_custom-jinc2-sharper.bin
703
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/fs_super-2xbr-3d-pass0.bin
704
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/fs_super-2xbr-3d-pass1.bin
705
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/fs_super-2xbr-3d-pass2.bin
706
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/fs_super-4xbr-3d-pass0.bin
707
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/fs_super-4xbr-3d-pass1.bin
708
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/fs_super-4xbr-3d-pass1f.bin
709
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/fs_super-4xbr-3d-pass2.bin
710
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/fs_super-4xbr-3d-pass3.bin
711
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/fs_super-4xbr-3d-pass3f.bin
712
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/fs_super-xbr-fast-pass0.bin
713
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/fs_super-xbr-fast-pass1.bin
714
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/fs_super-xbr-fast-pass2.bin
715
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/fs_super-xbr-pass0.bin
716
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/fs_super-xbr-pass1.bin
717
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/fs_super-xbr-pass2.bin
718
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/vs_custom-jinc2-sharper.bin
719
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/vs_super-2xbr-3d-pass0.bin
720
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/vs_super-2xbr-3d-pass1.bin
721
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/vs_super-2xbr-3d-pass2.bin
722
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/vs_super-4xbr-3d-pass0.bin
723
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/vs_super-4xbr-3d-pass1.bin
724
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/vs_super-4xbr-3d-pass1f.bin
725
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/vs_super-4xbr-3d-pass2.bin
726
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/vs_super-4xbr-3d-pass3.bin
727
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/vs_super-4xbr-3d-pass3f.bin
728
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/vs_super-xbr-fast-pass0.bin
729
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/vs_super-xbr-fast-pass1.bin
730
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/vs_super-xbr-fast-pass2.bin
731
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/vs_super-xbr-pass0.bin
732
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/vs_super-xbr-pass1.bin
733
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/vs_super-xbr-pass2.bin
734
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/vs_super-xbr-pass3.bin
735
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/vs_xbr-lv1-noblend.bin
736
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/vs_xbr-lv2-3d.bin
737
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/vs_xbr-lv2-fast.bin
738
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/vs_xbr-lv2-noblend.bin
739
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/vs_xbr-lv2.bin
740
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/vs_xbr-lv3-noblend.bin
741
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/vs_xbr-lv3.bin
742
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-sharp.bin
743
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v2-gamma.bin
744
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v2.bin
745
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v4-gamma.bin
746
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v4.bin
747
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v4b.bin
748
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v5-gamma.bin
749
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-hybrid/fs_2xbr-hybrid.bin
750
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-sharp.bin
751
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v2-gamma.bin
752
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v2.bin
753
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v4-gamma.bin
754
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v4.bin
755
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v4b.bin
756
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v5-gamma.bin
757
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-hybrid/vs_2xbr-hybrid.bin
758
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-a-pass0.bin
759
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-accuracy-pass0.bin
760
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-accuracy-pass1.bin
761
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-b-pass0.bin
762
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-c-pass0.bin
763
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-d-pass0.bin
764
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-noblend-pass1.bin
765
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-pass1.bin
766
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-a-pass0.bin
767
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-accuracy-pass0.bin
768
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-accuracy-pass1.bin
769
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-b-pass0.bin
770
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-c-pass0.bin
771
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-d-pass0.bin
772
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-noblend-pass1.bin
773
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-pass1.bin
774
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-lv3-multipass/fs_xbr-lv3-pass0.bin
775
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-lv3-multipass/fs_xbr-lv3-pass1.bin
776
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-lv3-multipass/vs_xbr-lv3-pass0.bin
777
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-lv3-multipass/vs_xbr-lv3-pass1.bin
778
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass1.bin
779
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass2.bin
780
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass3.bin
781
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass4.bin
782
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass1.bin
783
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass2.bin
784
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass3.bin
785
%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass4.bin
786
%%DATADIR%%/bgfx/shaders/essl/fs_gui.bin
787
%%DATADIR%%/bgfx/shaders/essl/fs_screen.bin
788
%%DATADIR%%/bgfx/shaders/essl/vs_gui.bin
789
%%DATADIR%%/bgfx/shaders/essl/vs_screen.bin
790
%%DATADIR%%/bgfx/shaders/glsl/chains/blurs/fs_smart-blur.bin
791
%%DATADIR%%/bgfx/shaders/glsl/chains/blurs/vs_smart-blur.bin
792
%%DATADIR%%/bgfx/shaders/glsl/chains/crt-geom/fs_crt-geom-deluxe.bin
793
%%DATADIR%%/bgfx/shaders/glsl/chains/crt-geom/fs_crt-geom.bin
794
%%DATADIR%%/bgfx/shaders/glsl/chains/crt-geom/fs_gaussx.bin
795
%%DATADIR%%/bgfx/shaders/glsl/chains/crt-geom/fs_gaussy.bin
796
%%DATADIR%%/bgfx/shaders/glsl/chains/crt-geom/fs_lowpass.bin
797
%%DATADIR%%/bgfx/shaders/glsl/chains/crt-geom/fs_mipmap8.bin
798
%%DATADIR%%/bgfx/shaders/glsl/chains/crt-geom/fs_phosphor_apply.bin
799
%%DATADIR%%/bgfx/shaders/glsl/chains/crt-geom/fs_phosphor_update.bin
800
%%DATADIR%%/bgfx/shaders/glsl/chains/crt-geom/vs_crt-geom.bin
801
%%DATADIR%%/bgfx/shaders/glsl/chains/crt-geom/vs_gaussx.bin
802
%%DATADIR%%/bgfx/shaders/glsl/chains/crt-geom/vs_gaussy.bin
803
%%DATADIR%%/bgfx/shaders/glsl/chains/crt-geom/vs_lowpass.bin
804
%%DATADIR%%/bgfx/shaders/glsl/chains/crt-geom/vs_mipmap8.bin
805
%%DATADIR%%/bgfx/shaders/glsl/chains/crt-geom/vs_phosphor_apply.bin
806
%%DATADIR%%/bgfx/shaders/glsl/chains/crt-geom/vs_phosphor_update.bin
807
%%DATADIR%%/bgfx/shaders/glsl/chains/crt/fs_crt-caligari.bin
808
%%DATADIR%%/bgfx/shaders/glsl/chains/crt/vs_crt-caligari.bin
809
%%DATADIR%%/bgfx/shaders/glsl/chains/default/fs_blit.bin
810
%%DATADIR%%/bgfx/shaders/glsl/chains/default/vs_blit.bin
811
%%DATADIR%%/bgfx/shaders/glsl/chains/eagle/fs_eagle.bin
812
%%DATADIR%%/bgfx/shaders/glsl/chains/eagle/vs_eagle.bin
813
%%DATADIR%%/bgfx/shaders/glsl/chains/hlsl/fs_chroma.bin
814
%%DATADIR%%/bgfx/shaders/glsl/chains/hlsl/fs_color.bin
815
%%DATADIR%%/bgfx/shaders/glsl/chains/hlsl/fs_deconverge.bin
816
%%DATADIR%%/bgfx/shaders/glsl/chains/hlsl/fs_defocus.bin
817
%%DATADIR%%/bgfx/shaders/glsl/chains/hlsl/fs_distortion.bin
818
%%DATADIR%%/bgfx/shaders/glsl/chains/hlsl/fs_ntsc_decode.bin
819
%%DATADIR%%/bgfx/shaders/glsl/chains/hlsl/fs_ntsc_encode.bin
820
%%DATADIR%%/bgfx/shaders/glsl/chains/hlsl/fs_phosphor.bin
821
%%DATADIR%%/bgfx/shaders/glsl/chains/hlsl/fs_post.bin
822
%%DATADIR%%/bgfx/shaders/glsl/chains/hlsl/fs_prescale.bin
823
%%DATADIR%%/bgfx/shaders/glsl/chains/hlsl/fs_scanline.bin
824
%%DATADIR%%/bgfx/shaders/glsl/chains/hlsl/vs_chroma.bin
825
%%DATADIR%%/bgfx/shaders/glsl/chains/hlsl/vs_color.bin
826
%%DATADIR%%/bgfx/shaders/glsl/chains/hlsl/vs_deconverge.bin
827
%%DATADIR%%/bgfx/shaders/glsl/chains/hlsl/vs_defocus.bin
828
%%DATADIR%%/bgfx/shaders/glsl/chains/hlsl/vs_distortion.bin
829
%%DATADIR%%/bgfx/shaders/glsl/chains/hlsl/vs_ntsc_decode.bin
830
%%DATADIR%%/bgfx/shaders/glsl/chains/hlsl/vs_ntsc_encode.bin
831
%%DATADIR%%/bgfx/shaders/glsl/chains/hlsl/vs_phosphor.bin
832
%%DATADIR%%/bgfx/shaders/glsl/chains/hlsl/vs_post.bin
833
%%DATADIR%%/bgfx/shaders/glsl/chains/hlsl/vs_prescale.bin
834
%%DATADIR%%/bgfx/shaders/glsl/chains/hlsl/vs_scanline.bin
835
%%DATADIR%%/bgfx/shaders/glsl/chains/hqx/fs_hq2x.bin
836
%%DATADIR%%/bgfx/shaders/glsl/chains/hqx/fs_hq3x.bin
837
%%DATADIR%%/bgfx/shaders/glsl/chains/hqx/fs_hq4x.bin
838
%%DATADIR%%/bgfx/shaders/glsl/chains/hqx/vs_hq2x.bin
839
%%DATADIR%%/bgfx/shaders/glsl/chains/hqx/vs_hq3x.bin
840
%%DATADIR%%/bgfx/shaders/glsl/chains/hqx/vs_hq4x.bin
841
%%DATADIR%%/bgfx/shaders/glsl/chains/lcd-grid/fs_lcd-grid.bin
842
%%DATADIR%%/bgfx/shaders/glsl/chains/lcd-grid/fs_persistence.bin
843
%%DATADIR%%/bgfx/shaders/glsl/chains/lcd-grid/vs_lcd-grid.bin
844
%%DATADIR%%/bgfx/shaders/glsl/chains/lcd-grid/vs_persistence.bin
845
%%DATADIR%%/bgfx/shaders/glsl/chains/misc/fs_blit.bin
846
%%DATADIR%%/bgfx/shaders/glsl/chains/misc/fs_blit_bcg.bin
847
%%DATADIR%%/bgfx/shaders/glsl/chains/misc/fs_blit_palette16.bin
848
%%DATADIR%%/bgfx/shaders/glsl/chains/misc/fs_blit_rgb32.bin
849
%%DATADIR%%/bgfx/shaders/glsl/chains/misc/fs_blit_yuy16.bin
850
%%DATADIR%%/bgfx/shaders/glsl/chains/misc/fs_bob-and-ghost-deinterlace.bin
851
%%DATADIR%%/bgfx/shaders/glsl/chains/misc/fs_deposterize-pass0.bin
852
%%DATADIR%%/bgfx/shaders/glsl/chains/misc/fs_deposterize-pass1.bin
853
%%DATADIR%%/bgfx/shaders/glsl/chains/misc/fs_lut.bin
854
%%DATADIR%%/bgfx/shaders/glsl/chains/misc/fs_saturation.bin
855
%%DATADIR%%/bgfx/shaders/glsl/chains/misc/vs_blit.bin
856
%%DATADIR%%/bgfx/shaders/glsl/chains/misc/vs_bob-and-ghost-deinterlace.bin
857
%%DATADIR%%/bgfx/shaders/glsl/chains/misc/vs_deposterize-pass0.bin
858
%%DATADIR%%/bgfx/shaders/glsl/chains/misc/vs_deposterize-pass1.bin
859
%%DATADIR%%/bgfx/shaders/glsl/chains/misc/vs_lut.bin
860
%%DATADIR%%/bgfx/shaders/glsl/chains/misc/vs_saturation.bin
861
%%DATADIR%%/bgfx/shaders/glsl/chains/pillarbox_left_horizontal/fs_gaussian.bin
862
%%DATADIR%%/bgfx/shaders/glsl/chains/pillarbox_left_horizontal/fs_offset_sat.bin
863
%%DATADIR%%/bgfx/shaders/glsl/chains/pillarbox_left_horizontal/vs_gaussian.bin
864
%%DATADIR%%/bgfx/shaders/glsl/chains/pillarbox_left_horizontal/vs_offset_sat.bin
865
%%DATADIR%%/bgfx/shaders/glsl/chains/pillarbox_left_vertical/fs_gaussian.bin
866
%%DATADIR%%/bgfx/shaders/glsl/chains/pillarbox_left_vertical/fs_offset_sat.bin
867
%%DATADIR%%/bgfx/shaders/glsl/chains/pillarbox_left_vertical/vs_gaussian.bin
868
%%DATADIR%%/bgfx/shaders/glsl/chains/pillarbox_left_vertical/vs_offset_sat.bin
869
%%DATADIR%%/bgfx/shaders/glsl/chains/pillarbox_right_horizontal/fs_gaussian.bin
870
%%DATADIR%%/bgfx/shaders/glsl/chains/pillarbox_right_horizontal/fs_offset_sat.bin
871
%%DATADIR%%/bgfx/shaders/glsl/chains/pillarbox_right_horizontal/vs_gaussian.bin
872
%%DATADIR%%/bgfx/shaders/glsl/chains/pillarbox_right_horizontal/vs_offset_sat.bin
873
%%DATADIR%%/bgfx/shaders/glsl/chains/pillarbox_right_vertical/fs_gaussian.bin
874
%%DATADIR%%/bgfx/shaders/glsl/chains/pillarbox_right_vertical/fs_offset_sat.bin
875
%%DATADIR%%/bgfx/shaders/glsl/chains/pillarbox_right_vertical/vs_gaussian.bin
876
%%DATADIR%%/bgfx/shaders/glsl/chains/pillarbox_right_vertical/vs_offset_sat.bin
877
%%DATADIR%%/bgfx/shaders/glsl/chains/unfiltered/fs_blit.bin
878
%%DATADIR%%/bgfx/shaders/glsl/chains/unfiltered/vs_blit.bin
879
%%DATADIR%%/bgfx/shaders/glsl/chains/warp/fs_dilation-horizontal-fast.bin
880
%%DATADIR%%/bgfx/shaders/glsl/chains/warp/vs_dilation-horizontal-fast.bin
881
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/fs_xbr-lv1-noblend.bin
882
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/fs_xbr-lv2-3d.bin
883
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/fs_xbr-lv2-fast.bin
884
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/fs_xbr-lv2-noblend.bin
885
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/fs_xbr-lv2.bin
886
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/fs_xbr-lv3-noblend.bin
887
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/fs_xbr-lv3.bin
888
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/fs_custom-jinc2-sharper.bin
889
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/fs_super-2xbr-3d-pass0.bin
890
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/fs_super-2xbr-3d-pass1.bin
891
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/fs_super-2xbr-3d-pass2.bin
892
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/fs_super-4xbr-3d-pass0.bin
893
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/fs_super-4xbr-3d-pass1.bin
894
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/fs_super-4xbr-3d-pass1f.bin
895
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/fs_super-4xbr-3d-pass2.bin
896
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/fs_super-4xbr-3d-pass3.bin
897
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/fs_super-4xbr-3d-pass3f.bin
898
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/fs_super-xbr-fast-pass0.bin
899
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/fs_super-xbr-fast-pass1.bin
900
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/fs_super-xbr-fast-pass2.bin
901
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/fs_super-xbr-pass0.bin
902
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/fs_super-xbr-pass1.bin
903
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/fs_super-xbr-pass2.bin
904
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/vs_custom-jinc2-sharper.bin
905
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/vs_super-2xbr-3d-pass0.bin
906
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/vs_super-2xbr-3d-pass1.bin
907
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/vs_super-2xbr-3d-pass2.bin
908
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/vs_super-4xbr-3d-pass0.bin
909
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/vs_super-4xbr-3d-pass1.bin
910
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/vs_super-4xbr-3d-pass1f.bin
911
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/vs_super-4xbr-3d-pass2.bin
912
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/vs_super-4xbr-3d-pass3.bin
913
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/vs_super-4xbr-3d-pass3f.bin
914
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/vs_super-xbr-fast-pass0.bin
915
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/vs_super-xbr-fast-pass1.bin
916
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/vs_super-xbr-fast-pass2.bin
917
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/vs_super-xbr-pass0.bin
918
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/vs_super-xbr-pass1.bin
919
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/vs_super-xbr-pass2.bin
920
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/vs_super-xbr-pass3.bin
921
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/vs_xbr-lv1-noblend.bin
922
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/vs_xbr-lv2-3d.bin
923
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/vs_xbr-lv2-fast.bin
924
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/vs_xbr-lv2-noblend.bin
925
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/vs_xbr-lv2.bin
926
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/vs_xbr-lv3-noblend.bin
927
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/vs_xbr-lv3.bin
928
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-sharp.bin
929
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v2-gamma.bin
930
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v2.bin
931
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v4-gamma.bin
932
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v4.bin
933
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v4b.bin
934
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v5-gamma.bin
935
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-hybrid/fs_2xbr-hybrid.bin
936
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-sharp.bin
937
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v2-gamma.bin
938
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v2.bin
939
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v4-gamma.bin
940
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v4.bin
941
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v4b.bin
942
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v5-gamma.bin
943
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-hybrid/vs_2xbr-hybrid.bin
944
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-a-pass0.bin
945
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-accuracy-pass0.bin
946
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-accuracy-pass1.bin
947
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-b-pass0.bin
948
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-c-pass0.bin
949
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-d-pass0.bin
950
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-noblend-pass1.bin
951
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-pass1.bin
952
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-a-pass0.bin
953
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-accuracy-pass0.bin
954
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-accuracy-pass1.bin
955
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-b-pass0.bin
956
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-c-pass0.bin
957
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-d-pass0.bin
958
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-noblend-pass1.bin
959
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-pass1.bin
960
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-lv3-multipass/fs_xbr-lv3-pass0.bin
961
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-lv3-multipass/fs_xbr-lv3-pass1.bin
962
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-lv3-multipass/vs_xbr-lv3-pass0.bin
963
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-lv3-multipass/vs_xbr-lv3-pass1.bin
964
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass1.bin
965
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass2.bin
966
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass3.bin
967
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass4.bin
968
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass1.bin
969
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass2.bin
970
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass3.bin
971
%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass4.bin
972
%%DATADIR%%/bgfx/shaders/glsl/fs_gui.bin
973
%%DATADIR%%/bgfx/shaders/glsl/fs_screen.bin
974
%%DATADIR%%/bgfx/shaders/glsl/vs_gui.bin
975
%%DATADIR%%/bgfx/shaders/glsl/vs_screen.bin
976
%%DATADIR%%/bgfx/shaders/metal/chains/blurs/fs_smart-blur.bin
977
%%DATADIR%%/bgfx/shaders/metal/chains/blurs/vs_smart-blur.bin
978
%%DATADIR%%/bgfx/shaders/metal/chains/crt-geom/fs_crt-geom-deluxe.bin
979
%%DATADIR%%/bgfx/shaders/metal/chains/crt-geom/fs_crt-geom.bin
980
%%DATADIR%%/bgfx/shaders/metal/chains/crt-geom/fs_gaussx.bin
981
%%DATADIR%%/bgfx/shaders/metal/chains/crt-geom/fs_gaussy.bin
982
%%DATADIR%%/bgfx/shaders/metal/chains/crt-geom/fs_lowpass.bin
983
%%DATADIR%%/bgfx/shaders/metal/chains/crt-geom/fs_mipmap8.bin
984
%%DATADIR%%/bgfx/shaders/metal/chains/crt-geom/fs_phosphor_apply.bin
985
%%DATADIR%%/bgfx/shaders/metal/chains/crt-geom/fs_phosphor_update.bin
986
%%DATADIR%%/bgfx/shaders/metal/chains/crt-geom/vs_crt-geom.bin
987
%%DATADIR%%/bgfx/shaders/metal/chains/crt-geom/vs_gaussx.bin
988
%%DATADIR%%/bgfx/shaders/metal/chains/crt-geom/vs_gaussy.bin
989
%%DATADIR%%/bgfx/shaders/metal/chains/crt-geom/vs_lowpass.bin
990
%%DATADIR%%/bgfx/shaders/metal/chains/crt-geom/vs_mipmap8.bin
991
%%DATADIR%%/bgfx/shaders/metal/chains/crt-geom/vs_phosphor_apply.bin
992
%%DATADIR%%/bgfx/shaders/metal/chains/crt-geom/vs_phosphor_update.bin
993
%%DATADIR%%/bgfx/shaders/metal/chains/crt/fs_crt-caligari.bin
994
%%DATADIR%%/bgfx/shaders/metal/chains/crt/vs_crt-caligari.bin
995
%%DATADIR%%/bgfx/shaders/metal/chains/default/fs_blit.bin
996
%%DATADIR%%/bgfx/shaders/metal/chains/default/vs_blit.bin
997
%%DATADIR%%/bgfx/shaders/metal/chains/eagle/fs_eagle.bin
998
%%DATADIR%%/bgfx/shaders/metal/chains/eagle/vs_eagle.bin
999
%%DATADIR%%/bgfx/shaders/metal/chains/hlsl/fs_chroma.bin
1000
%%DATADIR%%/bgfx/shaders/metal/chains/hlsl/fs_color.bin
1001
%%DATADIR%%/bgfx/shaders/metal/chains/hlsl/fs_deconverge.bin
1002
%%DATADIR%%/bgfx/shaders/metal/chains/hlsl/fs_defocus.bin
1003
%%DATADIR%%/bgfx/shaders/metal/chains/hlsl/fs_distortion.bin
1004
%%DATADIR%%/bgfx/shaders/metal/chains/hlsl/fs_ntsc_decode.bin
1005
%%DATADIR%%/bgfx/shaders/metal/chains/hlsl/fs_ntsc_encode.bin
1006
%%DATADIR%%/bgfx/shaders/metal/chains/hlsl/fs_phosphor.bin
1007
%%DATADIR%%/bgfx/shaders/metal/chains/hlsl/fs_post.bin
1008
%%DATADIR%%/bgfx/shaders/metal/chains/hlsl/fs_prescale.bin
1009
%%DATADIR%%/bgfx/shaders/metal/chains/hlsl/fs_scanline.bin
1010
%%DATADIR%%/bgfx/shaders/metal/chains/hlsl/vs_chroma.bin
1011
%%DATADIR%%/bgfx/shaders/metal/chains/hlsl/vs_color.bin
1012
%%DATADIR%%/bgfx/shaders/metal/chains/hlsl/vs_deconverge.bin
1013
%%DATADIR%%/bgfx/shaders/metal/chains/hlsl/vs_defocus.bin
1014
%%DATADIR%%/bgfx/shaders/metal/chains/hlsl/vs_distortion.bin
1015
%%DATADIR%%/bgfx/shaders/metal/chains/hlsl/vs_ntsc_decode.bin
1016
%%DATADIR%%/bgfx/shaders/metal/chains/hlsl/vs_ntsc_encode.bin
1017
%%DATADIR%%/bgfx/shaders/metal/chains/hlsl/vs_phosphor.bin
1018
%%DATADIR%%/bgfx/shaders/metal/chains/hlsl/vs_post.bin
1019
%%DATADIR%%/bgfx/shaders/metal/chains/hlsl/vs_prescale.bin
1020
%%DATADIR%%/bgfx/shaders/metal/chains/hlsl/vs_scanline.bin
1021
%%DATADIR%%/bgfx/shaders/metal/chains/hqx/fs_hq2x.bin
1022
%%DATADIR%%/bgfx/shaders/metal/chains/hqx/fs_hq3x.bin
1023
%%DATADIR%%/bgfx/shaders/metal/chains/hqx/fs_hq4x.bin
1024
%%DATADIR%%/bgfx/shaders/metal/chains/hqx/vs_hq2x.bin
1025
%%DATADIR%%/bgfx/shaders/metal/chains/hqx/vs_hq3x.bin
1026
%%DATADIR%%/bgfx/shaders/metal/chains/hqx/vs_hq4x.bin
1027
%%DATADIR%%/bgfx/shaders/metal/chains/lcd-grid/fs_lcd-grid.bin
1028
%%DATADIR%%/bgfx/shaders/metal/chains/lcd-grid/fs_persistence.bin
1029
%%DATADIR%%/bgfx/shaders/metal/chains/lcd-grid/vs_lcd-grid.bin
1030
%%DATADIR%%/bgfx/shaders/metal/chains/lcd-grid/vs_persistence.bin
1031
%%DATADIR%%/bgfx/shaders/metal/chains/misc/fs_blit.bin
1032
%%DATADIR%%/bgfx/shaders/metal/chains/misc/fs_blit_bcg.bin
1033
%%DATADIR%%/bgfx/shaders/metal/chains/misc/fs_blit_palette16.bin
1034
%%DATADIR%%/bgfx/shaders/metal/chains/misc/fs_blit_rgb32.bin
1035
%%DATADIR%%/bgfx/shaders/metal/chains/misc/fs_blit_yuy16.bin
1036
%%DATADIR%%/bgfx/shaders/metal/chains/misc/fs_bob-and-ghost-deinterlace.bin
1037
%%DATADIR%%/bgfx/shaders/metal/chains/misc/fs_deposterize-pass0.bin
1038
%%DATADIR%%/bgfx/shaders/metal/chains/misc/fs_deposterize-pass1.bin
1039
%%DATADIR%%/bgfx/shaders/metal/chains/misc/fs_lut.bin
1040
%%DATADIR%%/bgfx/shaders/metal/chains/misc/fs_saturation.bin
1041
%%DATADIR%%/bgfx/shaders/metal/chains/misc/vs_blit.bin
1042
%%DATADIR%%/bgfx/shaders/metal/chains/misc/vs_bob-and-ghost-deinterlace.bin
1043
%%DATADIR%%/bgfx/shaders/metal/chains/misc/vs_deposterize-pass0.bin
1044
%%DATADIR%%/bgfx/shaders/metal/chains/misc/vs_deposterize-pass1.bin
1045
%%DATADIR%%/bgfx/shaders/metal/chains/misc/vs_lut.bin
1046
%%DATADIR%%/bgfx/shaders/metal/chains/misc/vs_saturation.bin
1047
%%DATADIR%%/bgfx/shaders/metal/chains/pillarbox_left_horizontal/fs_gaussian.bin
1048
%%DATADIR%%/bgfx/shaders/metal/chains/pillarbox_left_horizontal/fs_offset_sat.bin
1049
%%DATADIR%%/bgfx/shaders/metal/chains/pillarbox_left_horizontal/vs_gaussian.bin
1050
%%DATADIR%%/bgfx/shaders/metal/chains/pillarbox_left_horizontal/vs_offset_sat.bin
1051
%%DATADIR%%/bgfx/shaders/metal/chains/pillarbox_left_vertical/fs_gaussian.bin
1052
%%DATADIR%%/bgfx/shaders/metal/chains/pillarbox_left_vertical/fs_offset_sat.bin
1053
%%DATADIR%%/bgfx/shaders/metal/chains/pillarbox_left_vertical/vs_gaussian.bin
1054
%%DATADIR%%/bgfx/shaders/metal/chains/pillarbox_left_vertical/vs_offset_sat.bin
1055
%%DATADIR%%/bgfx/shaders/metal/chains/pillarbox_right_horizontal/fs_gaussian.bin
1056
%%DATADIR%%/bgfx/shaders/metal/chains/pillarbox_right_horizontal/fs_offset_sat.bin
1057
%%DATADIR%%/bgfx/shaders/metal/chains/pillarbox_right_horizontal/vs_gaussian.bin
1058
%%DATADIR%%/bgfx/shaders/metal/chains/pillarbox_right_horizontal/vs_offset_sat.bin
1059
%%DATADIR%%/bgfx/shaders/metal/chains/pillarbox_right_vertical/fs_gaussian.bin
1060
%%DATADIR%%/bgfx/shaders/metal/chains/pillarbox_right_vertical/fs_offset_sat.bin
1061
%%DATADIR%%/bgfx/shaders/metal/chains/pillarbox_right_vertical/vs_gaussian.bin
1062
%%DATADIR%%/bgfx/shaders/metal/chains/pillarbox_right_vertical/vs_offset_sat.bin
1063
%%DATADIR%%/bgfx/shaders/metal/chains/unfiltered/fs_blit.bin
1064
%%DATADIR%%/bgfx/shaders/metal/chains/unfiltered/vs_blit.bin
1065
%%DATADIR%%/bgfx/shaders/metal/chains/warp/fs_dilation-horizontal-fast.bin
1066
%%DATADIR%%/bgfx/shaders/metal/chains/warp/vs_dilation-horizontal-fast.bin
1067
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/fs_xbr-lv1-noblend.bin
1068
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/fs_xbr-lv2-3d.bin
1069
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/fs_xbr-lv2-fast.bin
1070
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/fs_xbr-lv2-noblend.bin
1071
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/fs_xbr-lv2.bin
1072
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/fs_xbr-lv3-noblend.bin
1073
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/fs_xbr-lv3.bin
1074
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/fs_custom-jinc2-sharper.bin
1075
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/fs_super-2xbr-3d-pass0.bin
1076
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/fs_super-2xbr-3d-pass1.bin
1077
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/fs_super-2xbr-3d-pass2.bin
1078
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/fs_super-4xbr-3d-pass0.bin
1079
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/fs_super-4xbr-3d-pass1.bin
1080
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/fs_super-4xbr-3d-pass1f.bin
1081
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/fs_super-4xbr-3d-pass2.bin
1082
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/fs_super-4xbr-3d-pass3.bin
1083
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/fs_super-4xbr-3d-pass3f.bin
1084
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/fs_super-xbr-fast-pass0.bin
1085
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/fs_super-xbr-fast-pass1.bin
1086
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/fs_super-xbr-fast-pass2.bin
1087
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/fs_super-xbr-pass0.bin
1088
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/fs_super-xbr-pass1.bin
1089
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/fs_super-xbr-pass2.bin
1090
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/vs_custom-jinc2-sharper.bin
1091
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/vs_super-2xbr-3d-pass0.bin
1092
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/vs_super-2xbr-3d-pass1.bin
1093
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/vs_super-2xbr-3d-pass2.bin
1094
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/vs_super-4xbr-3d-pass0.bin
1095
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/vs_super-4xbr-3d-pass1.bin
1096
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/vs_super-4xbr-3d-pass1f.bin
1097
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/vs_super-4xbr-3d-pass2.bin
1098
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/vs_super-4xbr-3d-pass3.bin
1099
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/vs_super-4xbr-3d-pass3f.bin
1100
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/vs_super-xbr-fast-pass0.bin
1101
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/vs_super-xbr-fast-pass1.bin
1102
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/vs_super-xbr-fast-pass2.bin
1103
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/vs_super-xbr-pass0.bin
1104
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/vs_super-xbr-pass1.bin
1105
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/vs_super-xbr-pass2.bin
1106
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/vs_super-xbr-pass3.bin
1107
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/vs_xbr-lv1-noblend.bin
1108
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/vs_xbr-lv2-3d.bin
1109
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/vs_xbr-lv2-fast.bin
1110
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/vs_xbr-lv2-noblend.bin
1111
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/vs_xbr-lv2.bin
1112
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/vs_xbr-lv3-noblend.bin
1113
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/vs_xbr-lv3.bin
1114
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-sharp.bin
1115
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v2-gamma.bin
1116
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v2.bin
1117
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v4-gamma.bin
1118
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v4.bin
1119
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v4b.bin
1120
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v5-gamma.bin
1121
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-hybrid/fs_2xbr-hybrid.bin
1122
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-sharp.bin
1123
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v2-gamma.bin
1124
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v2.bin
1125
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v4-gamma.bin
1126
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v4.bin
1127
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v4b.bin
1128
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v5-gamma.bin
1129
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-hybrid/vs_2xbr-hybrid.bin
1130
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-a-pass0.bin
1131
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-accuracy-pass0.bin
1132
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-accuracy-pass1.bin
1133
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-b-pass0.bin
1134
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-c-pass0.bin
1135
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-d-pass0.bin
1136
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-noblend-pass1.bin
1137
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-pass1.bin
1138
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-a-pass0.bin
1139
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-accuracy-pass0.bin
1140
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-accuracy-pass1.bin
1141
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-b-pass0.bin
1142
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-c-pass0.bin
1143
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-d-pass0.bin
1144
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-noblend-pass1.bin
1145
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-pass1.bin
1146
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-lv3-multipass/fs_xbr-lv3-pass0.bin
1147
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-lv3-multipass/fs_xbr-lv3-pass1.bin
1148
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-lv3-multipass/vs_xbr-lv3-pass0.bin
1149
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-lv3-multipass/vs_xbr-lv3-pass1.bin
1150
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass1.bin
1151
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass2.bin
1152
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass3.bin
1153
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass4.bin
1154
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass1.bin
1155
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass2.bin
1156
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass3.bin
1157
%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass4.bin
1158
%%DATADIR%%/bgfx/shaders/metal/fs_gui.bin
1159
%%DATADIR%%/bgfx/shaders/metal/fs_screen.bin
1160
%%DATADIR%%/bgfx/shaders/metal/vs_gui.bin
1161
%%DATADIR%%/bgfx/shaders/metal/vs_screen.bin
1162
%%DATADIR%%/bgfx/shaders/spirv/chains/blurs/fs_smart-blur.bin
1163
%%DATADIR%%/bgfx/shaders/spirv/chains/blurs/vs_smart-blur.bin
1164
%%DATADIR%%/bgfx/shaders/spirv/chains/crt-geom/fs_crt-geom-deluxe.bin
1165
%%DATADIR%%/bgfx/shaders/spirv/chains/crt-geom/fs_crt-geom.bin
1166
%%DATADIR%%/bgfx/shaders/spirv/chains/crt-geom/fs_gaussx.bin
1167
%%DATADIR%%/bgfx/shaders/spirv/chains/crt-geom/fs_gaussy.bin
1168
%%DATADIR%%/bgfx/shaders/spirv/chains/crt-geom/fs_lowpass.bin
1169
%%DATADIR%%/bgfx/shaders/spirv/chains/crt-geom/fs_mipmap8.bin
1170
%%DATADIR%%/bgfx/shaders/spirv/chains/crt-geom/fs_phosphor_apply.bin
1171
%%DATADIR%%/bgfx/shaders/spirv/chains/crt-geom/fs_phosphor_update.bin
1172
%%DATADIR%%/bgfx/shaders/spirv/chains/crt-geom/vs_crt-geom.bin
1173
%%DATADIR%%/bgfx/shaders/spirv/chains/crt-geom/vs_gaussx.bin
1174
%%DATADIR%%/bgfx/shaders/spirv/chains/crt-geom/vs_gaussy.bin
1175
%%DATADIR%%/bgfx/shaders/spirv/chains/crt-geom/vs_lowpass.bin
1176
%%DATADIR%%/bgfx/shaders/spirv/chains/crt-geom/vs_mipmap8.bin
1177
%%DATADIR%%/bgfx/shaders/spirv/chains/crt-geom/vs_phosphor_apply.bin
1178
%%DATADIR%%/bgfx/shaders/spirv/chains/crt-geom/vs_phosphor_update.bin
1179
%%DATADIR%%/bgfx/shaders/spirv/chains/crt/fs_crt-caligari.bin
1180
%%DATADIR%%/bgfx/shaders/spirv/chains/crt/vs_crt-caligari.bin
1181
%%DATADIR%%/bgfx/shaders/spirv/chains/default/fs_blit.bin
1182
%%DATADIR%%/bgfx/shaders/spirv/chains/default/vs_blit.bin
1183
%%DATADIR%%/bgfx/shaders/spirv/chains/eagle/fs_eagle.bin
1184
%%DATADIR%%/bgfx/shaders/spirv/chains/eagle/vs_eagle.bin
1185
%%DATADIR%%/bgfx/shaders/spirv/chains/hlsl/fs_chroma.bin
1186
%%DATADIR%%/bgfx/shaders/spirv/chains/hlsl/fs_color.bin
1187
%%DATADIR%%/bgfx/shaders/spirv/chains/hlsl/fs_deconverge.bin
1188
%%DATADIR%%/bgfx/shaders/spirv/chains/hlsl/fs_defocus.bin
1189
%%DATADIR%%/bgfx/shaders/spirv/chains/hlsl/fs_distortion.bin
1190
%%DATADIR%%/bgfx/shaders/spirv/chains/hlsl/fs_ntsc_decode.bin
1191
%%DATADIR%%/bgfx/shaders/spirv/chains/hlsl/fs_ntsc_encode.bin
1192
%%DATADIR%%/bgfx/shaders/spirv/chains/hlsl/fs_phosphor.bin
1193
%%DATADIR%%/bgfx/shaders/spirv/chains/hlsl/fs_post.bin
1194
%%DATADIR%%/bgfx/shaders/spirv/chains/hlsl/fs_prescale.bin
1195
%%DATADIR%%/bgfx/shaders/spirv/chains/hlsl/fs_scanline.bin
1196
%%DATADIR%%/bgfx/shaders/spirv/chains/hlsl/vs_chroma.bin
1197
%%DATADIR%%/bgfx/shaders/spirv/chains/hlsl/vs_color.bin
1198
%%DATADIR%%/bgfx/shaders/spirv/chains/hlsl/vs_deconverge.bin
1199
%%DATADIR%%/bgfx/shaders/spirv/chains/hlsl/vs_defocus.bin
1200
%%DATADIR%%/bgfx/shaders/spirv/chains/hlsl/vs_distortion.bin
1201
%%DATADIR%%/bgfx/shaders/spirv/chains/hlsl/vs_ntsc_decode.bin
1202
%%DATADIR%%/bgfx/shaders/spirv/chains/hlsl/vs_ntsc_encode.bin
1203
%%DATADIR%%/bgfx/shaders/spirv/chains/hlsl/vs_phosphor.bin
1204
%%DATADIR%%/bgfx/shaders/spirv/chains/hlsl/vs_post.bin
1205
%%DATADIR%%/bgfx/shaders/spirv/chains/hlsl/vs_prescale.bin
1206
%%DATADIR%%/bgfx/shaders/spirv/chains/hlsl/vs_scanline.bin
1207
%%DATADIR%%/bgfx/shaders/spirv/chains/hqx/fs_hq2x.bin
1208
%%DATADIR%%/bgfx/shaders/spirv/chains/hqx/fs_hq3x.bin
1209
%%DATADIR%%/bgfx/shaders/spirv/chains/hqx/fs_hq4x.bin
1210
%%DATADIR%%/bgfx/shaders/spirv/chains/hqx/vs_hq2x.bin
1211
%%DATADIR%%/bgfx/shaders/spirv/chains/hqx/vs_hq3x.bin
1212
%%DATADIR%%/bgfx/shaders/spirv/chains/hqx/vs_hq4x.bin
1213
%%DATADIR%%/bgfx/shaders/spirv/chains/lcd-grid/fs_lcd-grid.bin
1214
%%DATADIR%%/bgfx/shaders/spirv/chains/lcd-grid/fs_persistence.bin
1215
%%DATADIR%%/bgfx/shaders/spirv/chains/lcd-grid/vs_lcd-grid.bin
1216
%%DATADIR%%/bgfx/shaders/spirv/chains/lcd-grid/vs_persistence.bin
1217
%%DATADIR%%/bgfx/shaders/spirv/chains/misc/fs_blit.bin
1218
%%DATADIR%%/bgfx/shaders/spirv/chains/misc/fs_blit_bcg.bin
1219
%%DATADIR%%/bgfx/shaders/spirv/chains/misc/fs_blit_palette16.bin
1220
%%DATADIR%%/bgfx/shaders/spirv/chains/misc/fs_blit_rgb32.bin
1221
%%DATADIR%%/bgfx/shaders/spirv/chains/misc/fs_blit_yuy16.bin
1222
%%DATADIR%%/bgfx/shaders/spirv/chains/misc/fs_bob-and-ghost-deinterlace.bin
1223
%%DATADIR%%/bgfx/shaders/spirv/chains/misc/fs_deposterize-pass0.bin
1224
%%DATADIR%%/bgfx/shaders/spirv/chains/misc/fs_deposterize-pass1.bin
1225
%%DATADIR%%/bgfx/shaders/spirv/chains/misc/fs_lut.bin
1226
%%DATADIR%%/bgfx/shaders/spirv/chains/misc/fs_saturation.bin
1227
%%DATADIR%%/bgfx/shaders/spirv/chains/misc/vs_blit.bin
1228
%%DATADIR%%/bgfx/shaders/spirv/chains/misc/vs_bob-and-ghost-deinterlace.bin
1229
%%DATADIR%%/bgfx/shaders/spirv/chains/misc/vs_deposterize-pass0.bin
1230
%%DATADIR%%/bgfx/shaders/spirv/chains/misc/vs_deposterize-pass1.bin
1231
%%DATADIR%%/bgfx/shaders/spirv/chains/misc/vs_lut.bin
1232
%%DATADIR%%/bgfx/shaders/spirv/chains/misc/vs_saturation.bin
1233
%%DATADIR%%/bgfx/shaders/spirv/chains/pillarbox_left_horizontal/fs_gaussian.bin
1234
%%DATADIR%%/bgfx/shaders/spirv/chains/pillarbox_left_horizontal/fs_offset_sat.bin
1235
%%DATADIR%%/bgfx/shaders/spirv/chains/pillarbox_left_horizontal/vs_gaussian.bin
1236
%%DATADIR%%/bgfx/shaders/spirv/chains/pillarbox_left_horizontal/vs_offset_sat.bin
1237
%%DATADIR%%/bgfx/shaders/spirv/chains/pillarbox_left_vertical/fs_gaussian.bin
1238
%%DATADIR%%/bgfx/shaders/spirv/chains/pillarbox_left_vertical/fs_offset_sat.bin
1239
%%DATADIR%%/bgfx/shaders/spirv/chains/pillarbox_left_vertical/vs_gaussian.bin
1240
%%DATADIR%%/bgfx/shaders/spirv/chains/pillarbox_left_vertical/vs_offset_sat.bin
1241
%%DATADIR%%/bgfx/shaders/spirv/chains/pillarbox_right_horizontal/fs_gaussian.bin
1242
%%DATADIR%%/bgfx/shaders/spirv/chains/pillarbox_right_horizontal/fs_offset_sat.bin
1243
%%DATADIR%%/bgfx/shaders/spirv/chains/pillarbox_right_horizontal/vs_gaussian.bin
1244
%%DATADIR%%/bgfx/shaders/spirv/chains/pillarbox_right_horizontal/vs_offset_sat.bin
1245
%%DATADIR%%/bgfx/shaders/spirv/chains/pillarbox_right_vertical/fs_gaussian.bin
1246
%%DATADIR%%/bgfx/shaders/spirv/chains/pillarbox_right_vertical/fs_offset_sat.bin
1247
%%DATADIR%%/bgfx/shaders/spirv/chains/pillarbox_right_vertical/vs_gaussian.bin
1248
%%DATADIR%%/bgfx/shaders/spirv/chains/pillarbox_right_vertical/vs_offset_sat.bin
1249
%%DATADIR%%/bgfx/shaders/spirv/chains/unfiltered/fs_blit.bin
1250
%%DATADIR%%/bgfx/shaders/spirv/chains/unfiltered/vs_blit.bin
1251
%%DATADIR%%/bgfx/shaders/spirv/chains/warp/fs_dilation-horizontal-fast.bin
1252
%%DATADIR%%/bgfx/shaders/spirv/chains/warp/vs_dilation-horizontal-fast.bin
1253
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/fs_xbr-lv1-noblend.bin
1254
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/fs_xbr-lv2-3d.bin
1255
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/fs_xbr-lv2-fast.bin
1256
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/fs_xbr-lv2-noblend.bin
1257
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/fs_xbr-lv2.bin
1258
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/fs_xbr-lv3-noblend.bin
1259
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/fs_xbr-lv3.bin
1260
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/fs_custom-jinc2-sharper.bin
1261
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/fs_super-2xbr-3d-pass0.bin
1262
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/fs_super-2xbr-3d-pass1.bin
1263
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/fs_super-2xbr-3d-pass2.bin
1264
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/fs_super-4xbr-3d-pass0.bin
1265
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/fs_super-4xbr-3d-pass1.bin
1266
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/fs_super-4xbr-3d-pass1f.bin
1267
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/fs_super-4xbr-3d-pass2.bin
1268
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/fs_super-4xbr-3d-pass3.bin
1269
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/fs_super-4xbr-3d-pass3f.bin
1270
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/fs_super-xbr-fast-pass0.bin
1271
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/fs_super-xbr-fast-pass1.bin
1272
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/fs_super-xbr-fast-pass2.bin
1273
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/fs_super-xbr-pass0.bin
1274
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/fs_super-xbr-pass1.bin
1275
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/fs_super-xbr-pass2.bin
1276
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/vs_custom-jinc2-sharper.bin
1277
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/vs_super-2xbr-3d-pass0.bin
1278
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/vs_super-2xbr-3d-pass1.bin
1279
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/vs_super-2xbr-3d-pass2.bin
1280
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/vs_super-4xbr-3d-pass0.bin
1281
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/vs_super-4xbr-3d-pass1.bin
1282
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/vs_super-4xbr-3d-pass1f.bin
1283
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/vs_super-4xbr-3d-pass2.bin
1284
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/vs_super-4xbr-3d-pass3.bin
1285
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/vs_super-4xbr-3d-pass3f.bin
1286
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/vs_super-xbr-fast-pass0.bin
1287
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/vs_super-xbr-fast-pass1.bin
1288
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/vs_super-xbr-fast-pass2.bin
1289
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/vs_super-xbr-pass0.bin
1290
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/vs_super-xbr-pass1.bin
1291
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/vs_super-xbr-pass2.bin
1292
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/vs_super-xbr-pass3.bin
1293
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/vs_xbr-lv1-noblend.bin
1294
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/vs_xbr-lv2-3d.bin
1295
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/vs_xbr-lv2-fast.bin
1296
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/vs_xbr-lv2-noblend.bin
1297
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/vs_xbr-lv2.bin
1298
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/vs_xbr-lv3-noblend.bin
1299
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/vs_xbr-lv3.bin
1300
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-sharp.bin
1301
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v2-gamma.bin
1302
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v2.bin
1303
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v4-gamma.bin
1304
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v4.bin
1305
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v4b.bin
1306
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v5-gamma.bin
1307
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-hybrid/fs_2xbr-hybrid.bin
1308
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-sharp.bin
1309
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v2-gamma.bin
1310
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v2.bin
1311
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v4-gamma.bin
1312
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v4.bin
1313
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v4b.bin
1314
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v5-gamma.bin
1315
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-hybrid/vs_2xbr-hybrid.bin
1316
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-a-pass0.bin
1317
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-accuracy-pass0.bin
1318
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-accuracy-pass1.bin
1319
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-b-pass0.bin
1320
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-c-pass0.bin
1321
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-d-pass0.bin
1322
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-noblend-pass1.bin
1323
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-pass1.bin
1324
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-a-pass0.bin
1325
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-accuracy-pass0.bin
1326
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-accuracy-pass1.bin
1327
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-b-pass0.bin
1328
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-c-pass0.bin
1329
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-d-pass0.bin
1330
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-noblend-pass1.bin
1331
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-pass1.bin
1332
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-lv3-multipass/fs_xbr-lv3-pass0.bin
1333
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-lv3-multipass/fs_xbr-lv3-pass1.bin
1334
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-lv3-multipass/vs_xbr-lv3-pass0.bin
1335
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-lv3-multipass/vs_xbr-lv3-pass1.bin
1336
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass1.bin
1337
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass2.bin
1338
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass3.bin
1339
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass4.bin
1340
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass1.bin
1341
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass2.bin
1342
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass3.bin
1343
%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass4.bin
1344
%%DATADIR%%/bgfx/shaders/spirv/fs_gui.bin
1345
%%DATADIR%%/bgfx/shaders/spirv/fs_screen.bin
1346
%%DATADIR%%/bgfx/shaders/spirv/vs_gui.bin
1347
%%DATADIR%%/bgfx/shaders/spirv/vs_screen.bin
1348
%%DATADIR%%/ctrlr/hotrod.cfg
1349
%%DATADIR%%/ctrlr/hotrodse.cfg
1350
%%DATADIR%%/ctrlr/scorpionxg.cfg
1351
%%DATADIR%%/ctrlr/slikstik.cfg
1352
%%DATADIR%%/ctrlr/xarcade.cfg
55
%%DATADIR%%/hash/32x.xml
1353
%%DATADIR%%/hash/32x.xml
56
%%DATADIR%%/hash/3do_m2.xml
1354
%%DATADIR%%/hash/3do_m2.xml
57
%%DATADIR%%/hash/a2600_cass.xml
1355
%%DATADIR%%/hash/README.md
58
%%DATADIR%%/hash/a2600.xml
1356
%%DATADIR%%/hash/a2600.xml
1357
%%DATADIR%%/hash/a2600_cass.xml
59
%%DATADIR%%/hash/a5200.hsi
1358
%%DATADIR%%/hash/a5200.hsi
60
%%DATADIR%%/hash/a5200.xml
1359
%%DATADIR%%/hash/a5200.xml
61
%%DATADIR%%/hash/a7800.xml
1360
%%DATADIR%%/hash/a7800.xml
1361
%%DATADIR%%/hash/a800.xml
62
%%DATADIR%%/hash/a800_cass.xml
1362
%%DATADIR%%/hash/a800_cass.xml
63
%%DATADIR%%/hash/a800_flop.xml
1363
%%DATADIR%%/hash/a800_flop.xml
64
%%DATADIR%%/hash/a800.xml
1364
%%DATADIR%%/hash/abc1600_flop.xml
65
%%DATADIR%%/hash/abc1600.xml
66
%%DATADIR%%/hash/abc80_cass.xml
67
%%DATADIR%%/hash/abc80_flop.xml
68
%%DATADIR%%/hash/abc800_hdd.xml
69
%%DATADIR%%/hash/abc800.xml
1365
%%DATADIR%%/hash/abc800.xml
1366
%%DATADIR%%/hash/abc800_hdd.xml
70
%%DATADIR%%/hash/abc806.xml
1367
%%DATADIR%%/hash/abc806.xml
1368
%%DATADIR%%/hash/abc80_cass.xml
1369
%%DATADIR%%/hash/abc80_flop.xml
71
%%DATADIR%%/hash/acrnsys_flop.xml
1370
%%DATADIR%%/hash/acrnsys_flop.xml
72
%%DATADIR%%/hash/acrnsys_rom.xml
1371
%%DATADIR%%/hash/acrnsys_rom.xml
73
%%DATADIR%%/hash/adam_cart.xml
1372
%%DATADIR%%/hash/adam_cart.xml
Lines 79-84 libexec/mame/unidasm Link Here
79
%%DATADIR%%/hash/aleste.xml
1378
%%DATADIR%%/hash/aleste.xml
80
%%DATADIR%%/hash/alice32.xml
1379
%%DATADIR%%/hash/alice32.xml
81
%%DATADIR%%/hash/alice90.xml
1380
%%DATADIR%%/hash/alice90.xml
1381
%%DATADIR%%/hash/alphasmart_kapps.xml
82
%%DATADIR%%/hash/alphatro_cart.xml
1382
%%DATADIR%%/hash/alphatro_cart.xml
83
%%DATADIR%%/hash/alphatro_flop.xml
1383
%%DATADIR%%/hash/alphatro_flop.xml
84
%%DATADIR%%/hash/altos5.xml
1384
%%DATADIR%%/hash/altos5.xml
Lines 86-99 libexec/mame/unidasm Link Here
86
%%DATADIR%%/hash/amiga_a1000.xml
1386
%%DATADIR%%/hash/amiga_a1000.xml
87
%%DATADIR%%/hash/amiga_a3000.xml
1387
%%DATADIR%%/hash/amiga_a3000.xml
88
%%DATADIR%%/hash/amiga_apps.xml
1388
%%DATADIR%%/hash/amiga_apps.xml
1389
%%DATADIR%%/hash/amiga_demos.xml
89
%%DATADIR%%/hash/amiga_flop.xml
1390
%%DATADIR%%/hash/amiga_flop.xml
90
%%DATADIR%%/hash/amiga_hardware.xml
1391
%%DATADIR%%/hash/amiga_hardware.xml
1392
%%DATADIR%%/hash/amiga_hdd.xml
91
%%DATADIR%%/hash/amiga_workbench.xml
1393
%%DATADIR%%/hash/amiga_workbench.xml
92
%%DATADIR%%/hash/amigaaga_flop.xml
1394
%%DATADIR%%/hash/amigaaga_flop.xml
93
%%DATADIR%%/hash/amigaecs_flop.xml
1395
%%DATADIR%%/hash/amigaecs_flop.xml
94
%%DATADIR%%/hash/amigaocs_flop.xml
1396
%%DATADIR%%/hash/amigaocs_flop.xml
95
%%DATADIR%%/hash/ampro.xml
1397
%%DATADIR%%/hash/ampro.xml
96
%%DATADIR%%/hash/apc.xml
1398
%%DATADIR%%/hash/apc.xml
1399
%%DATADIR%%/hash/apexc_cyl.xml
97
%%DATADIR%%/hash/apfimag_cass.xml
1400
%%DATADIR%%/hash/apfimag_cass.xml
98
%%DATADIR%%/hash/apfm1000.xml
1401
%%DATADIR%%/hash/apfm1000.xml
99
%%DATADIR%%/hash/apogee.xml
1402
%%DATADIR%%/hash/apogee.xml
Lines 103-117 libexec/mame/unidasm Link Here
103
%%DATADIR%%/hash/apple2_flop_clcracked.xml
1406
%%DATADIR%%/hash/apple2_flop_clcracked.xml
104
%%DATADIR%%/hash/apple2_flop_misc.xml
1407
%%DATADIR%%/hash/apple2_flop_misc.xml
105
%%DATADIR%%/hash/apple2_flop_orig.xml
1408
%%DATADIR%%/hash/apple2_flop_orig.xml
106
%%DATADIR%%/hash/apple2gs.xml
1409
%%DATADIR%%/hash/apple2gs_flop_clcracked.xml
1410
%%DATADIR%%/hash/apple2gs_flop_misc.xml
1411
%%DATADIR%%/hash/apple2gs_flop_orig.xml
107
%%DATADIR%%/hash/apple3.xml
1412
%%DATADIR%%/hash/apple3.xml
108
%%DATADIR%%/hash/applix_flop.xml
1413
%%DATADIR%%/hash/applix_flop.xml
109
%%DATADIR%%/hash/apricot_flop.xml
1414
%%DATADIR%%/hash/apricot_flop.xml
1415
%%DATADIR%%/hash/apxen_flop.xml
110
%%DATADIR%%/hash/aquarius_cart.xml
1416
%%DATADIR%%/hash/aquarius_cart.xml
111
%%DATADIR%%/hash/aquarius_cass.xml
1417
%%DATADIR%%/hash/aquarius_cass.xml
112
%%DATADIR%%/hash/arb.xml
1418
%%DATADIR%%/hash/arb.xml
113
%%DATADIR%%/hash/arcadia.xml
1419
%%DATADIR%%/hash/arcadia.xml
114
%%DATADIR%%/hash/archimedes.xml
1420
%%DATADIR%%/hash/archimedes.xml
1421
%%DATADIR%%/hash/archimedes_hdd.xml
1422
%%DATADIR%%/hash/archimedes_rom.xml
115
%%DATADIR%%/hash/astrocde.xml
1423
%%DATADIR%%/hash/astrocde.xml
116
%%DATADIR%%/hash/atom_cass.xml
1424
%%DATADIR%%/hash/atom_cass.xml
117
%%DATADIR%%/hash/atom_flop.xml
1425
%%DATADIR%%/hash/atom_flop.xml
Lines 119-124 libexec/mame/unidasm Link Here
119
%%DATADIR%%/hash/attache.xml
1427
%%DATADIR%%/hash/attache.xml
120
%%DATADIR%%/hash/aussiebyte.xml
1428
%%DATADIR%%/hash/aussiebyte.xml
121
%%DATADIR%%/hash/b2m.xml
1429
%%DATADIR%%/hash/b2m.xml
1430
%%DATADIR%%/hash/basf7100.xml
122
%%DATADIR%%/hash/bbc_cass.xml
1431
%%DATADIR%%/hash/bbc_cass.xml
123
%%DATADIR%%/hash/bbc_flop_32016.xml
1432
%%DATADIR%%/hash/bbc_flop_32016.xml
124
%%DATADIR%%/hash/bbc_flop_6502.xml
1433
%%DATADIR%%/hash/bbc_flop_6502.xml
Lines 130-138 libexec/mame/unidasm Link Here
130
%%DATADIR%%/hash/bbc_flop_z80.xml
1439
%%DATADIR%%/hash/bbc_flop_z80.xml
131
%%DATADIR%%/hash/bbc_hdd.xml
1440
%%DATADIR%%/hash/bbc_hdd.xml
132
%%DATADIR%%/hash/bbc_rom.xml
1441
%%DATADIR%%/hash/bbc_rom.xml
1442
%%DATADIR%%/hash/bbcb_flop.xml
133
%%DATADIR%%/hash/bbcb_flop_orig.xml
1443
%%DATADIR%%/hash/bbcb_flop_orig.xml
134
%%DATADIR%%/hash/bbcb_flop_us.xml
1444
%%DATADIR%%/hash/bbcb_flop_us.xml
135
%%DATADIR%%/hash/bbcb_flop.xml
136
%%DATADIR%%/hash/bbcbc.xml
1445
%%DATADIR%%/hash/bbcbc.xml
137
%%DATADIR%%/hash/bbcm_cart.xml
1446
%%DATADIR%%/hash/bbcm_cart.xml
138
%%DATADIR%%/hash/bbcm_flop.xml
1447
%%DATADIR%%/hash/bbcm_flop.xml
Lines 173-178 libexec/mame/unidasm Link Here
173
%%DATADIR%%/hash/cgenie_flop_rom.xml
1482
%%DATADIR%%/hash/cgenie_flop_rom.xml
174
%%DATADIR%%/hash/channelf.xml
1483
%%DATADIR%%/hash/channelf.xml
175
%%DATADIR%%/hash/chessmstdm.xml
1484
%%DATADIR%%/hash/chessmstdm.xml
1485
%%DATADIR%%/hash/chip8_quik.xml
176
%%DATADIR%%/hash/clickstart_cart.xml
1486
%%DATADIR%%/hash/clickstart_cart.xml
177
%%DATADIR%%/hash/clipper_flop.xml
1487
%%DATADIR%%/hash/clipper_flop.xml
178
%%DATADIR%%/hash/coco_cart.xml
1488
%%DATADIR%%/hash/coco_cart.xml
Lines 193-198 libexec/mame/unidasm Link Here
193
%%DATADIR%%/hash/dc.xml
1503
%%DATADIR%%/hash/dc.xml
194
%%DATADIR%%/hash/dgnalpha_flop.xml
1504
%%DATADIR%%/hash/dgnalpha_flop.xml
195
%%DATADIR%%/hash/dgnbeta_flop.xml
1505
%%DATADIR%%/hash/dgnbeta_flop.xml
1506
%%DATADIR%%/hash/digilog320.xml
196
%%DATADIR%%/hash/dim68k.xml
1507
%%DATADIR%%/hash/dim68k.xml
197
%%DATADIR%%/hash/dmv.xml
1508
%%DATADIR%%/hash/dmv.xml
198
%%DATADIR%%/hash/dps1.xml
1509
%%DATADIR%%/hash/dps1.xml
Lines 202-209 libexec/mame/unidasm Link Here
202
%%DATADIR%%/hash/dragon_flop.xml
1513
%%DATADIR%%/hash/dragon_flop.xml
203
%%DATADIR%%/hash/dragon_os9.xml
1514
%%DATADIR%%/hash/dragon_os9.xml
204
%%DATADIR%%/hash/e01_flop.xml
1515
%%DATADIR%%/hash/e01_flop.xml
1516
%%DATADIR%%/hash/easy_karaoke_cart.xml
205
%%DATADIR%%/hash/ec1841.xml
1517
%%DATADIR%%/hash/ec1841.xml
206
%%DATADIR%%/hash/einstein.xml
1518
%%DATADIR%%/hash/einstein.xml
1519
%%DATADIR%%/hash/ekara_japan.xml
207
%%DATADIR%%/hash/ekara_japan_a.xml
1520
%%DATADIR%%/hash/ekara_japan_a.xml
208
%%DATADIR%%/hash/ekara_japan_ac.xml
1521
%%DATADIR%%/hash/ekara_japan_ac.xml
209
%%DATADIR%%/hash/ekara_japan_bh.xml
1522
%%DATADIR%%/hash/ekara_japan_bh.xml
Lines 216-222 libexec/mame/unidasm Link Here
216
%%DATADIR%%/hash/ekara_japan_s.xml
1529
%%DATADIR%%/hash/ekara_japan_s.xml
217
%%DATADIR%%/hash/ekara_japan_sp.xml
1530
%%DATADIR%%/hash/ekara_japan_sp.xml
218
%%DATADIR%%/hash/ekara_japan_web.xml
1531
%%DATADIR%%/hash/ekara_japan_web.xml
219
%%DATADIR%%/hash/ekara_japan.xml
220
%%DATADIR%%/hash/ekara_pal.xml
1532
%%DATADIR%%/hash/ekara_pal.xml
221
%%DATADIR%%/hash/ekara_us.xml
1533
%%DATADIR%%/hash/ekara_us.xml
222
%%DATADIR%%/hash/electron_cart.xml
1534
%%DATADIR%%/hash/electron_cart.xml
Lines 233-248 libexec/mame/unidasm Link Here
233
%%DATADIR%%/hash/ews286_flop.xml
1545
%%DATADIR%%/hash/ews286_flop.xml
234
%%DATADIR%%/hash/excalibur64.xml
1546
%%DATADIR%%/hash/excalibur64.xml
235
%%DATADIR%%/hash/exl100.xml
1547
%%DATADIR%%/hash/exl100.xml
1548
%%DATADIR%%/hash/famibox.xml
236
%%DATADIR%%/hash/famicom_cass.xml
1549
%%DATADIR%%/hash/famicom_cass.xml
237
%%DATADIR%%/hash/famicom_flop.xml
1550
%%DATADIR%%/hash/famicom_flop.xml
238
%%DATADIR%%/hash/fidel_msc.xml
1551
%%DATADIR%%/hash/fidel_msc.xml
239
%%DATADIR%%/hash/fidel_sc6.xml
1552
%%DATADIR%%/hash/fidel_sc6.xml
240
%%DATADIR%%/hash/fidel_scc.xml
1553
%%DATADIR%%/hash/fidel_scc.xml
1554
%%DATADIR%%/hash/fm77av.xml
241
%%DATADIR%%/hash/fm7_cass.xml
1555
%%DATADIR%%/hash/fm7_cass.xml
242
%%DATADIR%%/hash/fm7_disk.xml
1556
%%DATADIR%%/hash/fm7_disk.xml
243
%%DATADIR%%/hash/fm77av.xml
1557
%%DATADIR%%/hash/fm8_cass.xml
244
%%DATADIR%%/hash/fmtowns_cd.xml
1558
%%DATADIR%%/hash/fmtowns_cd.xml
245
%%DATADIR%%/hash/fmtowns_flop.xml
1559
%%DATADIR%%/hash/fmtowns_flop_cracked.xml
1560
%%DATADIR%%/hash/fmtowns_flop_misc.xml
1561
%%DATADIR%%/hash/fmtowns_flop_orig.xml
246
%%DATADIR%%/hash/galaxy.xml
1562
%%DATADIR%%/hash/galaxy.xml
247
%%DATADIR%%/hash/gamate.xml
1563
%%DATADIR%%/hash/gamate.xml
248
%%DATADIR%%/hash/gameboy.xml
1564
%%DATADIR%%/hash/gameboy.xml
Lines 251-258 libexec/mame/unidasm Link Here
251
%%DATADIR%%/hash/gameking.xml
1567
%%DATADIR%%/hash/gameking.xml
252
%%DATADIR%%/hash/gameking3.xml
1568
%%DATADIR%%/hash/gameking3.xml
253
%%DATADIR%%/hash/gamepock.xml
1569
%%DATADIR%%/hash/gamepock.xml
254
%%DATADIR%%/hash/gba_ereader.xml
255
%%DATADIR%%/hash/gba.xml
1570
%%DATADIR%%/hash/gba.xml
1571
%%DATADIR%%/hash/gba_ereader.xml
256
%%DATADIR%%/hash/gbcolor.xml
1572
%%DATADIR%%/hash/gbcolor.xml
257
%%DATADIR%%/hash/gcslottv.xml
1573
%%DATADIR%%/hash/gcslottv.xml
258
%%DATADIR%%/hash/ggm.xml
1574
%%DATADIR%%/hash/ggm.xml
Lines 273-279 libexec/mame/unidasm Link Here
273
%%DATADIR%%/hash/gx4000.xml
1589
%%DATADIR%%/hash/gx4000.xml
274
%%DATADIR%%/hash/h21.xml
1590
%%DATADIR%%/hash/h21.xml
275
%%DATADIR%%/hash/horizon.xml
1591
%%DATADIR%%/hash/horizon.xml
276
%%DATADIR%%/hash/hp_ipc.xml
277
%%DATADIR%%/hash/hp85_rom.xml
1592
%%DATADIR%%/hash/hp85_rom.xml
278
%%DATADIR%%/hash/hp86_rom.xml
1593
%%DATADIR%%/hash/hp86_rom.xml
279
%%DATADIR%%/hash/hp9825b_rom.xml
1594
%%DATADIR%%/hash/hp9825b_rom.xml
Lines 283-300 libexec/mame/unidasm Link Here
283
%%DATADIR%%/hash/hp9k3xx_cdrom.xml
1598
%%DATADIR%%/hash/hp9k3xx_cdrom.xml
284
%%DATADIR%%/hash/hp9k3xx_flop.xml
1599
%%DATADIR%%/hash/hp9k3xx_flop.xml
285
%%DATADIR%%/hash/hp9k3xx_hdd.xml
1600
%%DATADIR%%/hash/hp9k3xx_hdd.xml
1601
%%DATADIR%%/hash/hp_ipc.xml
1602
%%DATADIR%%/hash/hp_ipc_rom.xml
286
%%DATADIR%%/hash/ht68k.xml
1603
%%DATADIR%%/hash/ht68k.xml
287
%%DATADIR%%/hash/hx20_rom.xml
1604
%%DATADIR%%/hash/hx20_rom.xml
288
%%DATADIR%%/hash/hyperscan_card.xml
289
%%DATADIR%%/hash/hyperscan.xml
1605
%%DATADIR%%/hash/hyperscan.xml
1606
%%DATADIR%%/hash/hyperscan_card.xml
290
%%DATADIR%%/hash/i7000_card.xml
1607
%%DATADIR%%/hash/i7000_card.xml
291
%%DATADIR%%/hash/ibm5140.xml
1608
%%DATADIR%%/hash/ibm5140.xml
1609
%%DATADIR%%/hash/ibm5150.xml
292
%%DATADIR%%/hash/ibm5150_cass.xml
1610
%%DATADIR%%/hash/ibm5150_cass.xml
293
%%DATADIR%%/hash/ibm5150_hdd.xml
1611
%%DATADIR%%/hash/ibm5150_hdd.xml
294
%%DATADIR%%/hash/ibm5150.xml
1612
%%DATADIR%%/hash/ibm5170.xml
295
%%DATADIR%%/hash/ibm5170_cdrom.xml
1613
%%DATADIR%%/hash/ibm5170_cdrom.xml
296
%%DATADIR%%/hash/ibm5170_hdd.xml
1614
%%DATADIR%%/hash/ibm5170_hdd.xml
297
%%DATADIR%%/hash/ibm5170.xml
298
%%DATADIR%%/hash/ibm6580.xml
1615
%%DATADIR%%/hash/ibm6580.xml
299
%%DATADIR%%/hash/ibmpcjr_cart.xml
1616
%%DATADIR%%/hash/ibmpcjr_cart.xml
300
%%DATADIR%%/hash/ibmpcjr_flop.xml
1617
%%DATADIR%%/hash/ibmpcjr_flop.xml
Lines 337-348 libexec/mame/unidasm Link Here
337
%%DATADIR%%/hash/laser2001_cart.xml
1654
%%DATADIR%%/hash/laser2001_cart.xml
338
%%DATADIR%%/hash/laser2001_flop.xml
1655
%%DATADIR%%/hash/laser2001_flop.xml
339
%%DATADIR%%/hash/leapfrog_didj_cart.xml
1656
%%DATADIR%%/hash/leapfrog_didj_cart.xml
1657
%%DATADIR%%/hash/leapfrog_iquest_cart.xml
340
%%DATADIR%%/hash/leapfrog_leappad_cart.xml
1658
%%DATADIR%%/hash/leapfrog_leappad_cart.xml
341
%%DATADIR%%/hash/leapfrog_ltleappad_cart.xml
1659
%%DATADIR%%/hash/leapfrog_ltleappad_cart.xml
342
%%DATADIR%%/hash/leapfrog_mfleappad_cart.xml
1660
%%DATADIR%%/hash/leapfrog_mfleappad_cart.xml
1661
%%DATADIR%%/hash/leapfrog_zippity_cart.xml
343
%%DATADIR%%/hash/leapster.xml
1662
%%DATADIR%%/hash/leapster.xml
1663
%%DATADIR%%/hash/leapster_explorer_cart.xml
344
%%DATADIR%%/hash/lisa.xml
1664
%%DATADIR%%/hash/lisa.xml
345
%%DATADIR%%/hash/lisa2.xml
1665
%%DATADIR%%/hash/lisa2.xml
1666
%%DATADIR%%/hash/lk3000.xml
346
%%DATADIR%%/hash/lviv.xml
1667
%%DATADIR%%/hash/lviv.xml
347
%%DATADIR%%/hash/lynx.xml
1668
%%DATADIR%%/hash/lynx.xml
348
%%DATADIR%%/hash/m20.xml
1669
%%DATADIR%%/hash/m20.xml
Lines 355-360 libexec/mame/unidasm Link Here
355
%%DATADIR%%/hash/mac_hdflop.xml
1676
%%DATADIR%%/hash/mac_hdflop.xml
356
%%DATADIR%%/hash/mbc200.xml
1677
%%DATADIR%%/hash/mbc200.xml
357
%%DATADIR%%/hash/mbc55x.xml
1678
%%DATADIR%%/hash/mbc55x.xml
1679
%%DATADIR%%/hash/mbee_cart.xml
1680
%%DATADIR%%/hash/mbee_cass.xml
1681
%%DATADIR%%/hash/mbee_flop.xml
1682
%%DATADIR%%/hash/mbee_quik.xml
358
%%DATADIR%%/hash/mc10.xml
1683
%%DATADIR%%/hash/mc10.xml
359
%%DATADIR%%/hash/mc1000_cass.xml
1684
%%DATADIR%%/hash/mc1000_cass.xml
360
%%DATADIR%%/hash/mc1502_flop.xml
1685
%%DATADIR%%/hash/mc1502_flop.xml
Lines 392-401 libexec/mame/unidasm Link Here
392
%%DATADIR%%/hash/msx1_cart.xml
1717
%%DATADIR%%/hash/msx1_cart.xml
393
%%DATADIR%%/hash/msx1_cass.xml
1718
%%DATADIR%%/hash/msx1_cass.xml
394
%%DATADIR%%/hash/msx1_flop.xml
1719
%%DATADIR%%/hash/msx1_flop.xml
1720
%%DATADIR%%/hash/msx2.hsi
395
%%DATADIR%%/hash/msx2_cart.xml
1721
%%DATADIR%%/hash/msx2_cart.xml
396
%%DATADIR%%/hash/msx2_cass.xml
1722
%%DATADIR%%/hash/msx2_cass.xml
397
%%DATADIR%%/hash/msx2_flop.xml
1723
%%DATADIR%%/hash/msx2_flop.xml
398
%%DATADIR%%/hash/msx2.hsi
399
%%DATADIR%%/hash/msx2p_flop.xml
1724
%%DATADIR%%/hash/msx2p_flop.xml
400
%%DATADIR%%/hash/msxr_flop.xml
1725
%%DATADIR%%/hash/msxr_flop.xml
401
%%DATADIR%%/hash/mt65_cass.xml
1726
%%DATADIR%%/hash/mt65_cass.xml
Lines 419-431 libexec/mame/unidasm Link Here
419
%%DATADIR%%/hash/nascom_socket.xml
1744
%%DATADIR%%/hash/nascom_socket.xml
420
%%DATADIR%%/hash/neocd.xml
1745
%%DATADIR%%/hash/neocd.xml
421
%%DATADIR%%/hash/neogeo.xml
1746
%%DATADIR%%/hash/neogeo.xml
1747
%%DATADIR%%/hash/nes.hsi
1748
%%DATADIR%%/hash/nes.xml
422
%%DATADIR%%/hash/nes_ade.xml
1749
%%DATADIR%%/hash/nes_ade.xml
423
%%DATADIR%%/hash/nes_datach.xml
1750
%%DATADIR%%/hash/nes_datach.xml
424
%%DATADIR%%/hash/nes_kstudio.xml
1751
%%DATADIR%%/hash/nes_kstudio.xml
425
%%DATADIR%%/hash/nes_ntbrom.xml
1752
%%DATADIR%%/hash/nes_ntbrom.xml
426
%%DATADIR%%/hash/nes.hsi
427
%%DATADIR%%/hash/nes.xml
428
%%DATADIR%%/hash/next.xml
1753
%%DATADIR%%/hash/next.xml
1754
%%DATADIR%%/hash/next_cdrom.xml
1755
%%DATADIR%%/hash/next_hdd.xml
429
%%DATADIR%%/hash/ngp.xml
1756
%%DATADIR%%/hash/ngp.xml
430
%%DATADIR%%/hash/ngpc.xml
1757
%%DATADIR%%/hash/ngpc.xml
431
%%DATADIR%%/hash/nimbus.xml
1758
%%DATADIR%%/hash/nimbus.xml
Lines 451-470 libexec/mame/unidasm Link Here
451
%%DATADIR%%/hash/pc1512_hdd.xml
1778
%%DATADIR%%/hash/pc1512_hdd.xml
452
%%DATADIR%%/hash/pc1640_flop.xml
1779
%%DATADIR%%/hash/pc1640_flop.xml
453
%%DATADIR%%/hash/pc1640_hdd.xml
1780
%%DATADIR%%/hash/pc1640_hdd.xml
1781
%%DATADIR%%/hash/pc200.xml
1782
%%DATADIR%%/hash/pc6001_cart.xml
1783
%%DATADIR%%/hash/pc8001_flop.xml
1784
%%DATADIR%%/hash/pc8001mk2_flop.xml
1785
%%DATADIR%%/hash/pc8001mk2sr_flop.xml
454
%%DATADIR%%/hash/pc8201.xml
1786
%%DATADIR%%/hash/pc8201.xml
455
%%DATADIR%%/hash/pc8801_cass.xml
1787
%%DATADIR%%/hash/pc8801_cass.xml
1788
%%DATADIR%%/hash/pc8801_cdrom.xml
456
%%DATADIR%%/hash/pc8801_flop.xml
1789
%%DATADIR%%/hash/pc8801_flop.xml
457
%%DATADIR%%/hash/pc88va.xml
1790
%%DATADIR%%/hash/pc88va.xml
458
%%DATADIR%%/hash/pc98_cd.xml
459
%%DATADIR%%/hash/pc98.xml
1791
%%DATADIR%%/hash/pc98.xml
1792
%%DATADIR%%/hash/pc98_cd.xml
460
%%DATADIR%%/hash/pcd_flop.xml
1793
%%DATADIR%%/hash/pcd_flop.xml
461
%%DATADIR%%/hash/pce_tourvision.xml
462
%%DATADIR%%/hash/pce.xml
1794
%%DATADIR%%/hash/pce.xml
1795
%%DATADIR%%/hash/pce_tourvision.xml
463
%%DATADIR%%/hash/pcecd.xml
1796
%%DATADIR%%/hash/pcecd.xml
464
%%DATADIR%%/hash/pcfx.xml
1797
%%DATADIR%%/hash/pcfx.xml
465
%%DATADIR%%/hash/pcw.xml
1798
%%DATADIR%%/hash/pcw.xml
466
%%DATADIR%%/hash/pcw16.xml
1799
%%DATADIR%%/hash/pcw16.xml
467
%%DATADIR%%/hash/pcx_flop.xml
1800
%%DATADIR%%/hash/pcx_flop.xml
1801
%%DATADIR%%/hash/pdp1_ptp.xml
468
%%DATADIR%%/hash/pecom_cass.xml
1802
%%DATADIR%%/hash/pecom_cass.xml
469
%%DATADIR%%/hash/pegasus_cart.xml
1803
%%DATADIR%%/hash/pegasus_cart.xml
470
%%DATADIR%%/hash/pencil2.xml
1804
%%DATADIR%%/hash/pencil2.xml
Lines 479-486 libexec/mame/unidasm Link Here
479
%%DATADIR%%/hash/pi_storyreader_v2_cart.xml
1813
%%DATADIR%%/hash/pi_storyreader_v2_cart.xml
480
%%DATADIR%%/hash/picno.xml
1814
%%DATADIR%%/hash/picno.xml
481
%%DATADIR%%/hash/pico.xml
1815
%%DATADIR%%/hash/pico.xml
482
%%DATADIR%%/hash/pippin_flop.xml
483
%%DATADIR%%/hash/pippin.xml
1816
%%DATADIR%%/hash/pippin.xml
1817
%%DATADIR%%/hash/pippin_flop.xml
1818
%%DATADIR%%/hash/playmaker.xml
484
%%DATADIR%%/hash/plus4_cart.xml
1819
%%DATADIR%%/hash/plus4_cart.xml
485
%%DATADIR%%/hash/plus4_cass.xml
1820
%%DATADIR%%/hash/plus4_cass.xml
486
%%DATADIR%%/hash/plus4_flop.xml
1821
%%DATADIR%%/hash/plus4_flop.xml
Lines 513-525 libexec/mame/unidasm Link Here
513
%%DATADIR%%/hash/ql_flop.xml
1848
%%DATADIR%%/hash/ql_flop.xml
514
%%DATADIR%%/hash/quizwiz.xml
1849
%%DATADIR%%/hash/quizwiz.xml
515
%%DATADIR%%/hash/qx10_flop.xml
1850
%%DATADIR%%/hash/qx10_flop.xml
1851
%%DATADIR%%/hash/r8_card.xml
516
%%DATADIR%%/hash/r9751.xml
1852
%%DATADIR%%/hash/r9751.xml
517
%%DATADIR%%/hash/radio86_cart.xml
1853
%%DATADIR%%/hash/radio86_cart.xml
518
%%DATADIR%%/hash/radio86_cass.xml
1854
%%DATADIR%%/hash/radio86_cass.xml
519
%%DATADIR%%/hash/rainbow.xml
1855
%%DATADIR%%/hash/rainbow.xml
520
%%DATADIR%%/hash/README.md
1856
%%DATADIR%%/hash/roland_tnsc1.xml
521
%%DATADIR%%/hash/rwtrntcs.xml
1857
%%DATADIR%%/hash/rwtrntcs.xml
522
%%DATADIR%%/hash/rx78.xml
1858
%%DATADIR%%/hash/rx78_cart.xml
1859
%%DATADIR%%/hash/rx78_cass.xml
1860
%%DATADIR%%/hash/sagafox.xml
523
%%DATADIR%%/hash/sage2.xml
1861
%%DATADIR%%/hash/sage2.xml
524
%%DATADIR%%/hash/saitek_egr.xml
1862
%%DATADIR%%/hash/saitek_egr.xml
525
%%DATADIR%%/hash/saitek_kso.xml
1863
%%DATADIR%%/hash/saitek_kso.xml
Lines 539-555 libexec/mame/unidasm Link Here
539
%%DATADIR%%/hash/segacd.xml
1877
%%DATADIR%%/hash/segacd.xml
540
%%DATADIR%%/hash/sf7000.xml
1878
%%DATADIR%%/hash/sf7000.xml
541
%%DATADIR%%/hash/sg1000.xml
1879
%%DATADIR%%/hash/sg1000.xml
542
%%DATADIR%%/hash/sgi_mips_hdd.xml
543
%%DATADIR%%/hash/sgi_mips.xml
1880
%%DATADIR%%/hash/sgi_mips.xml
1881
%%DATADIR%%/hash/sgi_mips_hdd.xml
544
%%DATADIR%%/hash/sgx.xml
1882
%%DATADIR%%/hash/sgx.xml
1883
%%DATADIR%%/hash/singingstarkaraoke_cart.xml
545
%%DATADIR%%/hash/sitcom.xml
1884
%%DATADIR%%/hash/sitcom.xml
546
%%DATADIR%%/hash/smarttv_cart.xml
1885
%%DATADIR%%/hash/smarttv_cart.xml
547
%%DATADIR%%/hash/smc777.xml
1886
%%DATADIR%%/hash/smc777.xml
548
%%DATADIR%%/hash/sms.xml
1887
%%DATADIR%%/hash/sms.xml
1888
%%DATADIR%%/hash/snes.xml
549
%%DATADIR%%/hash/snes_bspack.xml
1889
%%DATADIR%%/hash/snes_bspack.xml
550
%%DATADIR%%/hash/snes_strom.xml
1890
%%DATADIR%%/hash/snes_strom.xml
551
%%DATADIR%%/hash/snes_vkun.xml
1891
%%DATADIR%%/hash/snes_vkun.xml
552
%%DATADIR%%/hash/snes.xml
553
%%DATADIR%%/hash/snotec.xml
1892
%%DATADIR%%/hash/snotec.xml
554
%%DATADIR%%/hash/snread.xml
1893
%%DATADIR%%/hash/snread.xml
555
%%DATADIR%%/hash/snspell.xml
1894
%%DATADIR%%/hash/snspell.xml
Lines 606-626 libexec/mame/unidasm Link Here
606
%%DATADIR%%/hash/timex_cass.xml
1945
%%DATADIR%%/hash/timex_cass.xml
607
%%DATADIR%%/hash/timex_dock.xml
1946
%%DATADIR%%/hash/timex_dock.xml
608
%%DATADIR%%/hash/tntell.xml
1947
%%DATADIR%%/hash/tntell.xml
609
%%DATADIR%%/hash/to_flop.xml
1948
%%DATADIR%%/hash/to770_cart.xml
1949
%%DATADIR%%/hash/to770a_cart.xml
610
%%DATADIR%%/hash/to7_cart.xml
1950
%%DATADIR%%/hash/to7_cart.xml
611
%%DATADIR%%/hash/to7_cass.xml
1951
%%DATADIR%%/hash/to7_cass.xml
612
%%DATADIR%%/hash/to7_qd.xml
1952
%%DATADIR%%/hash/to7_qd.xml
613
%%DATADIR%%/hash/to770_cart.xml
614
%%DATADIR%%/hash/to770a_cart.xml
615
%%DATADIR%%/hash/to8_cass.xml
1953
%%DATADIR%%/hash/to8_cass.xml
616
%%DATADIR%%/hash/to8_qd.xml
1954
%%DATADIR%%/hash/to8_qd.xml
1955
%%DATADIR%%/hash/to_flop.xml
1956
%%DATADIR%%/hash/trs80_cass.xml
1957
%%DATADIR%%/hash/trs80_flop.xml
1958
%%DATADIR%%/hash/trs80_quik.xml
617
%%DATADIR%%/hash/trs80m2.xml
1959
%%DATADIR%%/hash/trs80m2.xml
618
%%DATADIR%%/hash/trsm100.xml
1960
%%DATADIR%%/hash/trsm100.xml
1961
%%DATADIR%%/hash/ttwist_brainquest_cart.xml
1962
%%DATADIR%%/hash/turboextreme_cart.xml
619
%%DATADIR%%/hash/tutor.xml
1963
%%DATADIR%%/hash/tutor.xml
620
%%DATADIR%%/hash/tvc_cart.xml
1964
%%DATADIR%%/hash/tvc_cart.xml
621
%%DATADIR%%/hash/tvc_cass.xml
1965
%%DATADIR%%/hash/tvc_cass.xml
622
%%DATADIR%%/hash/tvc_flop.xml
1966
%%DATADIR%%/hash/tvc_flop.xml
623
%%DATADIR%%/hash/tvgogo.xml
1967
%%DATADIR%%/hash/tvgogo.xml
1968
%%DATADIR%%/hash/tx0_ptp.xml
1969
%%DATADIR%%/hash/u110_card.xml
624
%%DATADIR%%/hash/unichamp.xml
1970
%%DATADIR%%/hash/unichamp.xml
625
%%DATADIR%%/hash/ut88.xml
1971
%%DATADIR%%/hash/ut88.xml
626
%%DATADIR%%/hash/uzebox.xml
1972
%%DATADIR%%/hash/uzebox.xml
Lines 643-660 libexec/mame/unidasm Link Here
643
%%DATADIR%%/hash/videopac.xml
1989
%%DATADIR%%/hash/videopac.xml
644
%%DATADIR%%/hash/vii.xml
1990
%%DATADIR%%/hash/vii.xml
645
%%DATADIR%%/hash/vip.xml
1991
%%DATADIR%%/hash/vip.xml
1992
%%DATADIR%%/hash/vis.xml
646
%%DATADIR%%/hash/visicom.xml
1993
%%DATADIR%%/hash/visicom.xml
647
%%DATADIR%%/hash/vixen.xml
1994
%%DATADIR%%/hash/vixen.xml
648
%%DATADIR%%/hash/vsmile_cart.xml
1995
%%DATADIR%%/hash/vsmile_cart.xml
649
%%DATADIR%%/hash/vsmile_cd.xml
1996
%%DATADIR%%/hash/vsmile_cd.xml
650
%%DATADIR%%/hash/vsmileb_cart.xml
1997
%%DATADIR%%/hash/vsmileb_cart.xml
651
%%DATADIR%%/hash/vsmilem_cart.xml
1998
%%DATADIR%%/hash/vsmilem_cart.xml
1999
%%DATADIR%%/hash/vtech2_cass.xml
2000
%%DATADIR%%/hash/vtech_innotab_cart.xml
2001
%%DATADIR%%/hash/vtech_innotv_cart.xml
652
%%DATADIR%%/hash/vtech_storio_cart.xml
2002
%%DATADIR%%/hash/vtech_storio_cart.xml
653
%%DATADIR%%/hash/vz_cass.xml
2003
%%DATADIR%%/hash/vz_cass.xml
654
%%DATADIR%%/hash/vz_snap.xml
2004
%%DATADIR%%/hash/vz_snap.xml
655
%%DATADIR%%/hash/wangpc.xml
2005
%%DATADIR%%/hash/wangpc.xml
656
%%DATADIR%%/hash/waveterm.xml
2006
%%DATADIR%%/hash/waveterm.xml
657
%%DATADIR%%/hash/wicat.xml
2007
%%DATADIR%%/hash/wicat.xml
2008
%%DATADIR%%/hash/wizard_cart.xml
658
%%DATADIR%%/hash/wmbullet.xml
2009
%%DATADIR%%/hash/wmbullet.xml
659
%%DATADIR%%/hash/wscolor.xml
2010
%%DATADIR%%/hash/wscolor.xml
660
%%DATADIR%%/hash/wswan.xml
2011
%%DATADIR%%/hash/wswan.xml
Lines 666-674 libexec/mame/unidasm Link Here
666
%%DATADIR%%/hash/xegs.xml
2017
%%DATADIR%%/hash/xegs.xml
667
%%DATADIR%%/hash/xerox820.xml
2018
%%DATADIR%%/hash/xerox820.xml
668
%%DATADIR%%/hash/xerox820ii.xml
2019
%%DATADIR%%/hash/xerox820ii.xml
2020
%%DATADIR%%/hash/z80clock.xml
669
%%DATADIR%%/hash/z80ne_cass.xml
2021
%%DATADIR%%/hash/z80ne_cass.xml
670
%%DATADIR%%/hash/z80ne_flop.xml
2022
%%DATADIR%%/hash/z80ne_flop.xml
671
%%DATADIR%%/hash/z88_cart.xml
2023
%%DATADIR%%/hash/z88_cart.xml
672
%%DATADIR%%/hash/zorba.xml
2024
%%DATADIR%%/hash/zorba.xml
673
%%DATADIR%%/hash/zx80_cass.xml
2025
%%DATADIR%%/hash/zx80_cass.xml
674
%%DATADIR%%/hash/zx81_cass.xml
2026
%%DATADIR%%/hash/zx81_cass.xml
2027
%%DATADIR%%/ini/examples/bt601-525.ini
2028
%%DATADIR%%/ini/examples/bt601-625.ini
2029
%%DATADIR%%/ini/examples/bt709.ini
2030
%%DATADIR%%/ini/examples/ntscj.ini
2031
%%DATADIR%%/ini/examples/p1.ini
2032
%%DATADIR%%/ini/examples/p14.ini
2033
%%DATADIR%%/ini/examples/p2.ini
2034
%%DATADIR%%/ini/examples/p3.ini
2035
%%DATADIR%%/ini/examples/p35.ini
2036
%%DATADIR%%/ini/examples/p4.ini
2037
%%DATADIR%%/ini/examples/p55.ini
2038
%%DATADIR%%/ini/examples/p7.ini
2039
%%DATADIR%%/ini/presets/gameboy.ini
2040
%%DATADIR%%/ini/presets/gba.ini
2041
%%DATADIR%%/ini/presets/lcd-matrix.ini
2042
%%DATADIR%%/ini/presets/lcd.ini
2043
%%DATADIR%%/ini/presets/raster.ini
2044
%%DATADIR%%/ini/presets/vector-mono.ini
2045
%%DATADIR%%/ini/presets/vector.ini
2046
%%DATADIR%%/language/Afrikaans/strings.mo
2047
%%DATADIR%%/language/Afrikaans/strings.po
2048
%%DATADIR%%/language/Albanian/strings.mo
2049
%%DATADIR%%/language/Albanian/strings.po
2050
%%DATADIR%%/language/Arabic/strings.mo
2051
%%DATADIR%%/language/Arabic/strings.po
2052
%%DATADIR%%/language/Basque/strings.mo
2053
%%DATADIR%%/language/Basque/strings.po
2054
%%DATADIR%%/language/Belarusian/strings.mo
2055
%%DATADIR%%/language/Belarusian/strings.po
2056
%%DATADIR%%/language/Bosnian/strings.mo
2057
%%DATADIR%%/language/Bosnian/strings.po
2058
%%DATADIR%%/language/Bulgarian/strings.mo
2059
%%DATADIR%%/language/Bulgarian/strings.po
2060
%%DATADIR%%/language/Burmese/strings.mo
2061
%%DATADIR%%/language/Burmese/strings.po
2062
%%DATADIR%%/language/Catalan/strings.mo
2063
%%DATADIR%%/language/Catalan/strings.po
2064
%%DATADIR%%/language/Chinese_Simplified/strings.mo
2065
%%DATADIR%%/language/Chinese_Simplified/strings.po
2066
%%DATADIR%%/language/Chinese_Traditional/strings.mo
2067
%%DATADIR%%/language/Chinese_Traditional/strings.po
2068
%%DATADIR%%/language/Croatian/strings.mo
2069
%%DATADIR%%/language/Croatian/strings.po
2070
%%DATADIR%%/language/Czech/strings.mo
2071
%%DATADIR%%/language/Czech/strings.po
2072
%%DATADIR%%/language/Danish/strings.mo
2073
%%DATADIR%%/language/Danish/strings.po
2074
%%DATADIR%%/language/Dutch/strings.mo
2075
%%DATADIR%%/language/Dutch/strings.po
2076
%%DATADIR%%/language/English/strings.mo
2077
%%DATADIR%%/language/English/strings.po
2078
%%DATADIR%%/language/Estonian/strings.mo
2079
%%DATADIR%%/language/Estonian/strings.po
2080
%%DATADIR%%/language/Finnish/strings.mo
2081
%%DATADIR%%/language/Finnish/strings.po
2082
%%DATADIR%%/language/French/strings.mo
2083
%%DATADIR%%/language/French/strings.po
2084
%%DATADIR%%/language/French_Belgium/strings.mo
2085
%%DATADIR%%/language/French_Belgium/strings.po
2086
%%DATADIR%%/language/French_Canada/strings.mo
2087
%%DATADIR%%/language/French_Canada/strings.po
2088
%%DATADIR%%/language/Georgian/strings.mo
2089
%%DATADIR%%/language/Georgian/strings.po
2090
%%DATADIR%%/language/German/strings.mo
2091
%%DATADIR%%/language/German/strings.po
2092
%%DATADIR%%/language/Greek/strings.mo
2093
%%DATADIR%%/language/Greek/strings.po
2094
%%DATADIR%%/language/Hebrew/strings.mo
2095
%%DATADIR%%/language/Hebrew/strings.po
2096
%%DATADIR%%/language/Hindi/strings.mo
2097
%%DATADIR%%/language/Hindi/strings.po
2098
%%DATADIR%%/language/Hungarian/strings.mo
2099
%%DATADIR%%/language/Hungarian/strings.po
2100
%%DATADIR%%/language/Indonesian/strings.mo
2101
%%DATADIR%%/language/Indonesian/strings.po
2102
%%DATADIR%%/language/Italian/strings.mo
2103
%%DATADIR%%/language/Italian/strings.po
2104
%%DATADIR%%/language/Japanese/strings.mo
2105
%%DATADIR%%/language/Japanese/strings.po
2106
%%DATADIR%%/language/Korean/strings.mo
2107
%%DATADIR%%/language/Korean/strings.po
2108
%%DATADIR%%/language/LICENSE
2109
%%DATADIR%%/language/Latvian/strings.mo
2110
%%DATADIR%%/language/Latvian/strings.po
2111
%%DATADIR%%/language/Lithuanian/strings.mo
2112
%%DATADIR%%/language/Lithuanian/strings.po
2113
%%DATADIR%%/language/Macedonian/strings.mo
2114
%%DATADIR%%/language/Macedonian/strings.po
2115
%%DATADIR%%/language/Norwegian/strings.mo
2116
%%DATADIR%%/language/Norwegian/strings.po
2117
%%DATADIR%%/language/Persian/strings.mo
2118
%%DATADIR%%/language/Persian/strings.po
2119
%%DATADIR%%/language/Polish/strings.mo
2120
%%DATADIR%%/language/Polish/strings.po
2121
%%DATADIR%%/language/Portuguese/strings.mo
2122
%%DATADIR%%/language/Portuguese/strings.po
2123
%%DATADIR%%/language/Portuguese_Brazil/strings.mo
2124
%%DATADIR%%/language/Portuguese_Brazil/strings.po
2125
%%DATADIR%%/language/README.md
2126
%%DATADIR%%/language/Romanian/strings.mo
2127
%%DATADIR%%/language/Romanian/strings.po
2128
%%DATADIR%%/language/Russian/strings.mo
2129
%%DATADIR%%/language/Russian/strings.po
2130
%%DATADIR%%/language/Serbian/strings.mo
2131
%%DATADIR%%/language/Serbian/strings.po
2132
%%DATADIR%%/language/Serbian_Cyrillic/strings.mo
2133
%%DATADIR%%/language/Serbian_Cyrillic/strings.po
2134
%%DATADIR%%/language/Slovak/strings.mo
2135
%%DATADIR%%/language/Slovak/strings.po
2136
%%DATADIR%%/language/Slovenian/strings.mo
2137
%%DATADIR%%/language/Slovenian/strings.po
2138
%%DATADIR%%/language/Spanish/strings.mo
2139
%%DATADIR%%/language/Spanish/strings.po
2140
%%DATADIR%%/language/Spanish_Mexico/strings.mo
2141
%%DATADIR%%/language/Spanish_Mexico/strings.po
2142
%%DATADIR%%/language/Swedish/strings.mo
2143
%%DATADIR%%/language/Swedish/strings.po
2144
%%DATADIR%%/language/Thai/strings.mo
2145
%%DATADIR%%/language/Thai/strings.po
2146
%%DATADIR%%/language/Turkish/strings.mo
2147
%%DATADIR%%/language/Turkish/strings.po
2148
%%DATADIR%%/language/Ukrainian/strings.mo
2149
%%DATADIR%%/language/Ukrainian/strings.po
2150
%%DATADIR%%/language/Vietnamese/strings.mo
2151
%%DATADIR%%/language/Vietnamese/strings.po
2152
%%DATADIR%%/plugins/README.md
2153
%%DATADIR%%/plugins/autofire/autofire_menu.lua
2154
%%DATADIR%%/plugins/autofire/autofire_save.lua
2155
%%DATADIR%%/plugins/autofire/init.lua
2156
%%DATADIR%%/plugins/autofire/plugin.json
2157
%%DATADIR%%/plugins/boot.lua
2158
%%DATADIR%%/plugins/cheat/cheat_json.lua
2159
%%DATADIR%%/plugins/cheat/cheat_simple.lua
2160
%%DATADIR%%/plugins/cheat/cheat_xml.lua
2161
%%DATADIR%%/plugins/cheat/init.lua
2162
%%DATADIR%%/plugins/cheat/plugin.json
2163
%%DATADIR%%/plugins/cheat/xml_to_json.lua
2164
%%DATADIR%%/plugins/cheatfind/init.lua
2165
%%DATADIR%%/plugins/cheatfind/plugin.json
2166
%%DATADIR%%/plugins/commonui/init.lua
2167
%%DATADIR%%/plugins/commonui/plugin.json
2168
%%DATADIR%%/plugins/console/init.lua
2169
%%DATADIR%%/plugins/console/plugin.json
2170
%%DATADIR%%/plugins/data/button_char.lua
2171
%%DATADIR%%/plugins/data/data_command.lua
2172
%%DATADIR%%/plugins/data/data_gameinit.lua
2173
%%DATADIR%%/plugins/data/data_hiscore.lua
2174
%%DATADIR%%/plugins/data/data_history.lua
2175
%%DATADIR%%/plugins/data/data_%%EMULATOR%%info.lua
2176
%%DATADIR%%/plugins/data/data_marp.lua
2177
%%DATADIR%%/plugins/data/data_messinfo.lua
2178
%%DATADIR%%/plugins/data/data_story.lua
2179
%%DATADIR%%/plugins/data/data_sysinfo.lua
2180
%%DATADIR%%/plugins/data/database.lua
2181
%%DATADIR%%/plugins/data/init.lua
2182
%%DATADIR%%/plugins/data/load_dat.lua
2183
%%DATADIR%%/plugins/data/plugin.json
2184
%%DATADIR%%/plugins/discord/init.lua
2185
%%DATADIR%%/plugins/discord/plugin.json
2186
%%DATADIR%%/plugins/dummy/init.lua
2187
%%DATADIR%%/plugins/dummy/plugin.json
2188
%%DATADIR%%/plugins/gdbstub/init.lua
2189
%%DATADIR%%/plugins/gdbstub/plugin.json
2190
%%DATADIR%%/plugins/hiscore/hiscore.dat
2191
%%DATADIR%%/plugins/hiscore/init.lua
2192
%%DATADIR%%/plugins/hiscore/plugin.json
2193
%%DATADIR%%/plugins/hiscore/sort_hiscore.lua
2194
%%DATADIR%%/plugins/inputmacro/init.lua
2195
%%DATADIR%%/plugins/inputmacro/inputmacro_menu.lua
2196
%%DATADIR%%/plugins/inputmacro/inputmacro_persist.lua
2197
%%DATADIR%%/plugins/inputmacro/plugin.json
2198
%%DATADIR%%/plugins/json/LICENSE
2199
%%DATADIR%%/plugins/json/README.md
2200
%%DATADIR%%/plugins/json/init.lua
2201
%%DATADIR%%/plugins/json/plugin.json
2202
%%DATADIR%%/plugins/layout/init.lua
2203
%%DATADIR%%/plugins/layout/plugin.json
2204
%%DATADIR%%/plugins/plugin.schema
2205
%%DATADIR%%/plugins/portname/init.lua
2206
%%DATADIR%%/plugins/portname/plugin.json
2207
%%DATADIR%%/plugins/timecode/init.lua
2208
%%DATADIR%%/plugins/timecode/plugin.json
2209
%%DATADIR%%/plugins/timer/init.lua
2210
%%DATADIR%%/plugins/timer/plugin.json
2211
%%DATADIR%%/plugins/timer/timer_persist.lua
2212
%%DATADIR%%/plugins/xml/LICENSE.txt
2213
%%DATADIR%%/plugins/xml/init.lua
2214
%%DATADIR%%/plugins/xml/plugin.json
2215
%%DATADIR%%/samples/LICENSE
2216
%%DATADIR%%/samples/MM1_keyboard/beep.wav
2217
%%DATADIR%%/samples/MM1_keyboard/power_switch.wav
2218
%%DATADIR%%/samples/README.md
2219
%%DATADIR%%/samples/dir.txt
2220
%%DATADIR%%/samples/floppy/35_seek_12ms.wav
2221
%%DATADIR%%/samples/floppy/35_seek_20ms.wav
2222
%%DATADIR%%/samples/floppy/35_seek_2ms.wav
2223
%%DATADIR%%/samples/floppy/35_seek_6ms.wav
2224
%%DATADIR%%/samples/floppy/35_spin_empty.wav
2225
%%DATADIR%%/samples/floppy/35_spin_end.wav
2226
%%DATADIR%%/samples/floppy/35_spin_loaded.wav
2227
%%DATADIR%%/samples/floppy/35_spin_start_empty.wav
2228
%%DATADIR%%/samples/floppy/35_spin_start_loaded.wav
2229
%%DATADIR%%/samples/floppy/35_step_1_1.wav
2230
%%DATADIR%%/samples/floppy/525_seek_12ms.wav
2231
%%DATADIR%%/samples/floppy/525_seek_20ms.wav
2232
%%DATADIR%%/samples/floppy/525_seek_2ms.wav
2233
%%DATADIR%%/samples/floppy/525_seek_6ms.wav
2234
%%DATADIR%%/samples/floppy/525_spin_empty.wav
2235
%%DATADIR%%/samples/floppy/525_spin_end.wav
2236
%%DATADIR%%/samples/floppy/525_spin_loaded.wav
2237
%%DATADIR%%/samples/floppy/525_spin_start_empty.wav
2238
%%DATADIR%%/samples/floppy/525_spin_start_loaded.wav
2239
%%DATADIR%%/samples/floppy/525_step_1_1.wav

Return to bug 252362