diff options
-rw-r--r-- | gpu/command_buffer/service/feature_info.cc | 5 | ||||
-rw-r--r-- | gpu/config/gpu_driver_bug_list_json.cc | 15 | ||||
-rw-r--r-- | gpu/config/gpu_driver_bug_workaround_type.h | 2 |
3 files changed, 19 insertions, 3 deletions
diff --git a/gpu/command_buffer/service/feature_info.cc b/gpu/command_buffer/service/feature_info.cc index fa8abdd2..50f494d 100644 --- a/gpu/command_buffer/service/feature_info.cc +++ b/gpu/command_buffer/service/feature_info.cc @@ -548,8 +548,9 @@ void FeatureInfo::AddFeatures(const CommandLine& command_line) { validators_.render_buffer_format.AddValue(GL_DEPTH_COMPONENT24); } - if (extensions.Contains("GL_OES_standard_derivatives") || - gfx::HasDesktopGLFeatures()) { + if (!workarounds_.disable_oes_standard_derivatives && + (extensions.Contains("GL_OES_standard_derivatives") || + gfx::HasDesktopGLFeatures())) { AddExtensionString("GL_OES_standard_derivatives"); feature_flags_.oes_standard_derivatives = true; validators_.hint_target.AddValue(GL_FRAGMENT_SHADER_DERIVATIVE_HINT_OES); diff --git a/gpu/config/gpu_driver_bug_list_json.cc b/gpu/config/gpu_driver_bug_list_json.cc index e324231..dc9e5bf 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.0", + "version": "2.1", "entries": [ { "id": 1, @@ -343,6 +343,19 @@ const char kGpuDriverBugListJson[] = LONG_STRING_CONST( "features": [ "unbind_fbo_on_context_switch" ] + }, + { + "id": 23, + "cr_bugs": [243038], + "description": "Disable OES_standard_derivative on Intel Pineview M Gallium drivers.", + "os": { + "type": "chromeos" + }, + "vendor_id": "0x8086", + "device_id": ["0xa011", "0xa012"], + "features": [ + "disable_oes_standard_derivatives" + ] } ] } diff --git a/gpu/config/gpu_driver_bug_workaround_type.h b/gpu/config/gpu_driver_bug_workaround_type.h index bb21425..1d78c97 100644 --- a/gpu/config/gpu_driver_bug_workaround_type.h +++ b/gpu/config/gpu_driver_bug_workaround_type.h @@ -22,6 +22,8 @@ disable_ext_draw_buffers) \ GPU_OP(DISABLE_EXT_OCCLUSION_QUERY, \ disable_ext_occlusion_query) \ + GPU_OP(DISABLE_OES_STANDARD_DERIVATIVES, \ + disable_oes_standard_derivatives) \ GPU_OP(ENABLE_CHROMIUM_FAST_NPOT_MO8_TEXTURES, \ enable_chromium_fast_npot_mo8_textures) \ GPU_OP(EXIT_ON_CONTEXT_LOST, \ |