summaryrefslogtreecommitdiffstats
path: root/recipes-qt/qt5/qtwebengine
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-qt/qt5/qtwebengine')
-rw-r--r--recipes-qt/qt5/qtwebengine/0001-Fix-slow-video-with-webengine-on-nitrogen6x.patch47
1 files changed, 0 insertions, 47 deletions
diff --git a/recipes-qt/qt5/qtwebengine/0001-Fix-slow-video-with-webengine-on-nitrogen6x.patch b/recipes-qt/qt5/qtwebengine/0001-Fix-slow-video-with-webengine-on-nitrogen6x.patch
deleted file mode 100644
index 2af19e8..0000000
--- a/recipes-qt/qt5/qtwebengine/0001-Fix-slow-video-with-webengine-on-nitrogen6x.patch
+++ /dev/null
@@ -1,47 +0,0 @@
1From 4903971e1e4b58f03b0f636a1ab494bfbc5d76d4 Mon Sep 17 00:00:00 2001
2From: Michal Klocek <michal.klocek@theqtcompany.com>
3Date: Mon, 7 Dec 2015 15:48:32 +0200
4Subject: [PATCH] Fix slow video with webengine on nitrogen6x
5
6Disable texture_rg on nitrogen6x. Yocto
7image 1.8 has driver which reports opengl es 3.0
8support, however texture_rg does not
9work properly.
10---
11 src/3rdparty/chromium/gpu/command_buffer/service/feature_info.cc | 18 ------------------
12 1 file changed, 18 deletions(-)
13
14diff --git a/src/3rdparty/chromium/gpu/command_buffer/service/feature_info.cc b/src/3rdparty/chromium/gpu/command_buffer/service/feature_info.cc
15index 58aa147..4ab682a 100644
16--- a/src/3rdparty/chromium/gpu/command_buffer/service/feature_info.cc
17+++ b/src/3rdparty/chromium/gpu/command_buffer/service/feature_info.cc
18@@ -1258,26 +1258,6 @@ void FeatureInfo::InitializeFeatures() {
19 }
20 }
21
22- if ((gl_version_info_->is_es3 || gl_version_info_->is_desktop_core_profile ||
23- extensions.Contains("GL_EXT_texture_rg") ||
24- extensions.Contains("GL_ARB_texture_rg")) &&
25- IsGL_REDSupportedOnFBOs()) {
26- feature_flags_.ext_texture_rg = true;
27- AddExtensionString("GL_EXT_texture_rg");
28-
29- validators_.texture_format.AddValue(GL_RED_EXT);
30- validators_.texture_format.AddValue(GL_RG_EXT);
31- validators_.texture_internal_format.AddValue(GL_RED_EXT);
32- validators_.texture_internal_format.AddValue(GL_R8_EXT);
33- validators_.texture_internal_format.AddValue(GL_RG_EXT);
34- validators_.texture_internal_format.AddValue(GL_RG8_EXT);
35- validators_.read_pixel_format.AddValue(GL_RED_EXT);
36- validators_.read_pixel_format.AddValue(GL_RG_EXT);
37- validators_.render_buffer_format.AddValue(GL_R8_EXT);
38- validators_.render_buffer_format.AddValue(GL_RG8_EXT);
39- validators_.texture_unsized_internal_format.AddValue(GL_RED_EXT);
40- validators_.texture_unsized_internal_format.AddValue(GL_RG_EXT);
41- }
42 UMA_HISTOGRAM_BOOLEAN("GPU.TextureRG", feature_flags_.ext_texture_rg);
43
44 bool has_opengl_dual_source_blending =
45--
461.9.1
47