Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(327)

Unified Diff: gpu/config/gpu_driver_bug_list_json.cc

Issue 2409523002: [Command buffer] Fix the bug when blitting pixels outside read framebuffer (Closed)
Patch Set: Addressed Corentin's feedback Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: gpu/config/gpu_driver_bug_list_json.cc
diff --git a/gpu/config/gpu_driver_bug_list_json.cc b/gpu/config/gpu_driver_bug_list_json.cc
index 0b50ec2b729ecb1882044e5197b4171eac63ac48..ad403afec1ec02ad35547b6c090314b1bc0bd5c8 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": "9.10",
+ "version": "9.11",
"entries": [
{
"id": 1,
@@ -2122,6 +2122,41 @@ LONG_STRING_CONST(
"features": [
"unpack_image_height_workaround_with_unpack_buffer"
]
+ },
+ {
+ "id": 197,
+ "description": "adjust src/dst region if blitting pixels outside read framebuffer on Mac",
+ "cr_bugs": [644740],
+ "os": {
+ "type": "macosx"
+ },
+ "features": [
+ "adjust_src_dst_region_for_blitframebuffer"
+ ]
+ },
+ {
+ "id": 198,
+ "description": "adjust src/dst region if blitting pixels outside read framebuffer on Linux Intel",
+ "cr_bugs": [664740],
+ "os": {
+ "type": "linux"
+ },
+ "vendor_id": "0x8086",
+ "features": [
+ "adjust_src_dst_region_for_blitframebuffer"
+ ]
+ },
+ {
+ "id": 199,
+ "description": "adjust src/dst region if blitting pixels outside read framebuffer on Linux AMD",
+ "cr_bugs": [664740],
+ "os": {
+ "type": "linux"
+ },
+ "vendor_id": "0x1002",
+ "features": [
+ "adjust_src_dst_region_for_blitframebuffer"
+ ]
}
]
// Please update the version number at beginning of this file whenever you
« no previous file with comments | « gpu/command_buffer/service/gles2_cmd_decoder_unittest_framebuffers.cc ('k') | gpu/config/gpu_driver_bug_workaround_type.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698