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

Collapse All | Expand All

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

Return to bug 252362