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(GrGLStandard forcedGpuAPI) { | 22 static SkMesaGLContext* Create(GrGLStandard forcedGpuAPI) { |
23 if (kGLES_GrGLStandard == forcedGpuAPI) { | 23 if (kGLES_GrGLStandard == forcedGpuAPI) { |
24 return NULL; | 24 return nullptr; |
25 } | 25 } |
26 SkMesaGLContext* ctx = new SkMesaGLContext; | 26 SkMesaGLContext* ctx = new SkMesaGLContext; |
27 if (!ctx->isValid()) { | 27 if (!ctx->isValid()) { |
28 delete ctx; | 28 delete ctx; |
29 return NULL; | 29 return nullptr; |
30 } | 30 } |
31 return ctx; | 31 return ctx; |
32 } | 32 } |
33 | 33 |
34 private: | 34 private: |
35 SkMesaGLContext(); | 35 SkMesaGLContext(); |
36 void destroyGLContext(); | 36 void destroyGLContext(); |
37 | 37 |
38 void onPlatformMakeCurrent() const override; | 38 void onPlatformMakeCurrent() const override; |
39 void onPlatformSwapBuffers() const override; | 39 void onPlatformSwapBuffers() const override; |
40 GrGLFuncPtr onPlatformGetProcAddress(const char*) const override; | 40 GrGLFuncPtr onPlatformGetProcAddress(const char*) const override; |
41 | 41 |
42 Context fContext; | 42 Context fContext; |
43 GrGLubyte *fImage; | 43 GrGLubyte *fImage; |
44 }; | 44 }; |
45 | 45 |
46 #endif | 46 #endif |
47 | 47 |
48 #endif | 48 #endif |
OLD | NEW |