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

Side by Side Diff: include/gpu/GrContext.h

Issue 1944953002: Revert of Add Gr*Proxy classes (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 7 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/core/SkTypes.h ('k') | include/gpu/GrRenderTarget.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 * Copyright 2010 Google Inc. 2 * Copyright 2010 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 GrContext_DEFINED 8 #ifndef GrContext_DEFINED
9 #define GrContext_DEFINED 9 #define GrContext_DEFINED
10 10
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 * Callers assume the creation ref of the drawContext 187 * Callers assume the creation ref of the drawContext
188 * NULL will be returned if the context has been abandoned. 188 * NULL will be returned if the context has been abandoned.
189 * 189 *
190 * @param rt the render target receiving the draws 190 * @param rt the render target receiving the draws
191 * @param surfaceProps the surface properties (mainly defines text drawing) 191 * @param surfaceProps the surface properties (mainly defines text drawing)
192 * 192 *
193 * @return a draw context 193 * @return a draw context
194 */ 194 */
195 sk_sp<GrDrawContext> drawContext(sk_sp<GrRenderTarget> rt, const SkSurfacePr ops* = nullptr); 195 sk_sp<GrDrawContext> drawContext(sk_sp<GrRenderTarget> rt, const SkSurfacePr ops* = nullptr);
196 196
197 enum BackingFit {
198 kTight_BackingFit,
199 kLoose_BackingFit
200 };
201
197 /** 202 /**
198 * Create both a GrRenderTarget and a matching GrDrawContext to wrap it. 203 * Create both a GrRenderTarget and a matching GrDrawContext to wrap it.
199 * The created GrRenderTarget will always be budgeted. 204 * The created GrRenderTarget will always be budgeted.
200 */ 205 */
201 sk_sp<GrDrawContext> newDrawContext(SkBackingFit fit, 206 sk_sp<GrDrawContext> newDrawContext(BackingFit fit,
202 int width, int height, 207 int width, int height,
203 GrPixelConfig config, 208 GrPixelConfig config,
204 int sampleCnt = 0, 209 int sampleCnt = 0,
205 GrSurfaceOrigin origin = kDefault_GrSurf aceOrigin); 210 GrSurfaceOrigin origin = kDefault_GrSurf aceOrigin);
206 211
207 /////////////////////////////////////////////////////////////////////////// 212 ///////////////////////////////////////////////////////////////////////////
208 // Misc. 213 // Misc.
209 214
210 /** 215 /**
211 * Flags that affect flush() behavior. 216 * Flags that affect flush() behavior.
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after
488 SkAutoTUnref<const GrCaps> fCaps; 493 SkAutoTUnref<const GrCaps> fCaps;
489 uint32_t fContextUniqueID; 494 uint32_t fContextUniqueID;
490 495
491 friend class GrContext; 496 friend class GrContext;
492 friend class SkImage; 497 friend class SkImage;
493 498
494 typedef SkRefCnt INHERITED; 499 typedef SkRefCnt INHERITED;
495 }; 500 };
496 501
497 #endif 502 #endif
OLDNEW
« no previous file with comments | « include/core/SkTypes.h ('k') | include/gpu/GrRenderTarget.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698