Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 24 Jul 2024 16:27:04 GMT
From:      Vladimir Druzenko <vvd@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 54b259414cb8 - main - games/moonlight-qt: Build fails on i386: cannot initialize a member subobject of type 'VkSurfaceKHR' (aka 'unsigned long long') with an rvalue of type 'std::nullptr_t'
Message-ID:  <202407241627.46OGR4KD071583@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by vvd:

URL: https://cgit.FreeBSD.org/ports/commit/?id=54b259414cb8dc56bacff02399b3668bf1d03f9b

commit 54b259414cb8dc56bacff02399b3668bf1d03f9b
Author:     Armin Zhu <lisp_25689@163.com>
AuthorDate: 2024-07-24 16:24:24 +0000
Commit:     Vladimir Druzenko <vvd@FreeBSD.org>
CommitDate: 2024-07-24 16:24:24 +0000

    games/moonlight-qt: Build fails on i386: cannot initialize a member subobject of type 'VkSurfaceKHR' (aka 'unsigned long long') with an rvalue of type 'std::nullptr_t'
    
    In file included from /wrkdirs/usr/ports/games/moonlight-qt/work/moonlight-qt-6.0.1/app/streaming/video/ffmpeg.cpp:48:
    /wrkdirs/usr/ports/games/moonlight-qt/work/moonlight-qt-6.0.1/app/streaming/video/ffmpeg-renderers/plvk.h:57:32: error: cannot initialize a member subobject of type 'VkSurfaceKHR' (aka 'unsigned long long') with an rvalue of type 'std::nullptr_t'
       57 |     VkSurfaceKHR m_VkSurface = nullptr;
          |                                ^~~~~~~
    
    Upstream bug-report:
    https://github.com/moonlight-stream/moonlight-qt/issues/1367
    
    PR:     280425
    MFH:    2024Q3
---
 .../patch-app_streaming_video_ffmpeg-renderers_plvk.h      | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/games/moonlight-qt/files/patch-app_streaming_video_ffmpeg-renderers_plvk.h b/games/moonlight-qt/files/patch-app_streaming_video_ffmpeg-renderers_plvk.h
new file mode 100644
index 000000000000..60440d150c4a
--- /dev/null
+++ b/games/moonlight-qt/files/patch-app_streaming_video_ffmpeg-renderers_plvk.h
@@ -0,0 +1,14 @@
+--- app/streaming/video/ffmpeg-renderers/plvk.h.orig	2024-07-23 05:26:28 UTC
++++ app/streaming/video/ffmpeg-renderers/plvk.h
+@@ -54,7 +54,11 @@ class PlVkRenderer : public IFFmpegRenderer { (private
+     // The libplacebo rendering state
+     pl_log m_Log = nullptr;
+     pl_vk_inst m_PlVkInstance = nullptr;
++#if VK_USE_64_BIT_PTR_DEFINES == 1
+     VkSurfaceKHR m_VkSurface = nullptr;
++#else
++    VkSurfaceKHR m_VkSurface = 0;
++#endif
+     pl_vulkan m_Vulkan = nullptr;
+     pl_swapchain m_Swapchain = nullptr;
+     pl_renderer m_Renderer = nullptr;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202407241627.46OGR4KD071583>