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

Unified Diff: gpu/command_buffer/service/in_process_command_buffer.cc

Issue 2267163003: Re-enable program memory cache for Adreno 4/5xx (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 4 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
« no previous file with comments | « no previous file | gpu/config/gpu_driver_bug_list_json.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/command_buffer/service/in_process_command_buffer.cc
diff --git a/gpu/command_buffer/service/in_process_command_buffer.cc b/gpu/command_buffer/service/in_process_command_buffer.cc
index 9a8b5062957638986926118030b300f1cd04f8ef..a237f87505c852f898ab214dcb4b61d3dda1b080 100644
--- a/gpu/command_buffer/service/in_process_command_buffer.cc
+++ b/gpu/command_buffer/service/in_process_command_buffer.cc
@@ -184,9 +184,11 @@ 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) {
- program_cache_.reset(new gpu::gles2::MemoryProgramCache(
- gpu_preferences().gpu_program_cache_size,
- gpu_preferences().disable_gpu_shader_disk_cache));
+ bool disable_disk_cache =
+ gpu_preferences_.disable_gpu_shader_disk_cache ||
+ gpu_driver_bug_workarounds_.disable_program_disk_cache;
+ program_cache_.reset(new gles2::MemoryProgramCache(
+ gpu_preferences_.gpu_program_cache_size, disable_disk_cache));
}
return program_cache_.get();
}
« no previous file with comments | « no previous file | gpu/config/gpu_driver_bug_list_json.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698