aboutsummarylogtreecommitdiffstats
path: root/0001-Fix-brcm-egl-build-by-correcting-commit-usage.patch
diff options
context:
space:
mode:
authorDonald Carr2017-01-13 07:20:32 -0800
committerDonald Carr2017-01-13 07:20:32 -0800
commit9e068e40207aae2b54e28858513e4814c96ce452 (patch)
treed6af8beee5c1a1be1027d9a19b3849774ddbcf5b /0001-Fix-brcm-egl-build-by-correcting-commit-usage.patch
parent7d9ae269d7f6da3e484b802bd864653f217b2772 (diff)
downloadaur-9e068e40207aae2b54e28858513e4814c96ce452.tar.gz
Remove stale patches
Change-Id: Id2f224b01b233fe90931ccec169f9e33c6351dfc
Diffstat (limited to '0001-Fix-brcm-egl-build-by-correcting-commit-usage.patch')
-rw-r--r--0001-Fix-brcm-egl-build-by-correcting-commit-usage.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/0001-Fix-brcm-egl-build-by-correcting-commit-usage.patch b/0001-Fix-brcm-egl-build-by-correcting-commit-usage.patch
deleted file mode 100644
index 9cdfe7c8434d..000000000000
--- a/0001-Fix-brcm-egl-build-by-correcting-commit-usage.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From 458ce42f8177cc51f882fc408d8252d30ece660c Mon Sep 17 00:00:00 2001
-From: Donald Carr <sirspudd@gmail.com>
-Date: Thu, 17 Nov 2016 15:04:43 -0800
-Subject: [PATCH] Fix brcm-egl build by correcting commit() usage
-
-Adjusted existing call to commit() in keeping with parallel changes in 5b807802
-
-Change-Id: I31c17336efa9a79a5f6c1719702215db7239a97d
----
- src/hardwareintegration/client/brcm-egl/qwaylandbrcmeglwindow.cpp | 4 +---
- 1 file changed, 1 insertion(+), 3 deletions(-)
-
-diff --git a/src/hardwareintegration/client/brcm-egl/qwaylandbrcmeglwindow.cpp b/src/hardwareintegration/client/brcm-egl/qwaylandbrcmeglwindow.cpp
-index 4d56d66..9842f61 100644
---- a/src/hardwareintegration/client/brcm-egl/qwaylandbrcmeglwindow.cpp
-+++ b/src/hardwareintegration/client/brcm-egl/qwaylandbrcmeglwindow.cpp
-@@ -252,9 +252,7 @@ void QWaylandBrcmEglWindow::swapBuffers()
- return;
-
- m_buffers[m_current]->bind();
-- attach(m_buffers[m_current], 0, 0);
-- damage(QRect(QPoint(), geometry().size()));
-- commit();
-+ commit(m_buffers[m_current], QRegion(0, 0, geometry().size().width(), geometry().size().height()));
-
- m_current = (m_current + 1) % m_count;
- m_buffers[m_current]->waitForRelease();
---
-2.10.2
-