1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379
|
// 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/gl_surface.h"
#include <vector>
#include "base/command_line.h"
#include "base/lazy_instance.h"
#include "base/logging.h"
#include "base/stl_util.h"
#include "base/threading/thread_local.h"
#include "base/trace_event/trace_event.h"
#include "ui/gfx/swap_result.h"
#include "ui/gl/gl_context.h"
#include "ui/gl/gl_image.h"
#include "ui/gl/gl_implementation.h"
#include "ui/gl/gl_surface_format.h"
#include "ui/gl/gl_switches.h"
namespace gl {
namespace {
base::LazyInstance<base::ThreadLocalPointer<GLSurface> >::Leaky
current_surface_ = LAZY_INSTANCE_INITIALIZER;
} // namespace
GLSurface::GLSurface() {}
bool GLSurface::Initialize() {
return Initialize(GLSurfaceFormat());
}
bool GLSurface::Initialize(GLSurfaceFormat format) {
return true;
}
bool GLSurface::Resize(const gfx::Size& size,
float scale_factor,
bool has_alpha) {
NOTIMPLEMENTED();
return false;
}
bool GLSurface::Recreate() {
NOTIMPLEMENTED();
return false;
}
bool GLSurface::DeferDraws() {
return false;
}
bool GLSurface::SupportsSwapBuffersWithDamage() {
return false;
}
bool GLSurface::SupportsPostSubBuffer() {
return false;
}
bool GLSurface::SupportsCommitOverlayPlanes() {
return false;
}
bool GLSurface::SupportsAsyncSwap() {
return false;
}
unsigned int GLSurface::GetBackingFramebufferObject() {
return 0;
}
void GLSurface::SwapBuffersAsync(const SwapCompletionCallback& callback) {
NOTREACHED();
}
gfx::SwapResult GLSurface::SwapBuffersWithDamage(int x,
int y,
int width,
int height) {
return gfx::SwapResult::SWAP_FAILED;
}
gfx::SwapResult GLSurface::PostSubBuffer(int x, int y, int width, int height) {
return gfx::SwapResult::SWAP_FAILED;
}
void GLSurface::PostSubBufferAsync(int x,
int y,
int width,
int height,
const SwapCompletionCallback& callback) {
NOTREACHED();
}
gfx::SwapResult GLSurface::CommitOverlayPlanes() {
NOTREACHED();
return gfx::SwapResult::SWAP_FAILED;
}
void GLSurface::CommitOverlayPlanesAsync(
const SwapCompletionCallback& callback) {
NOTREACHED();
}
bool GLSurface::OnMakeCurrent(GLContext* context) {
return true;
}
bool GLSurface::SetBackbufferAllocation(bool allocated) {
return true;
}
void GLSurface::SetFrontbufferAllocation(bool allocated) {
}
void* GLSurface::GetShareHandle() {
NOTIMPLEMENTED();
return NULL;
}
void* GLSurface::GetDisplay() {
NOTIMPLEMENTED();
return NULL;
}
void* GLSurface::GetConfig() {
NOTIMPLEMENTED();
return NULL;
}
unsigned long GLSurface::GetCompatibilityKey() {
return 0;
}
GLSurfaceFormat GLSurface::GetFormat() {
NOTIMPLEMENTED();
return GLSurfaceFormat();
}
gfx::VSyncProvider* GLSurface::GetVSyncProvider() {
return NULL;
}
bool GLSurface::ScheduleOverlayPlane(int z_order,
gfx::OverlayTransform transform,
GLImage* image,
const gfx::Rect& bounds_rect,
const gfx::RectF& crop_rect) {
NOTIMPLEMENTED();
return false;
}
bool GLSurface::ScheduleCALayer(const ui::CARendererLayerParams& params) {
NOTIMPLEMENTED();
return false;
}
void GLSurface::ScheduleCALayerInUseQuery(
std::vector<CALayerInUseQuery> queries) {
NOTIMPLEMENTED();
}
bool GLSurface::IsSurfaceless() const {
return false;
}
bool GLSurface::FlipsVertically() const {
return false;
}
bool GLSurface::BuffersFlipped() const {
return false;
}
GLSurface* GLSurface::GetCurrent() {
return current_surface_.Pointer()->Get();
}
GLSurface::~GLSurface() {
if (GetCurrent() == this)
SetCurrent(NULL);
}
void GLSurface::SetCurrent(GLSurface* surface) {
current_surface_.Pointer()->Set(surface);
}
bool GLSurface::ExtensionsContain(const char* c_extensions, const char* name) {
DCHECK(name);
if (!c_extensions)
return false;
std::string extensions(c_extensions);
extensions += " ";
std::string delimited_name(name);
delimited_name += " ";
return extensions.find(delimited_name) != std::string::npos;
}
void GLSurface::OnSetSwapInterval(int interval) {
}
GLSurfaceAdapter::GLSurfaceAdapter(GLSurface* surface) : surface_(surface) {}
bool GLSurfaceAdapter::Initialize(GLSurfaceFormat format) {
return surface_->Initialize(format);
}
void GLSurfaceAdapter::Destroy() {
surface_->Destroy();
}
bool GLSurfaceAdapter::Resize(const gfx::Size& size,
float scale_factor,
bool has_alpha) {
return surface_->Resize(size, scale_factor, has_alpha);
}
bool GLSurfaceAdapter::Recreate() {
return surface_->Recreate();
}
bool GLSurfaceAdapter::DeferDraws() {
return surface_->DeferDraws();
}
bool GLSurfaceAdapter::IsOffscreen() {
return surface_->IsOffscreen();
}
gfx::SwapResult GLSurfaceAdapter::SwapBuffers() {
return surface_->SwapBuffers();
}
void GLSurfaceAdapter::SwapBuffersAsync(
const SwapCompletionCallback& callback) {
surface_->SwapBuffersAsync(callback);
}
gfx::SwapResult GLSurfaceAdapter::SwapBuffersWithDamage(int x,
int y,
int width,
int height) {
return surface_->SwapBuffersWithDamage(x, y, width, height);
}
gfx::SwapResult GLSurfaceAdapter::PostSubBuffer(int x,
int y,
int width,
int height) {
return surface_->PostSubBuffer(x, y, width, height);
}
void GLSurfaceAdapter::PostSubBufferAsync(
int x,
int y,
int width,
int height,
const SwapCompletionCallback& callback) {
surface_->PostSubBufferAsync(x, y, width, height, callback);
}
gfx::SwapResult GLSurfaceAdapter::CommitOverlayPlanes() {
return surface_->CommitOverlayPlanes();
}
void GLSurfaceAdapter::CommitOverlayPlanesAsync(
const SwapCompletionCallback& callback) {
surface_->CommitOverlayPlanesAsync(callback);
}
bool GLSurfaceAdapter::SupportsSwapBuffersWithDamage() {
return surface_->SupportsSwapBuffersWithDamage();
}
bool GLSurfaceAdapter::SupportsPostSubBuffer() {
return surface_->SupportsPostSubBuffer();
}
bool GLSurfaceAdapter::SupportsCommitOverlayPlanes() {
return surface_->SupportsCommitOverlayPlanes();
}
bool GLSurfaceAdapter::SupportsAsyncSwap() {
return surface_->SupportsAsyncSwap();
}
gfx::Size GLSurfaceAdapter::GetSize() {
return surface_->GetSize();
}
void* GLSurfaceAdapter::GetHandle() {
return surface_->GetHandle();
}
unsigned int GLSurfaceAdapter::GetBackingFramebufferObject() {
return surface_->GetBackingFramebufferObject();
}
bool GLSurfaceAdapter::OnMakeCurrent(GLContext* context) {
return surface_->OnMakeCurrent(context);
}
bool GLSurfaceAdapter::SetBackbufferAllocation(bool allocated) {
return surface_->SetBackbufferAllocation(allocated);
}
void GLSurfaceAdapter::SetFrontbufferAllocation(bool allocated) {
surface_->SetFrontbufferAllocation(allocated);
}
void* GLSurfaceAdapter::GetShareHandle() {
return surface_->GetShareHandle();
}
void* GLSurfaceAdapter::GetDisplay() {
return surface_->GetDisplay();
}
void* GLSurfaceAdapter::GetConfig() {
return surface_->GetConfig();
}
unsigned long GLSurfaceAdapter::GetCompatibilityKey() {
return surface_->GetCompatibilityKey();
}
GLSurfaceFormat GLSurfaceAdapter::GetFormat() {
return surface_->GetFormat();
}
gfx::VSyncProvider* GLSurfaceAdapter::GetVSyncProvider() {
return surface_->GetVSyncProvider();
}
bool GLSurfaceAdapter::ScheduleOverlayPlane(int z_order,
gfx::OverlayTransform transform,
GLImage* image,
const gfx::Rect& bounds_rect,
const gfx::RectF& crop_rect) {
return surface_->ScheduleOverlayPlane(
z_order, transform, image, bounds_rect, crop_rect);
}
bool GLSurfaceAdapter::IsSurfaceless() const {
return surface_->IsSurfaceless();
}
bool GLSurfaceAdapter::FlipsVertically() const {
return surface_->FlipsVertically();
}
bool GLSurfaceAdapter::BuffersFlipped() const {
return surface_->BuffersFlipped();
}
GLSurfaceAdapter::~GLSurfaceAdapter() {}
scoped_refptr<GLSurface> InitializeGLSurfaceWithFormat(
scoped_refptr<GLSurface> surface, GLSurfaceFormat format) {
if (!surface->Initialize(format))
return nullptr;
return surface;
}
scoped_refptr<GLSurface> InitializeGLSurface(scoped_refptr<GLSurface> surface) {
return InitializeGLSurfaceWithFormat(surface, GLSurfaceFormat());
}
GLSurface::CALayerInUseQuery::CALayerInUseQuery() = default;
GLSurface::CALayerInUseQuery::CALayerInUseQuery(const CALayerInUseQuery&) =
default;
GLSurface::CALayerInUseQuery::~CALayerInUseQuery() = default;
} // namespace gl
|