Simple Cache: a few tests for rare corner cases with CRC check missing.
[chromium-blink-merge.git] / ui / gl / gl_context_nsview.mm
blob898bf014d8d55a29ebc3bd2234392c3e884daaf9
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "ui/gl/gl_context_nsview.h"
7 #include <vector>
9 #import <AppKit/NSOpenGL.h>
10 #import <AppKit/NSView.h>
12 #include "base/debug/trace_event.h"
13 #include "base/logging.h"
14 #include "ui/gl/gl_surface_nsview.h"
16 namespace gfx {
18 GLContextNSView::GLContextNSView(GLShareGroup* group)
19     : GLContext(group) {
22 GLContextNSView::~GLContextNSView() {
25 bool GLContextNSView::Initialize(GLSurface* surface,
26                                  GpuPreference gpu_preference) {
27   DCHECK(!context_) << "NSGLContext was previously initialized.";
28   gpu_preference_ = gpu_preference;
30   std::vector<NSOpenGLPixelFormatAttribute> attributes;
31   attributes.push_back(NSOpenGLPFAAccelerated);
32   attributes.push_back(NSOpenGLPFADoubleBuffer);
33   attributes.push_back(0);
35   scoped_nsobject<NSOpenGLPixelFormat> pixel_format;
36   pixel_format.reset([[NSOpenGLPixelFormat alloc]
37                          initWithAttributes:&attributes.front()]);
38   if (!pixel_format) {
39     LOG(ERROR) << "NSOpenGLPixelFormat initWithAttributes failed.";
40     return false;
41   }
43   context_.reset([[NSOpenGLContext alloc] initWithFormat:pixel_format
44                                             shareContext:nil]);
45   if (!context_) {
46     LOG(ERROR) << "NSOpenGLContext initWithFormat failed";
47     return false;
48   }
50   return true;
53 void GLContextNSView::Destroy() {
54   context_.reset(nil);
57 bool GLContextNSView::MakeCurrent(GLSurface* surface) {
58   TRACE_EVENT0("gpu", "GLContextNSView::MakeCurrent");
59   AcceleratedWidget view =
60       static_cast<AcceleratedWidget>(surface->GetHandle());
61   // Only set the context's view if the view is parented.
62   // I.e. it is a valid drawable.
63   if ([view window])
64     [context_ setView:view];
65   [context_ makeCurrentContext];
67   SetCurrent(this, surface);
69   if (!surface->OnMakeCurrent(this)) {
70     LOG(ERROR) << "Unable to make gl context current.";
71     return false;
72   }
74   return true;
77 void GLContextNSView::ReleaseCurrent(GLSurface* surface) {
78   [NSOpenGLContext clearCurrentContext];
81 bool GLContextNSView::IsCurrent(GLSurface* surface) {
82   return context_ == [NSOpenGLContext currentContext];
85 void* GLContextNSView::GetHandle() {
86   return context_;
89 void GLContextNSView::SetSwapInterval(int interval) {
90   DCHECK(interval == 0 || interval == 1);
91   GLint swap = interval;
92   [context_ setValues:&swap forParameter:NSOpenGLCPSwapInterval];
95 void GLContextNSView::FlushBuffer() {
96   [context_ flushBuffer];
99 }  // namespace gfx