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

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

Issue 1733323002: Clean up EGL thread state at thread exit in nanobench and DM (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fix main thread usage also Created 4 years, 9 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
« no previous file with comments | « include/gpu/gl/SkGLContext.h ('k') | include/gpu/gl/command_buffer/SkCommandBufferGLContext.h » ('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
(...skipping 24 matching lines...) Expand all
35 } 35 }
36 36
37 GrEGLImage texture2DToEGLImage(GrGLuint texID) const override; 37 GrEGLImage texture2DToEGLImage(GrGLuint texID) const override;
38 void destroyEGLImage(GrEGLImage) const override; 38 void destroyEGLImage(GrEGLImage) const override;
39 GrGLuint eglImageToExternalTexture(GrEGLImage) const override; 39 GrGLuint eglImageToExternalTexture(GrEGLImage) const override;
40 SkGLContext* createNew() const override; 40 SkGLContext* createNew() const override;
41 41
42 // The param is an EGLNativeDisplayType and the return is an EGLDispay. 42 // The param is an EGLNativeDisplayType and the return is an EGLDispay.
43 static void* GetD3DEGLDisplay(void* nativeDisplay, bool useGLBackend); 43 static void* GetD3DEGLDisplay(void* nativeDisplay, bool useGLBackend);
44 44
45 static void ReleaseGpuAPIsInThread();
45 private: 46 private:
46 SkANGLEGLContext(bool preferGLBackend); 47 SkANGLEGLContext(bool preferGLBackend);
47 void destroyGLContext(); 48 void destroyGLContext();
48 49
49 void onPlatformMakeCurrent() const override; 50 void onPlatformMakeCurrent() const override;
50 void onPlatformSwapBuffers() const override; 51 void onPlatformSwapBuffers() const override;
51 GrGLFuncPtr onPlatformGetProcAddress(const char* name) const override; 52 GrGLFuncPtr onPlatformGetProcAddress(const char* name) const override;
52 53
53 void* fContext; 54 void* fContext;
54 void* fDisplay; 55 void* fDisplay;
55 void* fSurface; 56 void* fSurface;
56 bool fIsGLBackend; 57 bool fIsGLBackend;
57 }; 58 };
58 59
59 #endif 60 #endif
60 61
61 #endif 62 #endif
OLDNEW
« no previous file with comments | « include/gpu/gl/SkGLContext.h ('k') | include/gpu/gl/command_buffer/SkCommandBufferGLContext.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698