summaryrefslogtreecommitdiffstats
path: root/gpu
diff options
context:
space:
mode:
authorpiman@chromium.org <piman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-10-31 04:50:51 +0000
committerpiman@chromium.org <piman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-10-31 04:50:51 +0000
commitbac1b5e651cb6930e163b5c6e8821642d3220da9 (patch)
treeae141c076131efd5303746151a9f40a39dd2adf6 /gpu
parente375bcb87fe56bfcdfd462393883ac58d8c59776 (diff)
downloadchromium_src-bac1b5e651cb6930e163b5c6e8821642d3220da9.zip
chromium_src-bac1b5e651cb6930e163b5c6e8821642d3220da9.tar.gz
chromium_src-bac1b5e651cb6930e163b5c6e8821642d3220da9.tar.bz2
Force virtual contexts on Chrome OS ARM
The Mali driver (which is currently the only ARM Chrome OS driver) doesn't support strict ordering between contexts, so we need virtual contexts. Currently we can't gather the GL_VENDOR/GL_RENDERER on Chrome OS for use in the workarounds list, so we enable it on all Chrome OS ARM. BUG=285292,chrome-os-partner:22688 R=ajwong@chromium.org, zmo@chromium.org Review URL: https://codereview.chromium.org/46663009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@232009 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gpu')
-rw-r--r--gpu/config/gpu_driver_bug_list_json.cc17
1 files changed, 16 insertions, 1 deletions
diff --git a/gpu/config/gpu_driver_bug_list_json.cc b/gpu/config/gpu_driver_bug_list_json.cc
index 6417fa4..dd38d57 100644
--- a/gpu/config/gpu_driver_bug_list_json.cc
+++ b/gpu/config/gpu_driver_bug_list_json.cc
@@ -19,7 +19,7 @@ const char kGpuDriverBugListJson[] = LONG_STRING_CONST(
{
"name": "gpu driver bug list",
// Please update the version number whenever you change this file.
- "version": "2.25",
+ "version": "2.26",
"entries": [
{
"id": 1,
@@ -619,6 +619,21 @@ const char kGpuDriverBugListJson[] = LONG_STRING_CONST(
"features": [
"disable_d3d11"
]
+ },
+ {
+ "id": 47,
+ "description": "The Mali T-6xx driver does not guarantee flush ordering.",
+ "cr_bugs": [285292],
+ "os": {
+ "type": "chromeos"
+ },
+ "cpu_info": {
+ "op": "=",
+ "value": "ARM" // TODO(piman): change to GL_VENDOR/GL_RENDERER switch
+ },
+ "features": [
+ "use_virtualized_gl_contexts"
+ ]
}
]
}