chromium/ui/gl/gl_share_group.cc

// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "ui/gl/gl_share_group.h"

#include "base/check.h"
#include "build/build_config.h"
#include "ui/gl/gl_context.h"
#include "ui/gl/gl_implementation.h"

namespace gl {

GLShareGroup::GLShareGroup() = default;

void GLShareGroup::AddContext(GLContext* context) {}

void GLShareGroup::RemoveContext(GLContext* context) {}

void* GLShareGroup::GetHandle() {}

GLContext* GLShareGroup::GetContext() {}

void GLShareGroup::SetSharedContext(GLContext* context) {}

GLShareGroup::~GLShareGroup() {}

}  // namespace gl