Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Side by Side Diff: src/gpu/gl/iOS/SkCreatePlatformGLContext_iOS.mm

Issue 639793002: Revert of Make the Sk GL context class an abstract base class (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/gpu/gl/glx/SkNativeGLContext_glx.cpp ('k') | src/gpu/gl/iOS/SkNativeGLContext_iOS.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1
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/SkGLContext.h"
10 #import <OpenGLES/EAGL.h>
11
12 #define EAGLCTX ((EAGLContext*)(fEAGLContext))
13
14 namespace {
15
16 class IOSNativeGLContext : public SkNativeGLContext {
17 public:
18 IOSNativeGLContext();
19
20 virtual ~IOSNativeGLContext();
21
22 virtual void makeCurrent() const SK_OVERRIDE;
23 virtual void swapBuffers() const SK_OVERRIDE;
24 protected:
25 virtual const GrGLInterface* createGLContext(GrGLStandard forcedGpuAPI) SK_O VERRIDE;
26 virtual void destroyGLContext() SK_OVERRIDE;
27
28 private:
29 void* fEAGLContext;
30 };
31
32 IOSNativeGLContext::IOSNativeGLContext()
33 : fEAGLContext(NULL) {
34 }
35
36 IOSNativeGLContext::~IOSNativeGLContext() {
37 this->destroyGLContext();
38 }
39
40 void IOSNativeGLContext::destroyGLContext() {
41 if (fEAGLContext) {
42 if ([EAGLContext currentContext] == EAGLCTX) {
43 [EAGLContext setCurrentContext:nil];
44 }
45 [EAGLCTX release];
46 fEAGLContext = NULL;
47 }
48 }
49
50 const GrGLInterface* IOSNativeGLContext::createGLContext(GrGLStandard forcedGpuA PI) {
51 if (kGL_GrGLStandard == forcedGpuAPI) {
52 return NULL;
53 }
54
55 fEAGLContext = [[EAGLContext alloc] initWithAPI:kEAGLRenderingAPIOpenGLES2];
56 [EAGLContext setCurrentContext:EAGLCTX];
57
58 const GrGLInterface* interface = GrGLCreateNativeInterface();
59 if (!interface) {
60 SkDebugf("Failed to create gl interface");
61 this->destroyGLContext();
62 return NULL;
63 }
64 return interface;
65 }
66
67 void IOSNativeGLContext::makeCurrent() const {
68 if (![EAGLContext setCurrentContext:EAGLCTX]) {
69 SkDebugf("Could not set the context.\n");
70 }
71 }
72
73 void IOSNativeGLContext::swapBuffers() const { }
74
75 } // anonymous namespace
76
77
78 SkNativeGLContext* SkCreatePlatformGLContext() {
79 return SkNEW(IOSNativeGLContext);
80 }
81
OLDNEW
« no previous file with comments | « src/gpu/gl/glx/SkNativeGLContext_glx.cpp ('k') | src/gpu/gl/iOS/SkNativeGLContext_iOS.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698