| Index: cc/output/context_provider.cc
|
| diff --git a/cc/output/context_provider.cc b/cc/output/context_provider.cc
|
| index fb6d8e6ac79c5178ca179d9fddd758a2a3f5b41d..8fb604334bf529aa588dbc204e5a3e81008d06b3 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()
|
| @@ -21,6 +23,7 @@ ContextProvider::Capabilities::Capabilities()
|
| texture_format_bgra8888(false),
|
| texture_rectangle(false),
|
| texture_storage(false),
|
| - texture_usage(false) {}
|
| + texture_usage(false),
|
| + max_transfer_buffer_usage_bytes(std::numeric_limits<size_t>::max()) {}
|
|
|
| } // namespace cc
|
|
|