Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(38)

Side by Side Diff: src/gpu/gl/mesa/SkMesaGLContext.h

Issue 1316123003: Style Change: SkNEW->new; SkDELETE->delete (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 2015-08-26 (Wednesday) 15:59:00 EDT Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 NULL;
25 } 25 }
26 SkMesaGLContext* ctx = SkNEW(SkMesaGLContext); 26 SkMesaGLContext* ctx = new SkMesaGLContext;
27 if (!ctx->isValid()) { 27 if (!ctx->isValid()) {
28 SkDELETE(ctx); 28 delete ctx;
29 return NULL; 29 return NULL;
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
OLDNEW
« no previous file with comments | « src/gpu/gl/mac/SkCreatePlatformGLContext_mac.cpp ('k') | src/gpu/gl/win/SkCreatePlatformGLContext_win.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698