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

Side by Side Diff: include/gpu/gl/command_buffer/SkCommandBufferGLContext.h

Issue 1306823003: skia: add ability to load command_buffer_gles2 (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: delete the display 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 2012 Google Inc. 3 * Copyright 2015 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 SkANGLEGLContext_DEFINED 8 #ifndef SKCOMMANDBUFFERGLCONTEXT_DEFINED
9 #define SkANGLEGLContext_DEFINED 9 #define SKCOMMANDBUFFERGLCONTEXT_DEFINED
10 10
11 #if SK_ANGLE 11 #if SK_COMMAND_BUFFER
12 12
13 #include "gl/SkGLContext.h" 13 #include "gl/SkGLContext.h"
14 14
15 class SkANGLEGLContext : public SkGLContext { 15 class SkCommandBufferGLContext : public SkGLContext {
16 public: 16 public:
17 ~SkANGLEGLContext() override; 17 ~SkCommandBufferGLContext() override;
18 18
19 static SkANGLEGLContext* Create(GrGLStandard forcedGpuAPI) { 19 static SkCommandBufferGLContext* Create(GrGLStandard forcedGpuAPI) {
20 if (kGL_GrGLStandard == forcedGpuAPI) { 20 if (kGL_GrGLStandard == forcedGpuAPI) {
21 return NULL; 21 return NULL;
22 } 22 }
23 SkANGLEGLContext* ctx = SkNEW(SkANGLEGLContext); 23 SkCommandBufferGLContext* ctx = SkNEW(SkCommandBufferGLContext);
24 if (!ctx->isValid()) { 24 if (!ctx->isValid()) {
25 SkDELETE(ctx); 25 SkDELETE(ctx);
26 return NULL; 26 return NULL;
27 } 27 }
28 return ctx; 28 return ctx;
29 } 29 }
30 30
31 // The param is an EGLNativeDisplayType and the return is an EGLDispay.
32 static void* GetD3DEGLDisplay(void* nativeDisplay);
33
34 private: 31 private:
35 SkANGLEGLContext(); 32 SkCommandBufferGLContext();
36 void destroyGLContext(); 33 void destroyGLContext();
37 34
38 void onPlatformMakeCurrent() const override; 35 void onPlatformMakeCurrent() const override;
39 void onPlatformSwapBuffers() const override; 36 void onPlatformSwapBuffers() const override;
40 GrGLFuncPtr onPlatformGetProcAddress(const char* name) const override; 37 GrGLFuncPtr onPlatformGetProcAddress(const char* name) const override;
41 38
42 void* fContext; 39 void* fContext;
43 void* fDisplay; 40 void* fDisplay;
44 void* fSurface; 41 void* fSurface;
45 }; 42 };
46 43
47 #endif 44 #endif // SK_COMMAND_BUFFER
48 45
49 #endif 46 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698