OLD | NEW |
(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_ |
OLD | NEW |