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

Side by Side Diff: include/gpu/gl/angle/SkANGLEGLContext.h

Issue 1459323004: Revert of Initial version of external_oes texture support and unit test (Closed) Base URL: https://skia.googlesource.com/skia.git@target
Patch Set: Created 5 years, 1 month 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
« no previous file with comments | « include/gpu/gl/SkGLContext.h ('k') | src/gpu/GrResourceProvider.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 1
2 /* 2 /*
3 * Copyright 2012 Google Inc. 3 * Copyright 2012 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 SkANGLEGLContext_DEFINED
9 #define SkANGLEGLContext_DEFINED 9 #define SkANGLEGLContext_DEFINED
10 10
11 #if SK_ANGLE 11 #if SK_ANGLE
12 12
13 #include "gl/SkGLContext.h" 13 #include "gl/SkGLContext.h"
14 14
15 class SkANGLEGLContext : public SkGLContext { 15 class SkANGLEGLContext : public SkGLContext {
16 public: 16 public:
17 ~SkANGLEGLContext() override; 17 ~SkANGLEGLContext() override;
18 18
19 static SkANGLEGLContext* Create(GrGLStandard forcedGpuAPI, bool useGLBackend ) { 19 static SkANGLEGLContext* Create(GrGLStandard forcedGpuAPI, bool useGLBackend ) {
20 if (kGL_GrGLStandard == forcedGpuAPI) { 20 if (kGL_GrGLStandard == forcedGpuAPI) {
21 return NULL; 21 return NULL;
22 } 22 }
23 SkANGLEGLContext* ctx = new SkANGLEGLContext(useGLBackend); 23 SkANGLEGLContext* ctx = new SkANGLEGLContext(useGLBackend);
24 if (!ctx->isValid()) { 24 if (!ctx->isValid()) {
25 delete ctx; 25 delete ctx;
26 return NULL; 26 return NULL;
27 } 27 }
28 return ctx; 28 return ctx;
29 } 29 }
30 GrEGLImage texture2DToEGLImage(GrGLuint texID) const override;
31 void destroyEGLImage(GrEGLImage) const override;
32 GrGLuint eglImageToExternalTexture(GrEGLImage) const override;
33 SkGLContext* createNew() const override;
34 30
35 // The param is an EGLNativeDisplayType and the return is an EGLDispay. 31 // The param is an EGLNativeDisplayType and the return is an EGLDispay.
36 static void* GetD3DEGLDisplay(void* nativeDisplay, bool useGLBackend); 32 static void* GetD3DEGLDisplay(void* nativeDisplay, bool useGLBackend);
37 33
38 private: 34 private:
39 SkANGLEGLContext(bool preferGLBackend); 35 SkANGLEGLContext(bool preferGLBackend);
40 void destroyGLContext(); 36 void destroyGLContext();
41 37
42 void onPlatformMakeCurrent() const override; 38 void onPlatformMakeCurrent() const override;
43 void onPlatformSwapBuffers() const override; 39 void onPlatformSwapBuffers() const override;
44 GrGLFuncPtr onPlatformGetProcAddress(const char* name) const override; 40 GrGLFuncPtr onPlatformGetProcAddress(const char* name) const override;
45 41
46 void* fContext; 42 void* fContext;
47 void* fDisplay; 43 void* fDisplay;
48 void* fSurface; 44 void* fSurface;
49 bool fIsGLBackend;
50 }; 45 };
51 46
52 #endif 47 #endif
53 48
54 #endif 49 #endif
OLDNEW
« no previous file with comments | « include/gpu/gl/SkGLContext.h ('k') | src/gpu/GrResourceProvider.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698