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

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

Issue 1490113005: Add config options to run different GPU APIs to dm and nanobench (Closed) Base URL: https://skia.googlesource.com/skia.git@commandbuffer-as-api-03-context-factory-glcontext-type
Patch Set: Created 4 years, 12 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 | « src/gpu/gl/debug/SkDebugGLContext.h ('k') | tests/GLProgramsTest.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 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() {
23 if (kGLES_GrGLStandard == forcedGpuAPI) {
24 return nullptr;
25 }
26 SkMesaGLContext* ctx = new SkMesaGLContext; 23 SkMesaGLContext* ctx = new SkMesaGLContext;
27 if (!ctx->isValid()) { 24 if (!ctx->isValid()) {
28 delete ctx; 25 delete ctx;
29 return nullptr; 26 return nullptr;
30 } 27 }
31 return ctx; 28 return ctx;
32 } 29 }
33 30
34 private: 31 private:
35 SkMesaGLContext(); 32 SkMesaGLContext();
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*) const override; 37 GrGLFuncPtr onPlatformGetProcAddress(const char*) const override;
41 38
42 Context fContext; 39 Context fContext;
43 GrGLubyte *fImage; 40 GrGLubyte *fImage;
44 }; 41 };
45 42
46 #endif 43 #endif
47 44
48 #endif 45 #endif
OLDNEW
« no previous file with comments | « src/gpu/gl/debug/SkDebugGLContext.h ('k') | tests/GLProgramsTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698