Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "../client/share_group.h" | |
| 6 #include "../common/logging.h" | |
| 7 | |
| 8 namespace gpu { | |
| 9 namespace gles2 { | |
| 10 | |
| 11 ShareGroup::ShareGroup() { | |
| 12 GPU_CHECK(ShareGroup::ImplementsThreadSafeReferenceCounting()); | |
| 13 } | |
| 14 | |
| 15 ShareGroup::~ShareGroup() { | |
| 16 } | |
| 17 | |
| 18 } // namespace gles2 | |
| 19 } // namespace gpu | |
| 20 | |
| OLD | NEW |