Chromium Code Reviews| Index: gpu/command_buffer/service/gles2_cmd_decoder.h |
| diff --git a/gpu/command_buffer/service/gles2_cmd_decoder.h b/gpu/command_buffer/service/gles2_cmd_decoder.h |
| index 3fc862379787ac05c2861106cf56fc256e252e6f..f716fb3516abbb36517da62c4d11533987d82f17 100644 |
| --- a/gpu/command_buffer/service/gles2_cmd_decoder.h |
| +++ b/gpu/command_buffer/service/gles2_cmd_decoder.h |
| @@ -45,10 +45,12 @@ struct ContextState; |
| struct DisallowedFeatures { |
| DisallowedFeatures() |
| - : gpu_memory_manager(false) { |
| + : gpu_memory_manager(false), |
| + npot_support(false) { |
|
piman
2015/06/08 21:40:21
So, if we add this to the FeatureInfo, that could
Zhenyao Mo
2015/06/08 22:23:22
I remember we decided each WebGL is in it's own co
|
| } |
| bool gpu_memory_manager; |
| + bool npot_support; |
| }; |
| typedef base::Callback<void(const std::string& key, |