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 GPU_COMMAND_BUFFER_SERVICE_DEBUG_MARKER_MANAGER_H_ | 5 #ifndef GPU_COMMAND_BUFFER_SERVICE_DEBUG_MARKER_MANAGER_H_ |
6 #define GPU_COMMAND_BUFFER_SERVICE_DEBUG_MARKER_MANAGER_H_ | 6 #define GPU_COMMAND_BUFFER_SERVICE_DEBUG_MARKER_MANAGER_H_ |
7 | 7 |
8 #include <stack> | 8 #include <stack> |
9 #include <string> | 9 #include <string> |
10 #include "../../gpu_export.h" | 10 #include "gpu/gpu_export.h" |
11 | 11 |
12 namespace gpu { | 12 namespace gpu { |
13 namespace gles2 { | 13 namespace gles2 { |
14 | 14 |
15 // Tracks debug marker. | 15 // Tracks debug marker. |
16 class GPU_EXPORT DebugMarkerManager { | 16 class GPU_EXPORT DebugMarkerManager { |
17 public: | 17 public: |
18 DebugMarkerManager(); | 18 DebugMarkerManager(); |
19 ~DebugMarkerManager(); | 19 ~DebugMarkerManager(); |
20 | 20 |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 | 53 |
54 GroupStack group_stack_; | 54 GroupStack group_stack_; |
55 std::string empty_; | 55 std::string empty_; |
56 }; | 56 }; |
57 | 57 |
58 } // namespace gles2 | 58 } // namespace gles2 |
59 } // namespace gpu | 59 } // namespace gpu |
60 | 60 |
61 #endif // GPU_COMMAND_BUFFER_SERVICE_DEBUG_MARKER_MANAGER_H_ | 61 #endif // GPU_COMMAND_BUFFER_SERVICE_DEBUG_MARKER_MANAGER_H_ |
62 | 62 |
OLD | NEW |