Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(860)

Side by Side Diff: chrome/gpu/gpu_channel.h

Issue 6623063: Connect up --disable-gl-multisampling to command buffer (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Fix style. Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/gpu_process_host_ui_shim.cc ('k') | chrome/gpu/gpu_channel.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_GPU_GPU_CHANNEL_H_ 5 #ifndef CHROME_GPU_GPU_CHANNEL_H_
6 #define CHROME_GPU_GPU_CHANNEL_H_ 6 #define CHROME_GPU_GPU_CHANNEL_H_
7 #pragma once 7 #pragma once
8 8
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 #if defined(ENABLE_GPU) 113 #if defined(ENABLE_GPU)
114 typedef IDMap<GpuCommandBufferStub, IDMapOwnPointer> StubMap; 114 typedef IDMap<GpuCommandBufferStub, IDMapOwnPointer> StubMap;
115 StubMap stubs_; 115 StubMap stubs_;
116 116
117 #if defined(OS_MACOSX) 117 #if defined(OS_MACOSX)
118 std::set<int32> destroyed_renderer_routes_; 118 std::set<int32> destroyed_renderer_routes_;
119 #endif // defined (OS_MACOSX) 119 #endif // defined (OS_MACOSX)
120 #endif // defined (ENABLE_GPU) 120 #endif // defined (ENABLE_GPU)
121 121
122 bool log_messages_; // True if we should log sent and received messages. 122 bool log_messages_; // True if we should log sent and received messages.
123 gpu::gles2::DisallowedExtensions disallowed_extensions_;
123 124
124 DISALLOW_COPY_AND_ASSIGN(GpuChannel); 125 DISALLOW_COPY_AND_ASSIGN(GpuChannel);
125 }; 126 };
126 127
127 #endif // CHROME_GPU_GPU_CHANNEL_H_ 128 #endif // CHROME_GPU_GPU_CHANNEL_H_
OLDNEW
« no previous file with comments | « chrome/browser/gpu_process_host_ui_shim.cc ('k') | chrome/gpu/gpu_channel.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698