aboutsummaryrefslogtreecommitdiff
path: root/www/firefox/files/patch-bug1638010
diff options
context:
space:
mode:
Diffstat (limited to 'www/firefox/files/patch-bug1638010')
-rw-r--r--www/firefox/files/patch-bug163801025
1 files changed, 0 insertions, 25 deletions
diff --git a/www/firefox/files/patch-bug1638010 b/www/firefox/files/patch-bug1638010
deleted file mode 100644
index 9408c73d5cbb..000000000000
--- a/www/firefox/files/patch-bug1638010
+++ /dev/null
@@ -1,25 +0,0 @@
-commit 9a89dccd2a85
-Author: Martin Stransky <stransky@redhat.com>
-Date: Fri May 15 07:52:39 2020 +0000
-
- Bug 1638010 [Wayland] Make WaylandDMABUFTextureData::BorrowDrawTarget() fail when underlying dmabuf surface is not locked, r=sotaro
-
- Differential Revision: https://phabricator.services.mozilla.com/D75329
----
- gfx/layers/opengl/WaylandDMABUFTextureClientOGL.cpp | 3 +++
- 1 file changed, 3 insertions(+)
-
-diff --git gfx/layers/opengl/WaylandDMABUFTextureClientOGL.cpp gfx/layers/opengl/WaylandDMABUFTextureClientOGL.cpp
-index bb556d9fcfaf5..da9c9cb6f4d19 100644
---- gfx/layers/opengl/WaylandDMABUFTextureClientOGL.cpp
-+++ gfx/layers/opengl/WaylandDMABUFTextureClientOGL.cpp
-@@ -86,6 +86,9 @@ already_AddRefed<DrawTarget> WaylandDMABUFTextureData::BorrowDrawTarget() {
- return nullptr;
- }
- auto surf = mSurface->GetAsWaylandDMABufSurfaceRGBA();
-+ if (!surf->GetMappedRegion()) {
-+ return nullptr;
-+ }
- return Factory::CreateDrawTargetForData(
- mBackend, (unsigned char*)surf->GetMappedRegion(),
- IntSize(surf->GetWidth(), surf->GetHeight()),