OLD | NEW |
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 #ifndef CONTENT_COMMON_GPU_CLIENT_WEBGRAPHICSCONTEXT3D_COMMAND_BUFFER_IMPL_H_ | 5 #ifndef CONTENT_COMMON_GPU_CLIENT_WEBGRAPHICSCONTEXT3D_COMMAND_BUFFER_IMPL_H_ |
6 #define CONTENT_COMMON_GPU_CLIENT_WEBGRAPHICSCONTEXT3D_COMMAND_BUFFER_IMPL_H_ | 6 #define CONTENT_COMMON_GPU_CLIENT_WEBGRAPHICSCONTEXT3D_COMMAND_BUFFER_IMPL_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 687 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
698 bool initialized_; | 698 bool initialized_; |
699 WebGraphicsContext3DCommandBufferImpl* parent_; | 699 WebGraphicsContext3DCommandBufferImpl* parent_; |
700 uint32 parent_texture_id_; | 700 uint32 parent_texture_id_; |
701 CommandBufferProxy* command_buffer_; | 701 CommandBufferProxy* command_buffer_; |
702 gpu::gles2::GLES2CmdHelper* gles2_helper_; | 702 gpu::gles2::GLES2CmdHelper* gles2_helper_; |
703 gpu::TransferBuffer* transfer_buffer_; | 703 gpu::TransferBuffer* transfer_buffer_; |
704 gpu::gles2::GLES2Implementation* gl_; | 704 gpu::gles2::GLES2Implementation* gl_; |
705 Error last_error_; | 705 Error last_error_; |
706 int frame_number_; | 706 int frame_number_; |
707 bool bind_generates_resources_; | 707 bool bind_generates_resources_; |
| 708 bool use_echo_for_swap_ack_; |
708 }; | 709 }; |
709 | 710 |
710 #endif // CONTENT_COMMON_GPU_CLIENT_WEBGRAPHICSCONTEXT3D_COMMAND_BUFFER_IMPL_H_ | 711 #endif // CONTENT_COMMON_GPU_CLIENT_WEBGRAPHICSCONTEXT3D_COMMAND_BUFFER_IMPL_H_ |
OLD | NEW |