blob: e02b5a7654195eb0ecaa92e3d8c2a34e1f56bf35 [file] [log] [blame]
Jamie Madill53ea9cc2016-05-17 10:12:52 -04001//
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
12namespace rx
13{
14
15ContextImpl::ContextImpl(const gl::ContextState &state) : mState(state)
16{
17}
18
19ContextImpl::~ContextImpl()
20{
21}
22
23} // namespace rx