blob: 17625c4e4eb42679f9923c3256082b81ccb3a653 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
reed@google.comac10a2d2010-12-22 21:39:39 +00002/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00003 * Copyright 2010 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
reed@google.comac10a2d2010-12-22 21:39:39 +00007 */
8
reed@google.comac10a2d2010-12-22 21:39:39 +00009#ifndef SkGr_DEFINED
10#define SkGr_DEFINED
11
bsalomonf276ac52015-10-09 13:36:42 -070012#include "GrColor.h"
joshualitt9bc39542015-08-12 12:57:54 -070013#include "GrTextureAccess.h"
bsalomonf276ac52015-10-09 13:36:42 -070014#include "SkColor.h"
15#include "SkColorPriv.h"
16#include "SkFilterQuality.h"
17#include "SkImageInfo.h"
reed@google.comac10a2d2010-12-22 21:39:39 +000018
bsalomonf276ac52015-10-09 13:36:42 -070019class GrContext;
20class GrTexture;
21class GrTextureParams;
22class SkBitmap;
reed@google.comac10a2d2010-12-22 21:39:39 +000023
reed@google.comac10a2d2010-12-22 21:39:39 +000024////////////////////////////////////////////////////////////////////////////////
25// Sk to Gr Type conversions
26
bsalomonf1b7a1d2015-09-28 06:26:28 -070027static inline GrColor SkColorToPremulGrColor(SkColor c) {
rileya@google.com24f3ad12012-07-18 21:47:40 +000028 SkPMColor pm = SkPreMultiplyColor(c);
29 unsigned r = SkGetPackedR32(pm);
30 unsigned g = SkGetPackedG32(pm);
31 unsigned b = SkGetPackedB32(pm);
32 unsigned a = SkGetPackedA32(pm);
33 return GrColorPackRGBA(r, g, b, a);
34}
35
bsalomonf1b7a1d2015-09-28 06:26:28 -070036static inline GrColor SkColorToUnpremulGrColor(SkColor c) {
37 unsigned r = SkColorGetR(c);
38 unsigned g = SkColorGetG(c);
39 unsigned b = SkColorGetB(c);
40 unsigned a = SkColorGetA(c);
41 return GrColorPackRGBA(r, g, b, a);
42}
43
44static inline GrColor SkColorToOpaqueGrColor(SkColor c) {
45 unsigned r = SkColorGetR(c);
46 unsigned g = SkColorGetG(c);
47 unsigned b = SkColorGetB(c);
48 return GrColorPackRGBA(r, g, b, 0xFF);
49}
50
51/** Replicates the SkColor's alpha to all four channels of the GrColor. */
52static inline GrColor SkColorAlphaToGrColor(SkColor c) {
dandov9de5b512014-06-10 14:38:28 -070053 U8CPU a = SkColorGetA(c);
54 return GrColorPackRGBA(a, a, a, a);
55}
56
bsalomonae4738f2015-09-15 15:33:27 -070057static inline SkPMColor GrColorToSkPMColor(GrColor c) {
58 GrColorIsPMAssert(c);
59 return SkPackARGB32(GrColorUnpackA(c), GrColorUnpackR(c), GrColorUnpackG(c), GrColorUnpackB(c));
60}
61
62static inline GrColor SkPMColorToGrColor(SkPMColor c) {
63 return GrColorPackRGBA(SkGetPackedR32(c), SkGetPackedG32(c), SkGetPackedB32(c),
64 SkGetPackedA32(c));
65}
66
rileya@google.com24f3ad12012-07-18 21:47:40 +000067////////////////////////////////////////////////////////////////////////////////
bsalomon045802d2015-10-20 07:58:01 -070068/** Returns a texture representing the bitmap that is compatible with the GrTextureParams. The
69 texture is inserted into the cache (unless the bitmap is marked volatile) and can be
70 retrieved again via this function. */
Brian Salomonbc0bcc02015-10-19 15:12:32 -040071GrTexture* GrRefCachedBitmapTexture(GrContext*, const SkBitmap&, const GrTextureParams&);
bsalomon045802d2015-10-20 07:58:01 -070072
bsalomonf276ac52015-10-09 13:36:42 -070073// TODO: Move SkImageInfo2GrPixelConfig to SkGrPriv.h (requires cleanup to SkWindow its subclasses).
74GrPixelConfig SkImageInfo2GrPixelConfig(SkColorType, SkAlphaType, SkColorProfileType);
75
76static inline GrPixelConfig SkImageInfo2GrPixelConfig(const SkImageInfo& info) {
77 return SkImageInfo2GrPixelConfig(info.colorType(), info.alphaType(), info.profileType());
78}
79
80GrTextureParams::FilterMode GrSkFilterQualityToGrFilterMode(SkFilterQuality paintFilterQuality,
81 const SkMatrix& viewM,
82 const SkMatrix& localM,
83 bool* doBicubic);
reed43fe6182015-09-08 08:37:36 -070084
reed@google.comac10a2d2010-12-22 21:39:39 +000085////////////////////////////////////////////////////////////////////////////////
commit-bot@chromium.org8dcff642014-05-15 20:32:48 +000086
reed8b26b992015-05-07 15:36:17 -070087SkImageInfo GrMakeInfoFromTexture(GrTexture* tex, int w, int h, bool isOpaque);
88
89// Using the dreaded SkGrPixelRef ...
bsalomoncb1ccfd2015-09-09 14:51:52 -070090SK_API void GrWrapTextureInBitmap(GrTexture* src, int w, int h, bool isOpaque,
91 SkBitmap* dst);
reed8b26b992015-05-07 15:36:17 -070092
reed@google.comac10a2d2010-12-22 21:39:39 +000093#endif