diff options
Diffstat (limited to 'gpu/command_buffer/common/cmd_buffer_common.cc')
-rw-r--r-- | gpu/command_buffer/common/cmd_buffer_common.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gpu/command_buffer/common/cmd_buffer_common.cc b/gpu/command_buffer/common/cmd_buffer_common.cc index 936d67c..bf965cc 100644 --- a/gpu/command_buffer/common/cmd_buffer_common.cc +++ b/gpu/command_buffer/common/cmd_buffer_common.cc @@ -8,8 +8,10 @@ #include "gpu/command_buffer/common/cmd_buffer_common.h" namespace gpu { -const int32 CommandHeader::kMaxSize = (1 << 21) - 1; - +#if !defined(OS_WIN) +// gcc needs this to link, but MSVC requires it not be present +const int32 CommandHeader::kMaxSize; +#endif namespace cmd { const char* GetCommandName(CommandId command_id) { |