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 // A class to emulate GLES2 over command buffers. | 5 // A class to emulate GLES2 over command buffers. |
6 | 6 |
7 #include "../client/gles2_implementation.h" | 7 #include "../client/gles2_implementation.h" |
8 | 8 |
9 #include <algorithm> | 9 #include <algorithm> |
10 #include <map> | 10 #include <map> |
(...skipping 3413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3424 length ? std::string(marker, length) : std::string(marker)); | 3424 length ? std::string(marker, length) : std::string(marker)); |
3425 } | 3425 } |
3426 | 3426 |
3427 void GLES2Implementation::PopGroupMarkerEXT() { | 3427 void GLES2Implementation::PopGroupMarkerEXT() { |
3428 GPU_CLIENT_SINGLE_THREAD_CHECK(); | 3428 GPU_CLIENT_SINGLE_THREAD_CHECK(); |
3429 GPU_CLIENT_LOG("[" << GetLogPrefix() << "] glPopGroupMarkerEXT()"); | 3429 GPU_CLIENT_LOG("[" << GetLogPrefix() << "] glPopGroupMarkerEXT()"); |
3430 helper_->PopGroupMarkerEXT(); | 3430 helper_->PopGroupMarkerEXT(); |
3431 debug_marker_manager_.PopGroup(); | 3431 debug_marker_manager_.PopGroup(); |
3432 } | 3432 } |
3433 | 3433 |
| 3434 // Include the auto-generated part of this file. We split this because it means |
| 3435 // we can easily edit the non-auto generated parts right here in this file |
| 3436 // instead of having to edit some template or the code generator. |
| 3437 #include "../client/gles2_implementation_impl_autogen.h" |
| 3438 |
3434 } // namespace gles2 | 3439 } // namespace gles2 |
3435 } // namespace gpu | 3440 } // namespace gpu |
OLD | NEW |