ports/devel/electron4/files/patch-ui_gfx_native__pixmap__handle.cc
Luca Pizzamiglio 2f40d531c4 devel/electron4: Add electron 4.2.2
Finally, after a long wait, an electron port for FreeBSD lands in the
portstree.

A huge thanks to everyone contributed to this huge effort and to the
maintainer that is willing to take the burden of the maintainership!
2019-05-28 09:12:02 +00:00

28 lines
911 B
C++

--- ui/gfx/native_pixmap_handle.cc.orig 2019-03-15 06:26:44 UTC
+++ ui/gfx/native_pixmap_handle.cc
@@ -4,14 +4,14 @@
#include "ui/gfx/native_pixmap_handle.h"
-#if defined(OS_LINUX)
+#if defined(OS_LINUX) || defined(OS_BSD)
#include <drm_fourcc.h>
#include "base/posix/eintr_wrapper.h"
#endif
namespace gfx {
-#if defined(OS_LINUX)
+#if defined(OS_LINUX) || defined(OS_BSD)
static_assert(NativePixmapPlane::kNoModifier == DRM_FORMAT_MOD_INVALID,
"gfx::NativePixmapPlane::kNoModifier should be an alias for"
"DRM_FORMAT_MOD_INVALID");
@@ -36,7 +36,7 @@ NativePixmapHandle::NativePixmapHandle(const NativePix
NativePixmapHandle::~NativePixmapHandle() {}
-#if defined(OS_LINUX)
+#if defined(OS_LINUX) || defined(OS_BSD)
NativePixmapHandle CloneHandleForIPC(const NativePixmapHandle& handle) {
NativePixmapHandle clone;
std::vector<base::ScopedFD> scoped_fds;