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

Side by Side Diff: src/gpu/GrContextFactory.h

Issue 1604993005: Add ability to wire up sharelist in glcontext creation (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 11 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
1 /* 1 /*
2 * Copyright 2012 Google Inc. 2 * Copyright 2012 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #ifndef GrContextFactory_DEFINED 8 #ifndef GrContextFactory_DEFINED
9 #define GrContextFactory_DEFINED 9 #define GrContextFactory_DEFINED
10 10
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 : fGrContext(grContext), fGLContext(glContext) { } 113 : fGrContext(grContext), fGLContext(glContext) { }
114 GrContext* fGrContext; 114 GrContext* fGrContext;
115 SkGLContext* fGLContext; //! Valid until the factory destroys it via aba ndonContexts() or 115 SkGLContext* fGLContext; //! Valid until the factory destroys it via aba ndonContexts() or
116 //! destroyContexts(). 116 //! destroyContexts().
117 }; 117 };
118 118
119 /** 119 /**
120 * Get a context initialized with a type of GL context. It also makes the GL context current. 120 * Get a context initialized with a type of GL context. It also makes the GL context current.
121 */ 121 */
122 ContextInfo getContextInfo(GLContextType type, 122 ContextInfo getContextInfo(GLContextType type,
123 GLContextOptions options = kNone_GLContextOptions ); 123 GLContextOptions options = kNone_GLContextOptions ,
124 SkGLContext* shareList = nullptr);
bsalomon 2016/01/19 22:00:57 Does this really need to be part of GrContextFacto
joshualitt 2016/01/20 14:36:56 Acknowledged.
124 /** 125 /**
125 * Get a GrContext initialized with a type of GL context. It also makes the GL context current. 126 * Get a GrContext initialized with a type of GL context. It also makes the GL context current.
126 */ 127 */
127 GrContext* get(GLContextType type, 128 GrContext* get(GLContextType type,
128 GLContextOptions options = kNone_GLContextOptions) { 129 GLContextOptions options = kNone_GLContextOptions) {
129 return this->getContextInfo(type, options).fGrContext; 130 return this->getContextInfo(type, options).fGrContext;
130 } 131 }
131 const GrContextOptions& getGlobalOptions() const { return fGlobalOptions; } 132 const GrContextOptions& getGlobalOptions() const { return fGlobalOptions; }
132 133
133 private: 134 private:
134 struct Context { 135 struct Context {
135 GLContextType fType; 136 GLContextType fType;
136 GLContextOptions fOptions; 137 GLContextOptions fOptions;
137 SkGLContext* fGLContext; 138 SkGLContext* fGLContext;
138 GrContext* fGrContext; 139 GrContext* fGrContext;
139 }; 140 };
140 SkTArray<Context, true> fContexts; 141 SkTArray<Context, true> fContexts;
141 const GrContextOptions fGlobalOptions; 142 const GrContextOptions fGlobalOptions;
142 }; 143 };
143 144
144 #endif 145 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698