Merge pull request #2117 from brooksytech/dev
Enable Parallel gfx / audio plugin for Parallel N64 on supported devices
This commit is contained in:
commit
f1bb8c894b
2 changed files with 8 additions and 1 deletions
|
@ -21,10 +21,16 @@ if [ "${OPENGLES_SUPPORT}" = yes ]; then
|
|||
PKG_DEPENDS_TARGET+=" ${OPENGLES}"
|
||||
fi
|
||||
|
||||
if [ "${VULKAN_SUPPORT}" = "yes" ]; then
|
||||
PKG_MAKE_OPTS_TARGET+=" HAVE_PARALLEL=1"
|
||||
fi
|
||||
|
||||
case ${DEVICE} in
|
||||
RK3*|S922X*)
|
||||
PKG_MAKE_OPTS_TARGET=" platform=${DEVICE}"
|
||||
PKG_MAKE_OPTS_TARGET+=" platform=${DEVICE}"
|
||||
;;
|
||||
AMD64)
|
||||
PKG_MAKE_OPTS_TARGET+=" HAVE_PARALLEL_RSP=1"
|
||||
esac
|
||||
|
||||
makeinstall_target() {
|
||||
|
|
|
@ -608,6 +608,7 @@
|
|||
<choice name="glide64" value="glide64"/>
|
||||
<choice name="rice" value="rice"/>
|
||||
<choice name="gln64" value="gln64"/>
|
||||
<choice name="vulkan" value="parallel"/>
|
||||
</feature>
|
||||
<feature name="parallel n64 internal resolution">
|
||||
<choice name="240p" value="320x240"/>
|
||||
|
|
Loading…
Reference in a new issue