blob: 5c7bc39ec3a68288b4b2f509e57c939028d09fb7 [file] [log] [blame]
// Copyright (c) 2013 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 "webkit/common/gpu/grcontext_for_webgraphicscontext3d.h"
#include "base/debug/trace_event.h"
#include "third_party/WebKit/public/platform/WebGraphicsContext3D.h"
#include "third_party/skia/include/gpu/GrContext.h"
#include "third_party/skia/include/gpu/gl/GrGLInterface.h"
namespace webkit {
namespace gpu {
static void BindWebGraphicsContext3DGLContextCallback(
const GrGLInterface* interface) {
reinterpret_cast<blink::WebGraphicsContext3D*>(
interface->fCallbackData)->makeContextCurrent();
}
GrContextForWebGraphicsContext3D::GrContextForWebGraphicsContext3D(
blink::WebGraphicsContext3D* context3d) {
if (!context3d)
return;
skia::RefPtr<GrGLInterface> interface = skia::AdoptRef(
context3d->createGrGLInterface());
if (!interface)
return;
interface->fCallback = BindWebGraphicsContext3DGLContextCallback;
interface->fCallbackData =
reinterpret_cast<GrGLInterfaceCallbackData>(context3d);
gr_context_ = skia::AdoptRef(GrContext::Create(
kOpenGL_GrBackend,
reinterpret_cast<GrBackendContext>(interface.get())));
if (gr_context_) {
// The limit of the number of textures we hold in the GrContext's
// bitmap->texture cache.
static const int kMaxGaneshTextureCacheCount = 2048;
// The limit of the bytes allocated toward textures in the GrContext's
// bitmap->texture cache.
static const size_t kMaxGaneshTextureCacheBytes = 96 * 1024 * 1024;
gr_context_->setTextureCacheLimits(kMaxGaneshTextureCacheCount,
kMaxGaneshTextureCacheBytes);
}
}
GrContextForWebGraphicsContext3D::~GrContextForWebGraphicsContext3D() {
}
void GrContextForWebGraphicsContext3D::OnLostContext() {
if (gr_context_)
gr_context_->contextDestroyed();
}
void GrContextForWebGraphicsContext3D::FreeGpuResources() {
if (gr_context_) {
TRACE_EVENT_INSTANT0("gpu", "GrContext::freeGpuResources", \
TRACE_EVENT_SCOPE_THREAD);
gr_context_->freeGpuResources();
}
}
} // namespace gpu
} // namespace webkit