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

Side by Side Diff: gpu/command_buffer/common/gles2_cmd_format.h

Issue 20017005: gpu: Refactor GpuMemoryBuffer framework for multi-process support. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 4 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 | « gpu/command_buffer/client/image_factory.h ('k') | gpu/command_buffer/common/gpu_control.h » ('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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // This file defines the GLES2 command buffer commands. 5 // This file defines the GLES2 command buffer commands.
6 6
7 #ifndef GPU_COMMAND_BUFFER_COMMON_GLES2_CMD_FORMAT_H_ 7 #ifndef GPU_COMMAND_BUFFER_COMMON_GLES2_CMD_FORMAT_H_
8 #define GPU_COMMAND_BUFFER_COMMON_GLES2_CMD_FORMAT_H_ 8 #define GPU_COMMAND_BUFFER_COMMON_GLES2_CMD_FORMAT_H_
9 9
10 10
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 49
50 // These are used when contexts share resources. 50 // These are used when contexts share resources.
51 enum IdNamespaces { 51 enum IdNamespaces {
52 kBuffers, 52 kBuffers,
53 kFramebuffers, 53 kFramebuffers,
54 kProgramsAndShaders, 54 kProgramsAndShaders,
55 kRenderbuffers, 55 kRenderbuffers,
56 kTextures, 56 kTextures,
57 kQueries, 57 kQueries,
58 kVertexArrays, 58 kVertexArrays,
59 kImages,
60 kNumIdNamespaces 59 kNumIdNamespaces
61 }; 60 };
62 61
63 // These numbers must not change 62 // These numbers must not change
64 COMPILE_ASSERT(kBuffers == 0, kBuffers_is_not_0); 63 COMPILE_ASSERT(kBuffers == 0, kBuffers_is_not_0);
65 COMPILE_ASSERT(kFramebuffers == 1, kFramebuffers_is_not_1); 64 COMPILE_ASSERT(kFramebuffers == 1, kFramebuffers_is_not_1);
66 COMPILE_ASSERT(kProgramsAndShaders == 2, kProgramsAndShaders_is_not_2); 65 COMPILE_ASSERT(kProgramsAndShaders == 2, kProgramsAndShaders_is_not_2);
67 COMPILE_ASSERT(kRenderbuffers == 3, kRenderbuffers_is_not_3); 66 COMPILE_ASSERT(kRenderbuffers == 3, kRenderbuffers_is_not_3);
68 COMPILE_ASSERT(kTextures == 4, kTextures_is_not_4); 67 COMPILE_ASSERT(kTextures == 4, kTextures_is_not_4);
69 68
(...skipping 478 matching lines...) Expand 10 before | Expand all | Expand 10 after
548 CommandHeader header; 547 CommandHeader header;
549 }; 548 };
550 549
551 #pragma pack(pop) 550 #pragma pack(pop)
552 551
553 } // namespace cmd 552 } // namespace cmd
554 } // namespace gles2 553 } // namespace gles2
555 } // namespace gpu 554 } // namespace gpu
556 555
557 #endif // GPU_COMMAND_BUFFER_COMMON_GLES2_CMD_FORMAT_H_ 556 #endif // GPU_COMMAND_BUFFER_COMMON_GLES2_CMD_FORMAT_H_
OLDNEW
« no previous file with comments | « gpu/command_buffer/client/image_factory.h ('k') | gpu/command_buffer/common/gpu_control.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698