blob: 81fccebba0cf08a9932d67a1a88abe1be89d0f41 [file] [log] [blame]
robertphillips@google.comd3b9fbb2012-03-28 16:19:11 +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/SkANGLEGLContext.h"
10
bsalomon10805962014-10-08 04:45:09 -070011SkANGLEGLContext::AutoContextRestore::AutoContextRestore() {
12 fOldEGLContext = eglGetCurrentContext();
13 fOldDisplay = eglGetCurrentDisplay();
14 fOldSurface = eglGetCurrentSurface(EGL_DRAW);
15
16}
17
18SkANGLEGLContext::AutoContextRestore::~AutoContextRestore() {
19 if (fOldDisplay) {
20 eglMakeCurrent(fOldDisplay, fOldSurface, fOldSurface, fOldEGLContext);
21 }
22}
23
24///////////////////////////////////////////////////////////////////////////////
25
robertphillips@google.comd3b9fbb2012-03-28 16:19:11 +000026SkANGLEGLContext::SkANGLEGLContext()
27 : fContext(EGL_NO_CONTEXT)
28 , fDisplay(EGL_NO_DISPLAY)
29 , fSurface(EGL_NO_SURFACE) {
30}
31
32SkANGLEGLContext::~SkANGLEGLContext() {
33 this->destroyGLContext();
34}
35
36void SkANGLEGLContext::destroyGLContext() {
37 if (fDisplay) {
robertphillips@google.comd5c8fe62012-04-02 15:04:16 +000038 eglMakeCurrent(fDisplay, 0, 0, 0);
robertphillips@google.comd3b9fbb2012-03-28 16:19:11 +000039
40 if (fContext) {
robertphillips@google.comd5c8fe62012-04-02 15:04:16 +000041 eglDestroyContext(fDisplay, fContext);
robertphillips@google.comd3b9fbb2012-03-28 16:19:11 +000042 fContext = EGL_NO_CONTEXT;
43 }
44
45 if (fSurface) {
robertphillips@google.comd5c8fe62012-04-02 15:04:16 +000046 eglDestroySurface(fDisplay, fSurface);
robertphillips@google.comd3b9fbb2012-03-28 16:19:11 +000047 fSurface = EGL_NO_SURFACE;
48 }
49
50 //TODO should we close the display?
51 fDisplay = EGL_NO_DISPLAY;
52 }
53}
54
kkinnunen80549fc2014-06-30 06:36:31 -070055const GrGLInterface* SkANGLEGLContext::createGLContext(GrGLStandard forcedGpuAPI) {
56 if (kGL_GrGLStandard == forcedGpuAPI) {
57 return NULL;
58 }
robertphillips@google.comd3b9fbb2012-03-28 16:19:11 +000059
robertphillips@google.comd5c8fe62012-04-02 15:04:16 +000060 fDisplay = eglGetDisplay(EGL_DEFAULT_DISPLAY);
robertphillips@google.comd3b9fbb2012-03-28 16:19:11 +000061
62 EGLint majorVersion;
63 EGLint minorVersion;
robertphillips@google.comd5c8fe62012-04-02 15:04:16 +000064 eglInitialize(fDisplay, &majorVersion, &minorVersion);
robertphillips@google.comd3b9fbb2012-03-28 16:19:11 +000065
66 EGLint numConfigs;
67 static const EGLint configAttribs[] = {
68 EGL_SURFACE_TYPE, EGL_PBUFFER_BIT,
69 EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT,
70 EGL_RED_SIZE, 8,
71 EGL_GREEN_SIZE, 8,
72 EGL_BLUE_SIZE, 8,
73 EGL_ALPHA_SIZE, 8,
74 EGL_NONE
75 };
76
robertphillips@google.comd5c8fe62012-04-02 15:04:16 +000077 EGLConfig surfaceConfig;
78 eglChooseConfig(fDisplay, configAttribs, &surfaceConfig, 1, &numConfigs);
robertphillips@google.comd3b9fbb2012-03-28 16:19:11 +000079
80 static const EGLint contextAttribs[] = {
81 EGL_CONTEXT_CLIENT_VERSION, 2,
82 EGL_NONE
83 };
robertphillips@google.comd5c8fe62012-04-02 15:04:16 +000084 fContext = eglCreateContext(fDisplay, surfaceConfig, NULL, contextAttribs);
robertphillips@google.comd3b9fbb2012-03-28 16:19:11 +000085
86
87 static const EGLint surfaceAttribs[] = {
88 EGL_WIDTH, 1,
89 EGL_HEIGHT, 1,
90 EGL_NONE
91 };
robertphillips@google.comd5c8fe62012-04-02 15:04:16 +000092 fSurface = eglCreatePbufferSurface(fDisplay, surfaceConfig, surfaceAttribs);
robertphillips@google.comd3b9fbb2012-03-28 16:19:11 +000093
robertphillips@google.comd5c8fe62012-04-02 15:04:16 +000094 eglMakeCurrent(fDisplay, fSurface, fSurface, fContext);
robertphillips@google.comd3b9fbb2012-03-28 16:19:11 +000095
96 const GrGLInterface* interface = GrGLCreateANGLEInterface();
97 if (NULL == interface) {
98 SkDebugf("Could not create ANGLE GL interface!\n");
99 this->destroyGLContext();
100 return NULL;
101 }
102
103 return interface;
104}
105
106void SkANGLEGLContext::makeCurrent() const {
robertphillips@google.comd5c8fe62012-04-02 15:04:16 +0000107 if (!eglMakeCurrent(fDisplay, fSurface, fSurface, fContext)) {
robertphillips@google.comd3b9fbb2012-03-28 16:19:11 +0000108 SkDebugf("Could not set the context.\n");
109 }
110}
djsollen@google.comc9542ca2013-10-09 18:25:38 +0000111
112void SkANGLEGLContext::swapBuffers() const {
113 if (!eglSwapBuffers(fDisplay, fSurface)) {
114 SkDebugf("Could not complete eglSwapBuffers.\n");
115 }
116}