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

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

Issue 1815823002: Move SkGLContext and some GrGLInterface implementations to skgputest module (Closed) Base URL: https://chromium.googlesource.com/skia.git@debugobject
Patch Set: rebase, readd null interface to main lib Created 4 years, 8 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
(Empty)
1
2 /*
3 * Copyright 2011 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
8 #ifndef SkMesaGLContext_DEFINED
9 #define SkMesaGLContext_DEFINED
10
11 #include "gl/SkGLContext.h"
12
13 #if SK_MESA
14
15 class SkMesaGLContext : public SkGLContext {
16 private:
17 typedef intptr_t Context;
18
19 public:
20 ~SkMesaGLContext() override;
21
22 static SkMesaGLContext* Create() {
23 SkMesaGLContext* ctx = new SkMesaGLContext;
24 if (!ctx->isValid()) {
25 delete ctx;
26 return nullptr;
27 }
28 return ctx;
29 }
30
31 private:
32 SkMesaGLContext();
33 void destroyGLContext();
34
35 void onPlatformMakeCurrent() const override;
36 void onPlatformSwapBuffers() const override;
37 GrGLFuncPtr onPlatformGetProcAddress(const char*) const override;
38
39 Context fContext;
40 GrGLubyte *fImage;
41 };
42
43 #endif
44
45 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698