| Index: gpu/ipc/in_process_command_buffer.cc
|
| diff --git a/gpu/ipc/in_process_command_buffer.cc b/gpu/ipc/in_process_command_buffer.cc
|
| index bc3c0eda69d6c2b130980b95bee03c4cc0168cda..af62ab3fb2e36263655de56674717f794a5cdb17 100644
|
| --- a/gpu/ipc/in_process_command_buffer.cc
|
| +++ b/gpu/ipc/in_process_command_buffer.cc
|
| @@ -169,11 +169,14 @@ gpu::gles2::ProgramCache* InProcessCommandBuffer::Service::program_cache() {
|
| (gl::g_driver_gl.ext.b_GL_ARB_get_program_binary ||
|
| gl::g_driver_gl.ext.b_GL_OES_get_program_binary) &&
|
| !gpu_preferences().disable_gpu_program_cache) {
|
| + const GpuDriverBugWorkarounds& workarounds = gpu_driver_bug_workarounds_;
|
| bool disable_disk_cache =
|
| gpu_preferences_.disable_gpu_shader_disk_cache ||
|
| - gpu_driver_bug_workarounds_.disable_program_disk_cache;
|
| + workarounds.disable_program_disk_cache;
|
| program_cache_.reset(new gles2::MemoryProgramCache(
|
| - gpu_preferences_.gpu_program_cache_size, disable_disk_cache));
|
| + gpu_preferences_.gpu_program_cache_size,
|
| + disable_disk_cache,
|
| + workarounds.disable_program_caching_for_transform_feedback));
|
| }
|
| return program_cache_.get();
|
| }
|
|
|