blob: 333afd29f6b71b0346079346ded27307bc673f4a [file] [log] [blame]
bsalomon@google.com7361f542012-04-19 19:15:35 +00001/*
2 * Copyright 2012 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef GrContextFactory_DEFINED
9#define GrContextFactory_DEFINED
10
11#if SK_ANGLE
12 #include "gl/SkANGLEGLContext.h"
13#endif
14#include "gl/SkDebugGLContext.h"
15#if SK_MESA
16 #include "gl/SkMesaGLContext.h"
17#endif
18#include "gl/SkNativeGLContext.h"
19#include "gl/SkNullGLContext.h"
20
21#include "GrContext.h"
robertphillips@google.coma2d71482012-08-01 20:08:47 +000022#include "SkTArray.h"
bsalomon@google.com7361f542012-04-19 19:15:35 +000023
24/**
rmistry@google.comfbfcd562012-08-23 18:09:54 +000025 * This is a simple class that is useful in test apps that use different
bsalomon@google.com7361f542012-04-19 19:15:35 +000026 * GrContexts backed by different types of GL contexts. It manages creating the
27 * GL context and a GrContext that uses it. The GL/Gr contexts persist until the
28 * factory is destroyed (though the caller can always grab a ref on the returned
commit-bot@chromium.orgd8ed8512014-01-24 20:49:44 +000029 * Gr and GL contexts to make them outlive the factory).
bsalomon@google.com7361f542012-04-19 19:15:35 +000030 */
commit-bot@chromium.orga0b40282013-09-18 13:00:55 +000031class GrContextFactory : public SkNoncopyable {
bsalomon@google.com7361f542012-04-19 19:15:35 +000032public:
33 /**
commit-bot@chromium.orgd8ed8512014-01-24 20:49:44 +000034 * Types of GL contexts supported. For historical and testing reasons the native GrContext will
35 * not use "GL_NV_path_rendering" even when the driver supports it. There is a separate context
36 * type that does not remove NVPR support and which will fail when the driver does not support
37 * the extension.
bsalomon@google.com7361f542012-04-19 19:15:35 +000038 */
39 enum GLContextType {
40 kNative_GLContextType,
41#if SK_ANGLE
42 kANGLE_GLContextType,
43#endif
44#if SK_MESA
45 kMESA_GLContextType,
46#endif
commit-bot@chromium.orgd8ed8512014-01-24 20:49:44 +000047 /** Similar to kNative but does not filter NVPR. It will fail if the GL driver does not
48 support NVPR */
49 kNVPR_GLContextType,
bsalomon@google.com7361f542012-04-19 19:15:35 +000050 kNull_GLContextType,
51 kDebug_GLContextType,
bsalomon@google.com67b915d2013-02-04 16:13:32 +000052
53 kLastGLContextType = kDebug_GLContextType
bsalomon@google.com7361f542012-04-19 19:15:35 +000054 };
55
bsalomon@google.com67b915d2013-02-04 16:13:32 +000056 static const int kGLContextTypeCnt = kLastGLContextType + 1;
57
58 static bool IsRenderingGLContext(GLContextType type) {
59 switch (type) {
60 case kNull_GLContextType:
61 case kDebug_GLContextType:
62 return false;
63 default:
64 return true;
65 }
66 }
67
bsalomon@google.comcb265352013-02-22 16:13:16 +000068 static const char* GLContextTypeName(GLContextType type) {
69 switch (type) {
70 case kNative_GLContextType:
71 return "native";
72 case kNull_GLContextType:
73 return "null";
74#if SK_ANGLE
75 case kANGLE_GLContextType:
76 return "angle";
77#endif
78#if SK_MESA
79 case kMESA_GLContextType:
80 return "mesa";
81#endif
commit-bot@chromium.orgd8ed8512014-01-24 20:49:44 +000082 case kNVPR_GLContextType:
83 return "nvpr";
bsalomon@google.comcb265352013-02-22 16:13:16 +000084 case kDebug_GLContextType:
85 return "debug";
86 default:
87 GrCrash("Unknown GL Context type.");
88 }
89 }
90
bsalomon@google.com7361f542012-04-19 19:15:35 +000091 GrContextFactory() {
92 }
93
bsalomon@google.com67b915d2013-02-04 16:13:32 +000094 ~GrContextFactory() { this->destroyContexts(); }
95
96 void destroyContexts() {
bsalomon@google.com7361f542012-04-19 19:15:35 +000097 for (int i = 0; i < fContexts.count(); ++i) {
commit-bot@chromium.orgd8ed8512014-01-24 20:49:44 +000098 fContexts[i].fGLContext->makeCurrent();
bsalomon@google.com7361f542012-04-19 19:15:35 +000099 fContexts[i].fGrContext->unref();
100 fContexts[i].fGLContext->unref();
101 }
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000102 fContexts.reset();
bsalomon@google.com7361f542012-04-19 19:15:35 +0000103 }
104
105 /**
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000106 * Get a GrContext initialized with a type of GL context. It also makes the GL context current.
bsalomon@google.com7361f542012-04-19 19:15:35 +0000107 */
108 GrContext* get(GLContextType type) {
109
110 for (int i = 0; i < fContexts.count(); ++i) {
111 if (fContexts[i].fType == type) {
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000112 fContexts[i].fGLContext->makeCurrent();
bsalomon@google.com7361f542012-04-19 19:15:35 +0000113 return fContexts[i].fGrContext;
114 }
115 }
robertphillips@google.com6177e692013-02-28 20:16:25 +0000116 SkAutoTUnref<SkGLContextHelper> glCtx;
bsalomon@google.com7361f542012-04-19 19:15:35 +0000117 SkAutoTUnref<GrContext> grCtx;
118 switch (type) {
commit-bot@chromium.orgd8ed8512014-01-24 20:49:44 +0000119 case kNVPR_GLContextType: // fallthru
bsalomon@google.com7361f542012-04-19 19:15:35 +0000120 case kNative_GLContextType:
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000121 glCtx.reset(SkNEW(SkNativeGLContext));
bsalomon@google.com7361f542012-04-19 19:15:35 +0000122 break;
123#ifdef SK_ANGLE
124 case kANGLE_GLContextType:
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000125 glCtx.reset(SkNEW(SkANGLEGLContext));
bsalomon@google.com7361f542012-04-19 19:15:35 +0000126 break;
127#endif
128#ifdef SK_MESA
129 case kMESA_GLContextType:
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000130 glCtx.reset(SkNEW(SkMesaGLContext));
bsalomon@google.com7361f542012-04-19 19:15:35 +0000131 break;
132#endif
133 case kNull_GLContextType:
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000134 glCtx.reset(SkNEW(SkNullGLContext));
bsalomon@google.com7361f542012-04-19 19:15:35 +0000135 break;
136 case kDebug_GLContextType:
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000137 glCtx.reset(SkNEW(SkDebugGLContext));
bsalomon@google.com7361f542012-04-19 19:15:35 +0000138 break;
139 }
140 static const int kBogusSize = 1;
141 if (!glCtx.get()) {
142 return NULL;
143 }
144 if (!glCtx.get()->init(kBogusSize, kBogusSize)) {
145 return NULL;
146 }
commit-bot@chromium.orgd8ed8512014-01-24 20:49:44 +0000147
148 // Ensure NVPR is available for the NVPR type and block it from other types.
149 SkAutoTUnref<const GrGLInterface> glInterface(SkRef(glCtx.get()->gl()));
150 if (kNVPR_GLContextType == type) {
151 if (!glInterface->hasExtension("GL_NV_path_rendering")) {
152 return NULL;
153 }
154 } else {
155 glInterface.reset(GrGLInterfaceRemoveNVPR(glInterface));
156 if (!glInterface) {
157 return NULL;
158 }
159 }
160
161 glCtx->makeCurrent();
162 GrBackendContext p3dctx = reinterpret_cast<GrBackendContext>(glInterface.get());
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000163 grCtx.reset(GrContext::Create(kOpenGL_GrBackend, p3dctx));
bsalomon@google.com7361f542012-04-19 19:15:35 +0000164 if (!grCtx.get()) {
165 return NULL;
166 }
167 GPUContext& ctx = fContexts.push_back();
168 ctx.fGLContext = glCtx.get();
169 ctx.fGLContext->ref();
170 ctx.fGrContext = grCtx.get();
171 ctx.fGrContext->ref();
172 ctx.fType = type;
173 return ctx.fGrContext;
174 }
keyar@chromium.org5bdef292012-08-14 22:02:48 +0000175
176 // Returns the GLContext of the given type. If it has not been created yet,
177 // NULL is returned instead.
robertphillips@google.com6177e692013-02-28 20:16:25 +0000178 SkGLContextHelper* getGLContext(GLContextType type) {
keyar@chromium.org5bdef292012-08-14 22:02:48 +0000179 for (int i = 0; i < fContexts.count(); ++i) {
180 if (fContexts[i].fType == type) {
181 return fContexts[i].fGLContext;
182 }
183 }
184
185 return NULL;
186 }
187
bsalomon@google.com7361f542012-04-19 19:15:35 +0000188private:
189 struct GPUContext {
190 GLContextType fType;
robertphillips@google.com6177e692013-02-28 20:16:25 +0000191 SkGLContextHelper* fGLContext;
bsalomon@google.com7361f542012-04-19 19:15:35 +0000192 GrContext* fGrContext;
193 };
194 SkTArray<GPUContext, true> fContexts;
195};
196
197#endif