Index: gpu/command_buffer/service/feature_info.cc |
diff --git a/gpu/command_buffer/service/feature_info.cc b/gpu/command_buffer/service/feature_info.cc |
index d692b546ed4885cc1f536207cd212eb0a3a4b518..50114850694ae234c2842b882b37bf18786826fb 100644 |
--- a/gpu/command_buffer/service/feature_info.cc |
+++ b/gpu/command_buffer/service/feature_info.cc |
@@ -114,6 +114,9 @@ void StringToWorkarounds( |
workarounds->max_varying_vectors = 16; |
if (workarounds->max_vertex_uniform_vectors_256) |
workarounds->max_vertex_uniform_vectors = 256; |
+ |
+ if (workarounds->max_copy_texture_chromium_size_262144) |
+ workarounds->max_copy_texture_chromium_size = 262144; |
} |
} // anonymous namespace. |
@@ -175,7 +178,8 @@ FeatureInfo::Workarounds::Workarounds() : |
max_cube_map_texture_size(0), |
max_fragment_uniform_vectors(0), |
max_varying_vectors(0), |
- max_vertex_uniform_vectors(0) { |
+ max_vertex_uniform_vectors(0), |
+ max_copy_texture_chromium_size(0) { |
} |
FeatureInfo::FeatureInfo() { |