diff options
author | sievers@chromium.org <sievers@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-12 19:39:13 +0000 |
---|---|---|
committer | sievers@chromium.org <sievers@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-12 19:39:13 +0000 |
commit | b688b283185dfaba7209b0306b2a2f200154563c (patch) | |
tree | 16cc2bb5f186059f81ec3d16bd55cb975c9b3161 /gpu | |
parent | f5ae6104249c0ffabe61722fc1c9df38810e3cce (diff) | |
download | chromium_src-b688b283185dfaba7209b0306b2a2f200154563c.zip chromium_src-b688b283185dfaba7209b0306b2a2f200154563c.tar.gz chromium_src-b688b283185dfaba7209b0306b2a2f200154563c.tar.bz2 |
Remove delete_instead_of_resize_fbo workaround
It was only looked at in TextureImageTransportSurface which is not
used on Android anymore (well it's instantiated but not resized).
NOTRY=True
Review URL: https://chromiumcodereview.appspot.com/23684054
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@222837 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gpu')
-rw-r--r-- | gpu/config/gpu_driver_bug_list_json.cc | 5 | ||||
-rw-r--r-- | gpu/config/gpu_driver_bug_workaround_type.h | 2 |
2 files changed, 2 insertions, 5 deletions
diff --git a/gpu/config/gpu_driver_bug_list_json.cc b/gpu/config/gpu_driver_bug_list_json.cc index 2b7221a..be2dc51 100644 --- a/gpu/config/gpu_driver_bug_list_json.cc +++ b/gpu/config/gpu_driver_bug_list_json.cc @@ -85,7 +85,7 @@ const char kGpuDriverBugListJson[] = LONG_STRING_CONST( { "name": "gpu driver bug list", // Please update the version number whenever you change this file. - "version": "2.11", + "version": "2.12", "entries": [ { "id": 1, @@ -145,8 +145,7 @@ const char kGpuDriverBugListJson[] = LONG_STRING_CONST( "value": "Qualcomm" }, "features": [ - "restore_scissor_on_fbo_change", - "delete_instead_of_resize_fbo" // Only need this on the ICS driver. + "restore_scissor_on_fbo_change" ] }, { diff --git a/gpu/config/gpu_driver_bug_workaround_type.h b/gpu/config/gpu_driver_bug_workaround_type.h index e9ff5c4..79e8941 100644 --- a/gpu/config/gpu_driver_bug_workaround_type.h +++ b/gpu/config/gpu_driver_bug_workaround_type.h @@ -14,8 +14,6 @@ clear_alpha_in_readpixels) \ GPU_OP(CLEAR_UNIFORMS_BEFORE_PROGRAM_USE, \ clear_uniforms_before_program_use) \ - GPU_OP(DELETE_INSTEAD_OF_RESIZE_FBO, \ - delete_instead_of_resize_fbo) \ GPU_OP(DISABLE_ANGLE_FRAMEBUFFER_MULTISAMPLE, \ disable_angle_framebuffer_multisample) \ GPU_OP(DISABLE_ANGLE_INSTANCED_ARRAYS, \ |