bsalomon@google.com | 373a663 | 2011-10-19 20:43:20 +0000 | [diff] [blame] | 1 | |
| 2 | /* |
| 3 | * Copyright 2011 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/osmesa.h> |
| 10 | |
tomhudson@google.com | 6c8c34e | 2012-02-14 15:31:03 +0000 | [diff] [blame] | 11 | #include "gl/SkMesaGLContext.h" |
bsalomon@google.com | 003a8b9 | 2012-05-07 17:38:49 +0000 | [diff] [blame] | 12 | #include "gl/GrGLDefines.h" |
bsalomon@google.com | 373a663 | 2011-10-19 20:43:20 +0000 | [diff] [blame] | 13 | |
bsalomon@google.com | 57f5d98 | 2011-10-24 21:17:53 +0000 | [diff] [blame] | 14 | SkMesaGLContext::AutoContextRestore::AutoContextRestore() { |
| 15 | fOldContext = (Context)OSMesaGetCurrentContext(); |
| 16 | if (NULL != (OSMesaContext)fOldContext) { |
| 17 | OSMesaGetColorBuffer((OSMesaContext)fOldContext, |
| 18 | &fOldWidth, &fOldHeight, |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 19 | &fOldFormat, &fOldImage); |
bsalomon@google.com | 57f5d98 | 2011-10-24 21:17:53 +0000 | [diff] [blame] | 20 | } |
| 21 | } |
| 22 | |
| 23 | SkMesaGLContext::AutoContextRestore::~AutoContextRestore() { |
bsalomon@google.com | 31648eb | 2011-11-23 15:01:08 +0000 | [diff] [blame] | 24 | if (NULL != (OSMesaContext)fOldContext) { |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 25 | OSMesaMakeCurrent((OSMesaContext)fOldContext, fOldImage, |
bsalomon@google.com | 57f5d98 | 2011-10-24 21:17:53 +0000 | [diff] [blame] | 26 | fOldFormat, fOldWidth, fOldHeight); |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | /////////////////////////////////////////////////////////////////////////////// |
bsalomon@google.com | 373a663 | 2011-10-19 20:43:20 +0000 | [diff] [blame] | 31 | |
| 32 | SkMesaGLContext::SkMesaGLContext() |
bsalomon@google.com | 674a3a2 | 2013-01-07 17:21:07 +0000 | [diff] [blame] | 33 | : fContext(static_cast<Context>(NULL)) |
bsalomon@google.com | 373a663 | 2011-10-19 20:43:20 +0000 | [diff] [blame] | 34 | , fImage(NULL) { |
| 35 | GR_STATIC_ASSERT(sizeof(Context) == sizeof(OSMesaContext)); |
| 36 | } |
| 37 | |
| 38 | SkMesaGLContext::~SkMesaGLContext() { |
| 39 | this->destroyGLContext(); |
| 40 | } |
| 41 | |
| 42 | void SkMesaGLContext::destroyGLContext() { |
| 43 | if (fImage) { |
| 44 | sk_free(fImage); |
bsalomon@google.com | df8114d | 2013-03-01 18:10:41 +0000 | [diff] [blame] | 45 | fImage = NULL; |
bsalomon@google.com | 373a663 | 2011-10-19 20:43:20 +0000 | [diff] [blame] | 46 | } |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 47 | |
bsalomon@google.com | 373a663 | 2011-10-19 20:43:20 +0000 | [diff] [blame] | 48 | if (fContext) { |
| 49 | OSMesaDestroyContext((OSMesaContext)fContext); |
bsalomon@google.com | df8114d | 2013-03-01 18:10:41 +0000 | [diff] [blame] | 50 | fContext = static_cast<Context>(NULL); |
bsalomon@google.com | 373a663 | 2011-10-19 20:43:20 +0000 | [diff] [blame] | 51 | } |
| 52 | } |
| 53 | |
| 54 | static const GrGLint gBOGUS_SIZE = 16; |
| 55 | |
| 56 | const GrGLInterface* SkMesaGLContext::createGLContext() { |
| 57 | /* Create an RGBA-mode context */ |
| 58 | #if OSMESA_MAJOR_VERSION * 100 + OSMESA_MINOR_VERSION >= 305 |
| 59 | /* specify Z, stencil, accum sizes */ |
| 60 | fContext = (Context)OSMesaCreateContextExt(OSMESA_BGRA, 0, 0, 0, NULL); |
| 61 | #else |
| 62 | fContext = (Context)OSMesaCreateContext(OSMESA_BGRA, NULL); |
| 63 | #endif |
| 64 | if (!fContext) { |
| 65 | SkDebugf("OSMesaCreateContext failed!\n"); |
| 66 | this->destroyGLContext(); |
| 67 | return NULL; |
| 68 | } |
| 69 | // Allocate the image buffer |
| 70 | fImage = (GrGLubyte *) sk_malloc_throw(gBOGUS_SIZE * gBOGUS_SIZE * |
| 71 | 4 * sizeof(GrGLubyte)); |
| 72 | if (!fImage) { |
| 73 | SkDebugf("Alloc image buffer failed!\n"); |
| 74 | this->destroyGLContext(); |
| 75 | return NULL; |
| 76 | } |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 77 | |
bsalomon@google.com | 373a663 | 2011-10-19 20:43:20 +0000 | [diff] [blame] | 78 | // Bind the buffer to the context and make it current |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 79 | if (!OSMesaMakeCurrent((OSMesaContext)fContext, |
| 80 | fImage, |
| 81 | GR_GL_UNSIGNED_BYTE, |
| 82 | gBOGUS_SIZE, |
bsalomon@google.com | 373a663 | 2011-10-19 20:43:20 +0000 | [diff] [blame] | 83 | gBOGUS_SIZE)) { |
| 84 | SkDebugf("OSMesaMakeCurrent failed!\n"); |
| 85 | this->destroyGLContext(); |
| 86 | return NULL; |
| 87 | } |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 88 | |
bsalomon@google.com | 373a663 | 2011-10-19 20:43:20 +0000 | [diff] [blame] | 89 | const GrGLInterface* interface = GrGLCreateMesaInterface(); |
| 90 | if (!interface) { |
| 91 | SkDebugf("Could not create GL interface!\n"); |
| 92 | this->destroyGLContext(); |
| 93 | return NULL; |
| 94 | } |
| 95 | return interface; |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 96 | |
bsalomon@google.com | 373a663 | 2011-10-19 20:43:20 +0000 | [diff] [blame] | 97 | } |
| 98 | |
| 99 | void SkMesaGLContext::makeCurrent() const { |
| 100 | if (fContext) { |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 101 | if (!OSMesaMakeCurrent((OSMesaContext)fContext, fImage, |
bsalomon@google.com | 373a663 | 2011-10-19 20:43:20 +0000 | [diff] [blame] | 102 | GR_GL_UNSIGNED_BYTE, gBOGUS_SIZE, gBOGUS_SIZE)) { |
| 103 | SkDebugf("Could not make MESA context current."); |
| 104 | } |
| 105 | } |
| 106 | } |
djsollen@google.com | c9542ca | 2013-10-09 18:25:38 +0000 | [diff] [blame^] | 107 | |
| 108 | void SkMesaGLContext::swapBuffers() const { } |