parent
8a84d2c053
commit
1bbc76fb89
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=515738
3 changed files with 24 additions and 5 deletions
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= yuzu
|
||||
PORTVERSION= s20191023
|
||||
PORTVERSION= s20191026
|
||||
PORTREVISION?= 0
|
||||
CATEGORIES= emulators
|
||||
|
||||
|
@ -28,7 +28,7 @@ BUILD_DEPENDS= boost-libs>=1.66:devel/boost-libs \
|
|||
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= yuzu-emu
|
||||
GH_TAGNAME= 012d7f523
|
||||
GH_TAGNAME= 26f3e18c5
|
||||
GH_TUPLE= yuzu-emu:unicorn:1.0.1-153-g73f45735:unicorn/externals/unicorn \
|
||||
DarkLordZach:mbedtls:a280e60:mbedtls/externals/mbedtls \
|
||||
DarkLordZach:libzip:rel-1-5-2-26-gda12b71:libzip/externals/libzip \
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
TIMESTAMP = 1571860357
|
||||
SHA256 (yuzu-emu-yuzu-s20191023-012d7f523_GH0.tar.gz) = 0e1d8bd0ffb0827b2a3676664e185d67543f069539c1be01c3bc6bc022a0ca94
|
||||
SIZE (yuzu-emu-yuzu-s20191023-012d7f523_GH0.tar.gz) = 2587580
|
||||
TIMESTAMP = 1572119773
|
||||
SHA256 (yuzu-emu-yuzu-s20191026-26f3e18c5_GH0.tar.gz) = b2e03c4887da9cb13fcfadfd51c890bec0a23f346fe950a876db27cb51ae6e55
|
||||
SIZE (yuzu-emu-yuzu-s20191026-26f3e18c5_GH0.tar.gz) = 2591026
|
||||
SHA256 (yuzu-emu-unicorn-1.0.1-153-g73f45735_GH0.tar.gz) = 8f7b4d8eb998c2a4c146268d83b44fc22ca8d4d276f26d6af1071e51f4b5bd4f
|
||||
SIZE (yuzu-emu-unicorn-1.0.1-153-g73f45735_GH0.tar.gz) = 3296254
|
||||
SHA256 (DarkLordZach-mbedtls-a280e60_GH0.tar.gz) = 4fc6ddc256bc75b975fd5ad8bb7d31ff79c62d49daafb0108585c9ef80c6c5a7
|
||||
|
|
|
@ -160,6 +160,25 @@ template <class _Tp, size_t _Size> struct _LIBCPP_TEMPLATE_VIS array;
|
|||
namespace Vulkan::VKShader {
|
||||
|
||||
using Sirit::Id;
|
||||
--- src/video_core/shader/shader_ir.cpp.orig 2019-10-26 19:56:13 UTC
|
||||
+++ src/video_core/shader/shader_ir.cpp
|
||||
@@ -13,6 +13,16 @@
|
||||
#include "video_core/shader/node_helper.h"
|
||||
#include "video_core/shader/shader_ir.h"
|
||||
|
||||
+#if defined(_LIBCPP_VERSION) && _LIBCPP_VERSION < 7000
|
||||
+_LIBCPP_BEGIN_NAMESPACE_STD
|
||||
+template<class _Tp, class... _Args,
|
||||
+ class = typename enable_if<(is_same_v<_Tp, _Args> && ...), void>::type
|
||||
+ >
|
||||
+array(_Tp, _Args...)
|
||||
+ -> array<_Tp, 1 + sizeof...(_Args)>;
|
||||
+_LIBCPP_END_NAMESPACE_STD
|
||||
+#endif
|
||||
+
|
||||
namespace VideoCommon::Shader {
|
||||
|
||||
using Tegra::Shader::Attribute;
|
||||
--- src/yuzu/configuration/configure_gamelist.cpp.orig 2019-06-28 18:03:38 UTC
|
||||
+++ src/yuzu/configuration/configure_gamelist.cpp
|
||||
@@ -11,6 +11,16 @@
|
||||
|
|
Loading…
Reference in a new issue