robertphillips@google.com | d3b9fbb | 2012-03-28 16:19:11 +0000 | [diff] [blame] | 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/SkANGLEGLContext.h" |
| 10 | |
| 11 | SkANGLEGLContext::AutoContextRestore::AutoContextRestore() { |
robertphillips@google.com | d5c8fe6 | 2012-04-02 15:04:16 +0000 | [diff] [blame] | 12 | fOldEGLContext = eglGetCurrentContext(); |
| 13 | fOldDisplay = eglGetCurrentDisplay(); |
| 14 | fOldSurface = eglGetCurrentSurface(EGL_DRAW); |
robertphillips@google.com | d3b9fbb | 2012-03-28 16:19:11 +0000 | [diff] [blame] | 15 | |
| 16 | } |
| 17 | |
| 18 | SkANGLEGLContext::AutoContextRestore::~AutoContextRestore() { |
| 19 | if (NULL != fOldDisplay) { |
robertphillips@google.com | d5c8fe6 | 2012-04-02 15:04:16 +0000 | [diff] [blame] | 20 | eglMakeCurrent(fOldDisplay, fOldSurface, fOldSurface, fOldEGLContext); |
robertphillips@google.com | d3b9fbb | 2012-03-28 16:19:11 +0000 | [diff] [blame] | 21 | } |
| 22 | } |
| 23 | |
| 24 | /////////////////////////////////////////////////////////////////////////////// |
| 25 | |
| 26 | SkANGLEGLContext::SkANGLEGLContext() |
| 27 | : fContext(EGL_NO_CONTEXT) |
| 28 | , fDisplay(EGL_NO_DISPLAY) |
| 29 | , fSurface(EGL_NO_SURFACE) { |
| 30 | } |
| 31 | |
| 32 | SkANGLEGLContext::~SkANGLEGLContext() { |
| 33 | this->destroyGLContext(); |
| 34 | } |
| 35 | |
| 36 | void SkANGLEGLContext::destroyGLContext() { |
| 37 | if (fDisplay) { |
robertphillips@google.com | d5c8fe6 | 2012-04-02 15:04:16 +0000 | [diff] [blame] | 38 | eglMakeCurrent(fDisplay, 0, 0, 0); |
robertphillips@google.com | d3b9fbb | 2012-03-28 16:19:11 +0000 | [diff] [blame] | 39 | |
| 40 | if (fContext) { |
robertphillips@google.com | d5c8fe6 | 2012-04-02 15:04:16 +0000 | [diff] [blame] | 41 | eglDestroyContext(fDisplay, fContext); |
robertphillips@google.com | d3b9fbb | 2012-03-28 16:19:11 +0000 | [diff] [blame] | 42 | fContext = EGL_NO_CONTEXT; |
| 43 | } |
| 44 | |
| 45 | if (fSurface) { |
robertphillips@google.com | d5c8fe6 | 2012-04-02 15:04:16 +0000 | [diff] [blame] | 46 | eglDestroySurface(fDisplay, fSurface); |
robertphillips@google.com | d3b9fbb | 2012-03-28 16:19:11 +0000 | [diff] [blame] | 47 | fSurface = EGL_NO_SURFACE; |
| 48 | } |
| 49 | |
| 50 | //TODO should we close the display? |
| 51 | fDisplay = EGL_NO_DISPLAY; |
| 52 | } |
| 53 | } |
| 54 | |
| 55 | const GrGLInterface* SkANGLEGLContext::createGLContext() { |
| 56 | |
robertphillips@google.com | d5c8fe6 | 2012-04-02 15:04:16 +0000 | [diff] [blame] | 57 | fDisplay = eglGetDisplay(EGL_DEFAULT_DISPLAY); |
robertphillips@google.com | d3b9fbb | 2012-03-28 16:19:11 +0000 | [diff] [blame] | 58 | |
| 59 | EGLint majorVersion; |
| 60 | EGLint minorVersion; |
robertphillips@google.com | d5c8fe6 | 2012-04-02 15:04:16 +0000 | [diff] [blame] | 61 | eglInitialize(fDisplay, &majorVersion, &minorVersion); |
robertphillips@google.com | d3b9fbb | 2012-03-28 16:19:11 +0000 | [diff] [blame] | 62 | |
| 63 | EGLint numConfigs; |
| 64 | static const EGLint configAttribs[] = { |
| 65 | EGL_SURFACE_TYPE, EGL_PBUFFER_BIT, |
| 66 | EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT, |
| 67 | EGL_RED_SIZE, 8, |
| 68 | EGL_GREEN_SIZE, 8, |
| 69 | EGL_BLUE_SIZE, 8, |
| 70 | EGL_ALPHA_SIZE, 8, |
| 71 | EGL_NONE |
| 72 | }; |
| 73 | |
robertphillips@google.com | d5c8fe6 | 2012-04-02 15:04:16 +0000 | [diff] [blame] | 74 | EGLConfig surfaceConfig; |
| 75 | eglChooseConfig(fDisplay, configAttribs, &surfaceConfig, 1, &numConfigs); |
robertphillips@google.com | d3b9fbb | 2012-03-28 16:19:11 +0000 | [diff] [blame] | 76 | |
| 77 | static const EGLint contextAttribs[] = { |
| 78 | EGL_CONTEXT_CLIENT_VERSION, 2, |
| 79 | EGL_NONE |
| 80 | }; |
robertphillips@google.com | d5c8fe6 | 2012-04-02 15:04:16 +0000 | [diff] [blame] | 81 | fContext = eglCreateContext(fDisplay, surfaceConfig, NULL, contextAttribs); |
robertphillips@google.com | d3b9fbb | 2012-03-28 16:19:11 +0000 | [diff] [blame] | 82 | |
| 83 | |
| 84 | static const EGLint surfaceAttribs[] = { |
| 85 | EGL_WIDTH, 1, |
| 86 | EGL_HEIGHT, 1, |
| 87 | EGL_NONE |
| 88 | }; |
robertphillips@google.com | d5c8fe6 | 2012-04-02 15:04:16 +0000 | [diff] [blame] | 89 | fSurface = eglCreatePbufferSurface(fDisplay, surfaceConfig, surfaceAttribs); |
robertphillips@google.com | d3b9fbb | 2012-03-28 16:19:11 +0000 | [diff] [blame] | 90 | |
robertphillips@google.com | d5c8fe6 | 2012-04-02 15:04:16 +0000 | [diff] [blame] | 91 | eglMakeCurrent(fDisplay, fSurface, fSurface, fContext); |
robertphillips@google.com | d3b9fbb | 2012-03-28 16:19:11 +0000 | [diff] [blame] | 92 | |
| 93 | const GrGLInterface* interface = GrGLCreateANGLEInterface(); |
| 94 | if (NULL == interface) { |
| 95 | SkDebugf("Could not create ANGLE GL interface!\n"); |
| 96 | this->destroyGLContext(); |
| 97 | return NULL; |
| 98 | } |
| 99 | |
| 100 | return interface; |
| 101 | } |
| 102 | |
| 103 | void SkANGLEGLContext::makeCurrent() const { |
robertphillips@google.com | d5c8fe6 | 2012-04-02 15:04:16 +0000 | [diff] [blame] | 104 | if (!eglMakeCurrent(fDisplay, fSurface, fSurface, fContext)) { |
robertphillips@google.com | d3b9fbb | 2012-03-28 16:19:11 +0000 | [diff] [blame] | 105 | SkDebugf("Could not set the context.\n"); |
| 106 | } |
| 107 | } |