Jamie Madill | 53ea9cc | 2016-05-17 10:12:52 -0400 | [diff] [blame] | 1 | // |
| 2 | // Copyright 2016 The ANGLE Project Authors. All rights reserved. |
| 3 | // Use of this source code is governed by a BSD-style license that can be |
| 4 | // found in the LICENSE file. |
| 5 | // |
| 6 | // ContextImpl: |
| 7 | // Implementation-specific functionality associated with a GL Context. |
| 8 | // |
| 9 | |
| 10 | #include "libANGLE/renderer/ContextImpl.h" |
| 11 | |
| 12 | namespace rx |
| 13 | { |
| 14 | |
| 15 | ContextImpl::ContextImpl(const gl::ContextState &state) : mState(state) |
| 16 | { |
| 17 | } |
| 18 | |
| 19 | ContextImpl::~ContextImpl() |
| 20 | { |
| 21 | } |
| 22 | |
| 23 | } // namespace rx |