blob: 1e11c0deb7be8afd32fdbf83314f6b9b6d4717c0 [file] [log] [blame]
bsalomon@google.com2b64f842012-10-02 15:25:12 +00001
2/*
3 * Copyright 2012 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
8
9#include "gl/SkNativeGLContext.h"
10#import <OpenGLES/EAGL.h>
11
12#define EAGLCTX ((EAGLContext*)(fEAGLContext))
13
14SkNativeGLContext::AutoContextRestore::AutoContextRestore() {
15 fEAGLContext = [EAGLContext currentContext];
16 if (EAGLCTX) {
17 [EAGLCTX retain];
18 }
19}
20
21SkNativeGLContext::AutoContextRestore::~AutoContextRestore() {
22 if (EAGLCTX) {
23 [EAGLContext setCurrentContext:EAGLCTX];
24 [EAGLCTX release];
25 }
26}
27
28///////////////////////////////////////////////////////////////////////////////
29
30SkNativeGLContext::SkNativeGLContext()
31 : fEAGLContext(NULL) {
32}
33
34SkNativeGLContext::~SkNativeGLContext() {
35 this->destroyGLContext();
36}
37
38void SkNativeGLContext::destroyGLContext() {
39 if ([EAGLContext currentContext] == EAGLCTX) {
40 [EAGLContext setCurrentContext:nil];
41 }
42 [EAGLCTX release];
43}
44
kkinnunen80549fc2014-06-30 06:36:31 -070045const GrGLInterface* SkNativeGLContext::createGLContext(GrGLStandard forcedGpuAPI) {
46 if (kGL_GrGLStandard == forcedGpuAPI) {
47 return NULL;
48 }
49
bsalomon@google.com2b64f842012-10-02 15:25:12 +000050 fEAGLContext = [[EAGLContext alloc] initWithAPI:kEAGLRenderingAPIOpenGLES2];
51 [EAGLContext setCurrentContext:EAGLCTX];
52
53 const GrGLInterface* interface = GrGLCreateNativeInterface();
54 if (!interface) {
55 SkDebugf("Failed to create gl interface");
56 this->destroyGLContext();
57 return NULL;
58 }
59 return interface;
60}
61
62void SkNativeGLContext::makeCurrent() const {
63 if (![EAGLContext setCurrentContext:EAGLCTX]) {
64 SkDebugf("Could not set the context.\n");
65 }
66}
djsollen@google.comc9542ca2013-10-09 18:25:38 +000067
kkinnunen80549fc2014-06-30 06:36:31 -070068void SkNativeGLContext::swapBuffers() const { }