summaryrefslogtreecommitdiffstats
path: root/patches
diff options
context:
space:
mode:
authorLucas Stach <l.stach@pengutronix.de>2019-04-05 16:07:51 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2019-04-08 08:20:06 +0200
commit3bca35519fc4ebf8fabc6a167724d4aa378bb4e0 (patch)
treefd39b7ea3cf29c6942a31206bf90fa09ec975d03 /patches
parent9a6e35c03ffb77bc2b3b6e937aaffca7910f7b58 (diff)
downloadptxdist-3bca35519fc4ebf8fabc6a167724d4aa378bb4e0.tar.gz
ptxdist-3bca35519fc4ebf8fabc6a167724d4aa378bb4e0.tar.xz
glmark2: version bump to 9b1070fe
- misc fixes to the benchmarks - fixes build on hosts with python 3.7 Signed-off-by: Lucas Stach <l.stach@pengutronix.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'patches')
-rw-r--r--patches/glmark2-2017-06-23-g9b1070fe/0001-NativeStateDRM-fix-running-without-current-mode.patch52
-rw-r--r--patches/glmark2-2017-06-23-g9b1070fe/series4
2 files changed, 0 insertions, 56 deletions
diff --git a/patches/glmark2-2017-06-23-g9b1070fe/0001-NativeStateDRM-fix-running-without-current-mode.patch b/patches/glmark2-2017-06-23-g9b1070fe/0001-NativeStateDRM-fix-running-without-current-mode.patch
deleted file mode 100644
index e92ba8bbf..000000000
--- a/patches/glmark2-2017-06-23-g9b1070fe/0001-NativeStateDRM-fix-running-without-current-mode.patch
+++ /dev/null
@@ -1,52 +0,0 @@
-From: Lucas Stach <l.stach@pengutronix.de>
-Date: Wed, 31 May 2017 15:41:07 +0200
-Subject: [PATCH] NativeStateDRM: fix running without current mode
-
-If there is no current mode set (likely if framebuffer emulation is
-disabled), we need to work out the connector->encoder->crtc chain on
-our own.
-
-Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
----
- src/native-state-drm.cpp | 19 +++++++++++++++----
- 1 file changed, 15 insertions(+), 4 deletions(-)
-
-diff --git a/src/native-state-drm.cpp b/src/native-state-drm.cpp
-index 5f4699fa1ba7..a8421276cc35 100644
---- a/src/native-state-drm.cpp
-+++ b/src/native-state-drm.cpp
-@@ -267,10 +267,16 @@ NativeStateDRM::init()
-
- // Find a suitable encoder
- for (int e = 0; e < resources_->count_encoders; e++) {
-+ int found = 0;
- encoder_ = drmModeGetEncoder(fd_, resources_->encoders[e]);
-- if (encoder_ && encoder_->encoder_id == connector_->encoder_id) {
-- break;
-+ for (int ce = 0; e < connector_->count_encoders; ce++) {
-+ if (encoder_ && encoder_->encoder_id == connector_->encoders[ce]) {
-+ found = 1;
-+ break;
-+ }
- }
-+ if (found)
-+ break;
- drmModeFreeEncoder(encoder_);
- encoder_ = 0;
- }
-@@ -286,8 +292,13 @@ NativeStateDRM::init()
-
- crtc_ = drmModeGetCrtc(fd_, encoder_->crtc_id);
- if (!crtc_) {
-- Log::error("Failed to get current CRTC\n");
-- return false;
-+ /* if there is no current CRTC, make sure to attach a suitable one */
-+ for (int c = 0; c < resources_->count_crtcs; c++) {
-+ if (encoder_->possible_crtcs & (1 << c)) {
-+ encoder_->crtc_id = resources_->crtcs[c];
-+ break;
-+ }
-+ }
- }
-
- signal(SIGINT, &NativeStateDRM::quit_handler);
diff --git a/patches/glmark2-2017-06-23-g9b1070fe/series b/patches/glmark2-2017-06-23-g9b1070fe/series
deleted file mode 100644
index 2b7a2d620..000000000
--- a/patches/glmark2-2017-06-23-g9b1070fe/series
+++ /dev/null
@@ -1,4 +0,0 @@
-# generated by git-ptx-patches
-#tag:base --start-number 1
-0001-NativeStateDRM-fix-running-without-current-mode.patch
-# 6f3b43a54eafd138290a38a8422ca602 - git-ptx-patches magic