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 SkGr_DEFINED | 8 #ifndef SkGr_DEFINED |
9 #define SkGr_DEFINED | 9 #define SkGr_DEFINED |
10 | 10 |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 SkGetPackedA32(c)); | 64 SkGetPackedA32(c)); |
65 } | 65 } |
66 | 66 |
67 //////////////////////////////////////////////////////////////////////////////// | 67 //////////////////////////////////////////////////////////////////////////////// |
68 /** Returns a texture representing the bitmap that is compatible with the GrText
ureParams. The | 68 /** Returns a texture representing the bitmap that is compatible with the GrText
ureParams. The |
69 texture is inserted into the cache (unless the bitmap is marked volatile) an
d can be | 69 texture is inserted into the cache (unless the bitmap is marked volatile) an
d can be |
70 retrieved again via this function. */ | 70 retrieved again via this function. */ |
71 GrTexture* GrRefCachedBitmapTexture(GrContext*, const SkBitmap&, const GrTexture
Params&, | 71 GrTexture* GrRefCachedBitmapTexture(GrContext*, const SkBitmap&, const GrTexture
Params&, |
72 SkSourceGammaTreatment); | 72 SkSourceGammaTreatment); |
73 | 73 |
| 74 sk_sp<GrTexture> GrMakeCachedBitmapTexture(GrContext*, const SkBitmap&, const Gr
TextureParams&, |
| 75 SkSourceGammaTreatment); |
| 76 |
74 // TODO: Move SkImageInfo2GrPixelConfig to SkGrPriv.h (requires cleanup to SkWin
dow its subclasses). | 77 // TODO: Move SkImageInfo2GrPixelConfig to SkGrPriv.h (requires cleanup to SkWin
dow its subclasses). |
75 GrPixelConfig SkImageInfo2GrPixelConfig(SkColorType, SkAlphaType, const SkColorS
pace*, | 78 GrPixelConfig SkImageInfo2GrPixelConfig(SkColorType, SkAlphaType, const SkColorS
pace*, |
76 const GrCaps&); | 79 const GrCaps&); |
77 | 80 |
78 static inline GrPixelConfig SkImageInfo2GrPixelConfig(const SkImageInfo& info, c
onst GrCaps& caps) { | 81 static inline GrPixelConfig SkImageInfo2GrPixelConfig(const SkImageInfo& info, c
onst GrCaps& caps) { |
79 return SkImageInfo2GrPixelConfig(info.colorType(), info.alphaType(), info.co
lorSpace(), caps); | 82 return SkImageInfo2GrPixelConfig(info.colorType(), info.alphaType(), info.co
lorSpace(), caps); |
80 } | 83 } |
81 | 84 |
82 GrTextureParams::FilterMode GrSkFilterQualityToGrFilterMode(SkFilterQuality pain
tFilterQuality, | 85 GrTextureParams::FilterMode GrSkFilterQualityToGrFilterMode(SkFilterQuality pain
tFilterQuality, |
83 const SkMatrix& view
M, | 86 const SkMatrix& view
M, |
84 const SkMatrix& loca
lM, | 87 const SkMatrix& loca
lM, |
85 bool* doBicubic); | 88 bool* doBicubic); |
86 | 89 |
87 #endif | 90 #endif |
OLD | NEW |