| bsalomon@google.com | 373a663 | 2011-10-19 20:43:20 +0000 | [diff] [blame] | 1 | |
| 2 | /* |
| robertphillips@google.com | 6177e69 | 2013-02-28 20:16:25 +0000 | [diff] [blame] | 3 | * Copyright 2013 Google Inc. |
| bsalomon@google.com | 373a663 | 2011-10-19 20:43:20 +0000 | [diff] [blame] | 4 | * |
| 5 | * Use of this source code is governed by a BSD-style license that can be |
| 6 | * found in the LICENSE file. |
| 7 | */ |
| robertphillips@google.com | 6177e69 | 2013-02-28 20:16:25 +0000 | [diff] [blame] | 8 | #include "gl/SkGLContextHelper.h" |
| bsalomon@google.com | 1744f97 | 2013-02-26 21:46:32 +0000 | [diff] [blame] | 9 | #include "GrGLUtil.h" |
| bsalomon@google.com | 373a663 | 2011-10-19 20:43:20 +0000 | [diff] [blame] | 10 | |
| robertphillips@google.com | 6177e69 | 2013-02-28 20:16:25 +0000 | [diff] [blame] | 11 | SkGLContextHelper::SkGLContextHelper() |
| bsalomon@google.com | 373a663 | 2011-10-19 20:43:20 +0000 | [diff] [blame] | 12 | : fFBO(0) |
| robertphillips@google.com | 7c95942 | 2012-03-22 20:43:56 +0000 | [diff] [blame] | 13 | , fColorBufferID(0) |
| 14 | , fDepthStencilBufferID(0) |
| bsalomon@google.com | 373a663 | 2011-10-19 20:43:20 +0000 | [diff] [blame] | 15 | , fGL(NULL) { |
| 16 | } |
| 17 | |
| robertphillips@google.com | 6177e69 | 2013-02-28 20:16:25 +0000 | [diff] [blame] | 18 | SkGLContextHelper::~SkGLContextHelper() { |
| robertphillips@google.com | f6f123d | 2012-03-21 17:57:55 +0000 | [diff] [blame] | 19 | |
| 20 | if (fGL) { |
| robertphillips@google.com | edbd21a | 2013-02-07 21:16:41 +0000 | [diff] [blame] | 21 | // TODO: determine why DeleteFramebuffers is generating a GL error in tests |
| 22 | SK_GL_NOERRCHECK(*this, DeleteFramebuffers(1, &fFBO)); |
| 23 | SK_GL_NOERRCHECK(*this, DeleteRenderbuffers(1, &fColorBufferID)); |
| 24 | SK_GL_NOERRCHECK(*this, DeleteRenderbuffers(1, &fDepthStencilBufferID)); |
| robertphillips@google.com | f6f123d | 2012-03-21 17:57:55 +0000 | [diff] [blame] | 25 | } |
| 26 | |
| bsalomon@google.com | 373a663 | 2011-10-19 20:43:20 +0000 | [diff] [blame] | 27 | SkSafeUnref(fGL); |
| 28 | } |
| 29 | |
| robertphillips@google.com | 6177e69 | 2013-02-28 20:16:25 +0000 | [diff] [blame] | 30 | bool SkGLContextHelper::init(int width, int height) { |
| bsalomon@google.com | 373a663 | 2011-10-19 20:43:20 +0000 | [diff] [blame] | 31 | if (fGL) { |
| 32 | fGL->unref(); |
| 33 | this->destroyGLContext(); |
| 34 | } |
| 35 | |
| 36 | fGL = this->createGLContext(); |
| 37 | if (fGL) { |
| robertphillips@google.com | fe1b536 | 2013-02-07 19:45:46 +0000 | [diff] [blame] | 38 | const GrGLubyte* temp; |
| 39 | |
| commit-bot@chromium.org | 90313cc | 2014-01-17 15:05:38 +0000 | [diff] [blame] | 40 | if (!fGL->validate()) { |
| bsalomon@google.com | 1744f97 | 2013-02-26 21:46:32 +0000 | [diff] [blame] | 41 | fGL = NULL; |
| 42 | this->destroyGLContext(); |
| 43 | return false; |
| 44 | } |
| robertphillips@google.com | fe1b536 | 2013-02-07 19:45:46 +0000 | [diff] [blame] | 45 | |
| 46 | SK_GL_RET(*this, temp, GetString(GR_GL_VERSION)); |
| 47 | const char* versionStr = reinterpret_cast<const char*>(temp); |
| bsalomon@google.com | 6e85937 | 2012-02-09 15:25:13 +0000 | [diff] [blame] | 48 | GrGLVersion version = GrGLGetVersionFromString(versionStr); |
| 49 | |
| bsalomon@google.com | 675c5c4 | 2011-12-06 19:54:37 +0000 | [diff] [blame] | 50 | // clear any existing GL erorrs |
| 51 | GrGLenum error; |
| 52 | do { |
| robertphillips@google.com | fe1b536 | 2013-02-07 19:45:46 +0000 | [diff] [blame] | 53 | SK_GL_RET(*this, error, GetError()); |
| bsalomon@google.com | 675c5c4 | 2011-12-06 19:54:37 +0000 | [diff] [blame] | 54 | } while (GR_GL_NO_ERROR != error); |
| bsalomon@google.com | 6e85937 | 2012-02-09 15:25:13 +0000 | [diff] [blame] | 55 | |
| bsalomon@google.com | 373a663 | 2011-10-19 20:43:20 +0000 | [diff] [blame] | 56 | SK_GL(*this, GenFramebuffers(1, &fFBO)); |
| 57 | SK_GL(*this, BindFramebuffer(GR_GL_FRAMEBUFFER, fFBO)); |
| robertphillips@google.com | 7c95942 | 2012-03-22 20:43:56 +0000 | [diff] [blame] | 58 | SK_GL(*this, GenRenderbuffers(1, &fColorBufferID)); |
| 59 | SK_GL(*this, BindRenderbuffer(GR_GL_RENDERBUFFER, fColorBufferID)); |
| commit-bot@chromium.org | 9e90aed | 2014-01-16 16:35:09 +0000 | [diff] [blame] | 60 | if (kGLES_GrGLStandard == this->gl()->fStandard) { |
| bsalomon@google.com | 675c5c4 | 2011-12-06 19:54:37 +0000 | [diff] [blame] | 61 | SK_GL(*this, RenderbufferStorage(GR_GL_RENDERBUFFER, |
| 62 | GR_GL_RGBA8, |
| 63 | width, height)); |
| 64 | } else { |
| 65 | SK_GL(*this, RenderbufferStorage(GR_GL_RENDERBUFFER, |
| 66 | GR_GL_RGBA, |
| 67 | width, height)); |
| 68 | } |
| bsalomon@google.com | 373a663 | 2011-10-19 20:43:20 +0000 | [diff] [blame] | 69 | SK_GL(*this, FramebufferRenderbuffer(GR_GL_FRAMEBUFFER, |
| 70 | GR_GL_COLOR_ATTACHMENT0, |
| rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 71 | GR_GL_RENDERBUFFER, |
| robertphillips@google.com | 7c95942 | 2012-03-22 20:43:56 +0000 | [diff] [blame] | 72 | fColorBufferID)); |
| 73 | SK_GL(*this, GenRenderbuffers(1, &fDepthStencilBufferID)); |
| 74 | SK_GL(*this, BindRenderbuffer(GR_GL_RENDERBUFFER, fDepthStencilBufferID)); |
| bsalomon@google.com | 6e85937 | 2012-02-09 15:25:13 +0000 | [diff] [blame] | 75 | |
| 76 | // Some drivers that support packed depth stencil will only succeed |
| 77 | // in binding a packed format an FBO. However, we can't rely on packed |
| 78 | // depth stencil being available. |
| 79 | bool supportsPackedDepthStencil; |
| commit-bot@chromium.org | 9e90aed | 2014-01-16 16:35:09 +0000 | [diff] [blame] | 80 | if (kGLES_GrGLStandard == this->gl()->fStandard) { |
| commit-bot@chromium.org | 04c500f | 2013-09-06 15:28:01 +0000 | [diff] [blame] | 81 | supportsPackedDepthStencil = version >= GR_GL_VER(3,0) || |
| 82 | this->hasExtension("GL_OES_packed_depth_stencil"); |
| bsalomon@google.com | 675c5c4 | 2011-12-06 19:54:37 +0000 | [diff] [blame] | 83 | } else { |
| bsalomon@google.com | 6e85937 | 2012-02-09 15:25:13 +0000 | [diff] [blame] | 84 | supportsPackedDepthStencil = version >= GR_GL_VER(3,0) || |
| bsalomon@google.com | 1744f97 | 2013-02-26 21:46:32 +0000 | [diff] [blame] | 85 | this->hasExtension("GL_EXT_packed_depth_stencil") || |
| 86 | this->hasExtension("GL_ARB_framebuffer_object"); |
| bsalomon@google.com | 6e85937 | 2012-02-09 15:25:13 +0000 | [diff] [blame] | 87 | } |
| 88 | |
| 89 | if (supportsPackedDepthStencil) { |
| 90 | // ES2 requires sized internal formats for RenderbufferStorage |
| 91 | // On Desktop we let the driver decide. |
| commit-bot@chromium.org | 9e90aed | 2014-01-16 16:35:09 +0000 | [diff] [blame] | 92 | GrGLenum format = kGLES_GrGLStandard == this->gl()->fStandard ? |
| bsalomon@google.com | 6e85937 | 2012-02-09 15:25:13 +0000 | [diff] [blame] | 93 | GR_GL_DEPTH24_STENCIL8 : |
| 94 | GR_GL_DEPTH_STENCIL; |
| bsalomon@google.com | 675c5c4 | 2011-12-06 19:54:37 +0000 | [diff] [blame] | 95 | SK_GL(*this, RenderbufferStorage(GR_GL_RENDERBUFFER, |
| bsalomon@google.com | 6e85937 | 2012-02-09 15:25:13 +0000 | [diff] [blame] | 96 | format, |
| bsalomon@google.com | 675c5c4 | 2011-12-06 19:54:37 +0000 | [diff] [blame] | 97 | width, height)); |
| 98 | SK_GL(*this, FramebufferRenderbuffer(GR_GL_FRAMEBUFFER, |
| 99 | GR_GL_DEPTH_ATTACHMENT, |
| 100 | GR_GL_RENDERBUFFER, |
| robertphillips@google.com | 7c95942 | 2012-03-22 20:43:56 +0000 | [diff] [blame] | 101 | fDepthStencilBufferID)); |
| bsalomon@google.com | 6e85937 | 2012-02-09 15:25:13 +0000 | [diff] [blame] | 102 | } else { |
| commit-bot@chromium.org | 9e90aed | 2014-01-16 16:35:09 +0000 | [diff] [blame] | 103 | GrGLenum format = kGLES_GrGLStandard == this->gl()->fStandard ? GR_GL_STENCIL_INDEX8 : |
| 104 | GR_GL_STENCIL_INDEX; |
| bsalomon@google.com | 6e85937 | 2012-02-09 15:25:13 +0000 | [diff] [blame] | 105 | SK_GL(*this, RenderbufferStorage(GR_GL_RENDERBUFFER, |
| 106 | format, |
| 107 | width, height)); |
| bsalomon@google.com | 675c5c4 | 2011-12-06 19:54:37 +0000 | [diff] [blame] | 108 | } |
| bsalomon@google.com | 373a663 | 2011-10-19 20:43:20 +0000 | [diff] [blame] | 109 | SK_GL(*this, FramebufferRenderbuffer(GR_GL_FRAMEBUFFER, |
| 110 | GR_GL_STENCIL_ATTACHMENT, |
| 111 | GR_GL_RENDERBUFFER, |
| robertphillips@google.com | 7c95942 | 2012-03-22 20:43:56 +0000 | [diff] [blame] | 112 | fDepthStencilBufferID)); |
| bsalomon@google.com | 373a663 | 2011-10-19 20:43:20 +0000 | [diff] [blame] | 113 | SK_GL(*this, Viewport(0, 0, width, height)); |
| 114 | SK_GL(*this, ClearStencil(0)); |
| 115 | SK_GL(*this, Clear(GR_GL_STENCIL_BUFFER_BIT)); |
| rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 116 | |
| robertphillips@google.com | fe1b536 | 2013-02-07 19:45:46 +0000 | [diff] [blame] | 117 | SK_GL_RET(*this, error, GetError()); |
| 118 | GrGLenum status; |
| 119 | SK_GL_RET(*this, status, CheckFramebufferStatus(GR_GL_FRAMEBUFFER)); |
| bsalomon@google.com | 675c5c4 | 2011-12-06 19:54:37 +0000 | [diff] [blame] | 120 | |
| 121 | if (GR_GL_FRAMEBUFFER_COMPLETE != status || |
| 122 | GR_GL_NO_ERROR != error) { |
| bsalomon@google.com | 373a663 | 2011-10-19 20:43:20 +0000 | [diff] [blame] | 123 | fFBO = 0; |
| robertphillips@google.com | 7c95942 | 2012-03-22 20:43:56 +0000 | [diff] [blame] | 124 | fColorBufferID = 0; |
| 125 | fDepthStencilBufferID = 0; |
| bsalomon@google.com | 373a663 | 2011-10-19 20:43:20 +0000 | [diff] [blame] | 126 | fGL->unref(); |
| 127 | fGL = NULL; |
| 128 | this->destroyGLContext(); |
| 129 | return false; |
| 130 | } else { |
| 131 | return true; |
| 132 | } |
| 133 | } |
| 134 | return false; |
| 135 | } |