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

Side by Side Diff: ppapi/shared_impl/command_buffer_id_pair.h

Issue 1345813002: Added a unique command buffer ID for command buffers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed tests Created 5 years, 3 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
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef PPAPI_SHARED_IMPL_COMMAND_BUFFER_ID_PAIR_H_
6 #define PPAPI_SHARED_IMPL_COMMAND_BUFFER_ID_PAIR_H_
7
8 #include "gpu/command_buffer/common/constants.h"
9
10 namespace ppapi {
11
12 struct CommandBufferIDPair {
13 CommandBufferIDPair();
14 ~CommandBufferIDPair();
15
16 gpu::CommandBufferNamespace namespace_id;
17 uint64_t command_buffer_id;
18 };
19
20 } // namespace ppapi
21
22 #endif // PPAPI_SHARED_IMPL_COMMAND_BUFFER_ID_PAIR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698