| OLD | NEW |
| 1 | 1 |
| 2 /* | 2 /* |
| 3 * Copyright 2011 Google Inc. | 3 * Copyright 2011 Google Inc. |
| 4 * | 4 * |
| 5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
| 6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
| 7 */ | 7 */ |
| 8 #ifndef SkMesaGLContext_DEFINED | 8 #ifndef SkMesaGLContext_DEFINED |
| 9 #define SkMesaGLContext_DEFINED | 9 #define SkMesaGLContext_DEFINED |
| 10 | 10 |
| 11 #include "gl/SkGLContext.h" | 11 #include "gl/SkGLContext.h" |
| 12 | 12 |
| 13 #if SK_MESA | 13 #if SK_MESA |
| 14 | 14 |
| 15 class SkMesaGLContext : public SkGLContext { | 15 class SkMesaGLContext : public SkGLContext { |
| 16 private: | 16 private: |
| 17 typedef intptr_t Context; | 17 typedef intptr_t Context; |
| 18 | 18 |
| 19 public: | 19 public: |
| 20 ~SkMesaGLContext() override; | 20 ~SkMesaGLContext() override; |
| 21 | 21 |
| 22 static SkMesaGLContext* Create() { | 22 static SkMesaGLContext* Create(GrGLStandard forcedGpuAPI) { |
| 23 if (kGLES_GrGLStandard == forcedGpuAPI) { |
| 24 return nullptr; |
| 25 } |
| 23 SkMesaGLContext* ctx = new SkMesaGLContext; | 26 SkMesaGLContext* ctx = new SkMesaGLContext; |
| 24 if (!ctx->isValid()) { | 27 if (!ctx->isValid()) { |
| 25 delete ctx; | 28 delete ctx; |
| 26 return nullptr; | 29 return nullptr; |
| 27 } | 30 } |
| 28 return ctx; | 31 return ctx; |
| 29 } | 32 } |
| 30 | 33 |
| 31 private: | 34 private: |
| 32 SkMesaGLContext(); | 35 SkMesaGLContext(); |
| 33 void destroyGLContext(); | 36 void destroyGLContext(); |
| 34 | 37 |
| 35 void onPlatformMakeCurrent() const override; | 38 void onPlatformMakeCurrent() const override; |
| 36 void onPlatformSwapBuffers() const override; | 39 void onPlatformSwapBuffers() const override; |
| 37 GrGLFuncPtr onPlatformGetProcAddress(const char*) const override; | 40 GrGLFuncPtr onPlatformGetProcAddress(const char*) const override; |
| 38 | 41 |
| 39 Context fContext; | 42 Context fContext; |
| 40 GrGLubyte *fImage; | 43 GrGLubyte *fImage; |
| 41 }; | 44 }; |
| 42 | 45 |
| 43 #endif | 46 #endif |
| 44 | 47 |
| 45 #endif | 48 #endif |
| OLD | NEW |