| OLD | NEW |
| 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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 /** | 197 /** |
| 198 * Create both a GrRenderTarget and a matching GrDrawContext to wrap it. | 198 * Create both a GrRenderTarget and a matching GrDrawContext to wrap it. |
| 199 * The created GrRenderTarget will always be budgeted. | 199 * The created GrRenderTarget will always be budgeted. |
| 200 */ | 200 */ |
| 201 sk_sp<GrDrawContext> newDrawContext(SkBackingFit fit, | 201 sk_sp<GrDrawContext> newDrawContext(SkBackingFit fit, |
| 202 int width, int height, | 202 int width, int height, |
| 203 GrPixelConfig config, | 203 GrPixelConfig config, |
| 204 int sampleCnt = 0, | 204 int sampleCnt = 0, |
| 205 GrSurfaceOrigin origin = kDefault_GrSurf
aceOrigin, | 205 GrSurfaceOrigin origin = kDefault_GrSurf
aceOrigin); |
| 206 const SkSurfaceProps* surfaceProps = nul
lptr); | |
| 207 | 206 |
| 208 /////////////////////////////////////////////////////////////////////////// | 207 /////////////////////////////////////////////////////////////////////////// |
| 209 // Misc. | 208 // Misc. |
| 210 | 209 |
| 211 /** | 210 /** |
| 212 * Flags that affect flush() behavior. | 211 * Flags that affect flush() behavior. |
| 213 */ | 212 */ |
| 214 enum FlushBits { | 213 enum FlushBits { |
| 215 /** | 214 /** |
| 216 * A client may reach a point where it has partially rendered a frame | 215 * A client may reach a point where it has partially rendered a frame |
| (...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 497 SkAutoTUnref<const GrCaps> fCaps; | 496 SkAutoTUnref<const GrCaps> fCaps; |
| 498 uint32_t fContextUniqueID; | 497 uint32_t fContextUniqueID; |
| 499 | 498 |
| 500 friend class GrContext; | 499 friend class GrContext; |
| 501 friend class SkImage; | 500 friend class SkImage; |
| 502 | 501 |
| 503 typedef SkRefCnt INHERITED; | 502 typedef SkRefCnt INHERITED; |
| 504 }; | 503 }; |
| 505 | 504 |
| 506 #endif | 505 #endif |
| OLD | NEW |