Index: cc/output/context_provider.cc |
diff --git a/cc/output/context_provider.cc b/cc/output/context_provider.cc |
index 9c9ea88b124dd5914d52161674bfbb2c931c0efe..7f46f7ccc67e6f96007c5f21767e9c885b0589a3 100644 |
--- a/cc/output/context_provider.cc |
+++ b/cc/output/context_provider.cc |
@@ -4,6 +4,8 @@ |
#include "cc/output/context_provider.h" |
+#include <limits> |
+ |
namespace cc { |
ContextProvider::Capabilities::Capabilities() |
@@ -22,6 +24,7 @@ ContextProvider::Capabilities::Capabilities() |
texture_rectangle(false), |
texture_storage(false), |
texture_usage(false), |
- discard_framebuffer(false) {} |
+ discard_framebuffer(false), |
+ max_transfer_buffer_usage_bytes(std::numeric_limits<size_t>::max()) {} |
} // namespace cc |