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

Unified Diff: gpu/config/gpu_driver_bug_workarounds.cc

Issue 2045663002: mac: Remove GPU bug workarounds for OS X versions before 10.9 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: kbr comment Created 4 years, 6 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 | « gpu/config/gpu_driver_bug_workarounds.h ('k') | gpu/config/software_rendering_list_json.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/config/gpu_driver_bug_workarounds.cc
diff --git a/gpu/config/gpu_driver_bug_workarounds.cc b/gpu/config/gpu_driver_bug_workarounds.cc
index f9bf4c38c17c0ceb347e11c0fd910a8f3f5739db..a13dba3120b96e34a57bed6a761318b3c7fe95a5 100644
--- a/gpu/config/gpu_driver_bug_workarounds.cc
+++ b/gpu/config/gpu_driver_bug_workarounds.cc
@@ -33,12 +33,6 @@ void StringToWorkarounds(const std::string& types,
}
if (workarounds->max_texture_size_limit_4096)
workarounds->max_texture_size = 4096;
- if (workarounds->max_cube_map_texture_size_limit_4096)
- workarounds->max_cube_map_texture_size = 4096;
- if (workarounds->max_cube_map_texture_size_limit_1024)
- workarounds->max_cube_map_texture_size = 1024;
- if (workarounds->max_cube_map_texture_size_limit_512)
- workarounds->max_cube_map_texture_size = 512;
if (workarounds->max_fragment_uniform_vectors_32)
workarounds->max_fragment_uniform_vectors = 32;
@@ -63,7 +57,6 @@ GpuDriverBugWorkarounds::GpuDriverBugWorkarounds()
GPU_DRIVER_BUG_WORKAROUNDS(GPU_OP)
#undef GPU_OP
max_texture_size(0),
- max_cube_map_texture_size(0),
max_fragment_uniform_vectors(0),
max_varying_vectors(0),
max_vertex_uniform_vectors(0),
@@ -77,7 +70,6 @@ GpuDriverBugWorkarounds::GpuDriverBugWorkarounds(
GPU_DRIVER_BUG_WORKAROUNDS(GPU_OP)
#undef GPU_OP
max_texture_size(0),
- max_cube_map_texture_size(0),
max_fragment_uniform_vectors(0),
max_varying_vectors(0),
max_vertex_uniform_vectors(0),
« no previous file with comments | « gpu/config/gpu_driver_bug_workarounds.h ('k') | gpu/config/software_rendering_list_json.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698