blob: cb06ba55ab51500d17a30e7ed11267687b53514e [file] [log] [blame]
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/gl/scoped_make_current.h"
#include "base/logging.h"
#include "components/crash/core/common/crash_key.h"
#include "ui/gl/gl_context.h"
#include "ui/gl/gl_surface.h"
namespace ui {
ScopedMakeCurrent::ScopedMakeCurrent(gl::GLContext* context,
gl::GLSurface* surface)
: previous_context_(gl::GLContext::GetCurrent()),
previous_surface_(gl::GLSurface::GetCurrent()),
context_(context),
surface_(surface) {
DCHECK(context);
DCHECK(surface);
succeeded_ = context->MakeCurrent(surface);
}
ScopedMakeCurrent::~ScopedMakeCurrent() {
if (!restored_)
CHECK(Restore()) << "ScopedMakeCurrent: Restore failed";
}
bool ScopedMakeCurrent::Succeeded() const {
return succeeded_;
}
bool ScopedMakeCurrent::Restore() {
DCHECK(!restored_);
restored_ = true;
if (!succeeded_)
return true;
if (previous_context_)
return previous_context_->MakeCurrent(previous_surface_.get());
context_->ReleaseCurrent(surface_.get());
return true;
}
ScopedReleaseCurrent::ScopedReleaseCurrent()
: previous_context_(gl::GLContext::GetCurrent()),
previous_surface_(gl::GLSurface::GetCurrent()) {
if (previous_context_)
previous_context_->ReleaseCurrent(previous_surface_.get());
}
ScopedReleaseCurrent::~ScopedReleaseCurrent() {
if (!restored_)
CHECK(Restore()) << "ScopedReleaseCurrent: Restore failed";
}
bool ScopedReleaseCurrent::Restore() {
DCHECK(!restored_);
restored_ = true;
if (previous_context_) {
// TODO(sunnyps): Remove after fixing https://crbug.com/724999.
static crash_reporter::CrashKeyString<4> crash_key(
"scoped-release-current-is-current");
crash_key.Set(previous_context_->IsCurrent(previous_surface_.get()) ? "1"
: "0");
return previous_context_->MakeCurrent(previous_surface_.get());
}
return true;
}
} // namespace ui