Commit 5dc42098 authored by johnme@chromium.org's avatar johnme@chromium.org

Check for "Mali-Txxx" instead of "Mali-T6xx"

A contact at ARM mentioned that their recent Mali-T7xx line of GPUs
doesn't guarantee flush ordering either (and there seems little reason
to assume future models will break this trend).

So instead of enabling use_virtualized_gl_contexts for GPUs starting
with "Mali-T6", we should check for e.g. "Mali-T[6-9]", or more simply
just "Mali-T" since older Mali GPUs didn't have a "T".

BUG=154715
TEST=manual

Review URL: https://codereview.chromium.org/128163002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@243620 0039d316-1c4b-4281-b951-d872f2087c98
parent 14a95752
...@@ -19,7 +19,7 @@ const char kGpuDriverBugListJson[] = LONG_STRING_CONST( ...@@ -19,7 +19,7 @@ const char kGpuDriverBugListJson[] = LONG_STRING_CONST(
{ {
"name": "gpu driver bug list", "name": "gpu driver bug list",
// Please update the version number whenever you change this file. // Please update the version number whenever you change this file.
"version": "3.7", "version": "3.8",
"entries": [ "entries": [
{ {
"id": 1, "id": 1,
...@@ -386,14 +386,14 @@ const char kGpuDriverBugListJson[] = LONG_STRING_CONST( ...@@ -386,14 +386,14 @@ const char kGpuDriverBugListJson[] = LONG_STRING_CONST(
{ {
"id": 31, "id": 31,
"cr_bugs": [154715, 10068, 269829, 294779, 285292], "cr_bugs": [154715, 10068, 269829, 294779, 285292],
"description": "The Mali T-6xx driver does not guarantee flush ordering.", "description": "The Mali-Txxx driver does not guarantee flush ordering.",
"gl_vendor": { "gl_vendor": {
"op": "beginwith", "op": "beginwith",
"value": "ARM" "value": "ARM"
}, },
"gl_renderer": { "gl_renderer": {
"op": "beginwith", "op": "beginwith",
"value": "Mali-T6" "value": "Mali-T"
}, },
"features": [ "features": [
"use_virtualized_gl_contexts" "use_virtualized_gl_contexts"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment