| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 1 | /* |
| 2 | Copyright 2010 Google Inc. |
| 3 | |
| 4 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | you may not use this file except in compliance with the License. |
| 6 | You may obtain a copy of the License at |
| 7 | |
| 8 | http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | Unless required by applicable law or agreed to in writing, software |
| 11 | distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | See the License for the specific language governing permissions and |
| 14 | limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | |
| 18 | #ifndef SkGr_DEFINED |
| 19 | #define SkGr_DEFINED |
| 20 | |
| 21 | #include <stddef.h> |
| 22 | |
| bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 23 | // Gr headers |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 24 | #include "GrConfig.h" |
| 25 | #include "GrContext.h" |
| 26 | #include "GrFontScaler.h" |
| 27 | #include "GrPathIter.h" |
| 28 | #include "GrClipIterator.h" |
| 29 | |
| 30 | // skia headers |
| 31 | #include "SkBitmap.h" |
| 32 | #include "SkPath.h" |
| 33 | #include "SkPoint.h" |
| 34 | #include "SkRegion.h" |
| 35 | #include "SkShader.h" |
| bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 36 | #include "SkClipStack.h" |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 37 | |
| 38 | #if (GR_DEBUG && defined(SK_RELEASE)) || (GR_RELEASE && defined(SK_DEBUG)) |
| 39 | // #error "inconsistent GR_DEBUG and SK_DEBUG" |
| 40 | #endif |
| 41 | |
| 42 | #if GR_SCALAR_IS_FIXED |
| 43 | #ifdef SK_SCALAR_IS_FIXED |
| 44 | #define SK_SCALAR_IS_GR_SCALAR 1 |
| 45 | #else |
| 46 | #define SK_SCALAR_IS_GR_SCALAR 0 |
| 47 | #endif |
| 48 | #define SkScalarToGrScalar(x) SkScalarToFixed(x) |
| 49 | |
| 50 | #elif GR_SCALAR_IS_FLOAT |
| 51 | |
| 52 | #ifdef SK_SCALAR_IS_FLOAT |
| 53 | #define SK_SCALAR_IS_GR_SCALAR 1 |
| 54 | #else |
| 55 | #define SK_SCALAR_IS_GR_SCALAR 0 |
| 56 | #endif |
| 57 | #define SkScalarToGrScalar(x) SkScalarToFloat(x) |
| 58 | |
| bsalomon@google.com | 5782d71 | 2011-01-21 21:03:59 +0000 | [diff] [blame] | 59 | #else |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 60 | #error "Ganesh scalar type not defined" |
| 61 | #endif |
| 62 | |
| 63 | //////////////////////////////////////////////////////////////////////////////// |
| 64 | // Sk to Gr Type conversions |
| 65 | |
| 66 | // Verify that SkPoint and GrPoint are compatible if using the same scalar type |
| 67 | #if 0/*SK_SCALAR_IS_GR_SCALAR*/ |
| 68 | GR_STATIC_ASSERT(sizeof(SkPoint) == sizeof(GrPoint)); |
| 69 | GR_STATIC_ASSERT(offsetof(SkPoint,fX) == offsetof(GrPoint,fX))); |
| 70 | GR_STATIC_ASSERT(offsetof(SkPoint,fY) == offsetof(GrPoint,fY))); |
| 71 | #endif |
| 72 | |
| 73 | GR_STATIC_ASSERT((int)GrSamplerState::kClamp_WrapMode == (int)SkShader::kClamp_TileMode); |
| 74 | GR_STATIC_ASSERT((int)GrSamplerState::kRepeat_WrapMode ==( |
| 75 | int)SkShader::kRepeat_TileMode); |
| bsalomon@google.com | 5782d71 | 2011-01-21 21:03:59 +0000 | [diff] [blame] | 76 | GR_STATIC_ASSERT((int)GrSamplerState::kMirror_WrapMode == |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 77 | (int)SkShader::kMirror_TileMode); |
| 78 | |
| 79 | #define sk_tile_mode_to_grwrap(X) ((GrSamplerState::WrapMode)(X)) |
| 80 | |
| bsalomon@google.com | ffca400 | 2011-02-22 20:34:01 +0000 | [diff] [blame] | 81 | GR_STATIC_ASSERT((int)kZero_BlendCoeff == (int)SkXfermode::kZero_Coeff); |
| 82 | GR_STATIC_ASSERT((int)kOne_BlendCoeff == (int)SkXfermode::kOne_Coeff); |
| 83 | GR_STATIC_ASSERT((int)kSC_BlendCoeff == (int)SkXfermode::kSC_Coeff); |
| 84 | GR_STATIC_ASSERT((int)kISC_BlendCoeff == (int)SkXfermode::kISC_Coeff); |
| 85 | GR_STATIC_ASSERT((int)kDC_BlendCoeff == (int)SkXfermode::kDC_Coeff); |
| 86 | GR_STATIC_ASSERT((int)kIDC_BlendCoeff == (int)SkXfermode::kIDC_Coeff); |
| 87 | GR_STATIC_ASSERT((int)kSA_BlendCoeff == (int)SkXfermode::kSA_Coeff); |
| 88 | GR_STATIC_ASSERT((int)kISA_BlendCoeff == (int)SkXfermode::kISA_Coeff); |
| 89 | GR_STATIC_ASSERT((int)kDA_BlendCoeff == (int)SkXfermode::kDA_Coeff); |
| 90 | GR_STATIC_ASSERT((int)kIDA_BlendCoeff == (int)SkXfermode::kIDA_Coeff); |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 91 | |
| bsalomon@google.com | ffca400 | 2011-02-22 20:34:01 +0000 | [diff] [blame] | 92 | #define sk_blend_to_grblend(X) ((GrBlendCoeff)(X)) |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 93 | |
| bsalomon@google.com | 5aaa69e | 2011-03-04 20:29:08 +0000 | [diff] [blame] | 94 | GR_STATIC_ASSERT((int)SkPath::kMove_Verb == (int)kMove_PathCmd); |
| 95 | GR_STATIC_ASSERT((int)SkPath::kLine_Verb == (int)kLine_PathCmd); |
| 96 | GR_STATIC_ASSERT((int)SkPath::kQuad_Verb == (int)kQuadratic_PathCmd); |
| 97 | GR_STATIC_ASSERT((int)SkPath::kCubic_Verb == (int)kCubic_PathCmd); |
| 98 | GR_STATIC_ASSERT((int)SkPath::kClose_Verb == (int)kClose_PathCmd); |
| 99 | GR_STATIC_ASSERT((int)SkPath::kDone_Verb == (int)kEnd_PathCmd); |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 100 | |
| bsalomon@google.com | 5aaa69e | 2011-03-04 20:29:08 +0000 | [diff] [blame] | 101 | #define sk_path_verb_to_gr_path_command(X) ((GrPathCmd)(X)) |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 102 | |
| 103 | /////////////////////////////////////////////////////////////////////////////// |
| 104 | |
| 105 | #include "SkColorPriv.h" |
| 106 | |
| 107 | static inline GrRect Sk2Gr(const SkRect& src) { |
| 108 | return GrRect(SkScalarToGrScalar(src.fLeft), |
| 109 | SkScalarToGrScalar(src.fTop), |
| 110 | SkScalarToGrScalar(src.fRight), |
| 111 | SkScalarToGrScalar(src.fBottom)); |
| 112 | } |
| 113 | |
| 114 | class SkGr { |
| 115 | public: |
| 116 | static inline SkIRect& SetIRect(SkIRect* dst, const GrIRect& src) { |
| 117 | GR_STATIC_ASSERT(sizeof(*dst) == sizeof(src)); |
| 118 | memcpy(dst, &src, sizeof(*dst)); |
| 119 | return *dst; |
| 120 | } |
| bsalomon@google.com | 5782d71 | 2011-01-21 21:03:59 +0000 | [diff] [blame] | 121 | |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 122 | static inline GrIRect& SetIRect(GrIRect* dst, const SkIRect& src) { |
| 123 | GR_STATIC_ASSERT(sizeof(*dst) == sizeof(src)); |
| 124 | memcpy(dst, &src, sizeof(*dst)); |
| 125 | return *dst; |
| 126 | } |
| bsalomon@google.com | 5782d71 | 2011-01-21 21:03:59 +0000 | [diff] [blame] | 127 | |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 128 | /** |
| 129 | * Convert the SkBitmap::Config to the corresponding PixelConfig, or |
| 130 | * kUnknown_PixelConfig if the conversion cannot be done. |
| 131 | */ |
| bsalomon@google.com | 669fdc4 | 2011-04-05 17:08:27 +0000 | [diff] [blame^] | 132 | static GrPixelConfig BitmapConfig2PixelConfig(SkBitmap::Config, |
| 133 | bool isOpaque); |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 134 | |
| bsalomon@google.com | 669fdc4 | 2011-04-05 17:08:27 +0000 | [diff] [blame^] | 135 | static GrPixelConfig Bitmap2PixelConfig(const SkBitmap& bm) { |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 136 | return BitmapConfig2PixelConfig(bm.config(), bm.isOpaque()); |
| 137 | } |
| 138 | |
| 139 | static void SkMatrix2GrMatrix(const SkMatrix& m, GrMatrix* g) { |
| 140 | g->setAll(SkScalarToGrScalar(m[0]), |
| 141 | SkScalarToGrScalar(m[1]), |
| 142 | SkScalarToGrScalar(m[2]), |
| 143 | SkScalarToGrScalar(m[3]), |
| 144 | SkScalarToGrScalar(m[4]), |
| 145 | SkScalarToGrScalar(m[5]), |
| 146 | SkScalarToGrScalar(m[6]), |
| 147 | SkScalarToGrScalar(m[7]), |
| 148 | SkScalarToGrScalar(m[8])); |
| 149 | } |
| bsalomon@google.com | 5782d71 | 2011-01-21 21:03:59 +0000 | [diff] [blame] | 150 | |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 151 | static GrColor SkColor2GrColor(SkColor c) { |
| 152 | SkPMColor pm = SkPreMultiplyColor(c); |
| 153 | unsigned r = SkGetPackedR32(pm); |
| 154 | unsigned g = SkGetPackedG32(pm); |
| 155 | unsigned b = SkGetPackedB32(pm); |
| 156 | unsigned a = SkGetPackedA32(pm); |
| 157 | return GrColorPackRGBA(r, g, b, a); |
| 158 | } |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 159 | }; |
| 160 | |
| 161 | //////////////////////////////////////////////////////////////////////////////// |
| 162 | // Classes |
| 163 | |
| 164 | class SkGrPathIter : public GrPathIter { |
| 165 | public: |
| bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 166 | SkGrPathIter() { fPath = NULL; } |
| 167 | SkGrPathIter(const SkPath& path) { reset(path); } |
| bsalomon@google.com | 5aaa69e | 2011-03-04 20:29:08 +0000 | [diff] [blame] | 168 | virtual GrPathCmd next(GrPoint pts[]); |
| 169 | virtual GrPathCmd next(); |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 170 | virtual void rewind(); |
| bsalomon@google.com | bf4338c | 2011-03-04 22:48:25 +0000 | [diff] [blame] | 171 | virtual GrConvexHint convexHint() const; |
| bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 172 | |
| 173 | void reset(const SkPath& path) { |
| 174 | fPath = &path; |
| 175 | fIter.setPath(path, false); |
| 176 | } |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 177 | private: |
| bsalomon@google.com | 5782d71 | 2011-01-21 21:03:59 +0000 | [diff] [blame] | 178 | |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 179 | #if !SK_SCALAR_IS_GR_SCALAR |
| 180 | SkPoint fPoints[4]; |
| 181 | #endif |
| 182 | SkPath::Iter fIter; |
| bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 183 | const SkPath* fPath; |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 184 | }; |
| 185 | |
| 186 | class SkGrClipIterator : public GrClipIterator { |
| 187 | public: |
| bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 188 | SkGrClipIterator() { fClipStack = NULL; fCurr = NULL; } |
| 189 | SkGrClipIterator(const SkClipStack& clipStack) { this->reset(clipStack); } |
| 190 | |
| 191 | void reset(const SkClipStack& clipStack); |
| 192 | |
| 193 | // overrides |
| 194 | virtual bool isDone() const { return NULL == fCurr; } |
| 195 | virtual void next() { fCurr = fIter.next(); } |
| 196 | virtual void rewind() { this->reset(*fClipStack); } |
| 197 | virtual GrClipType getType() const; |
| 198 | |
| 199 | virtual GrSetOp getOp() const; |
| 200 | |
| 201 | virtual void getRect(GrRect* rect) const { |
| scroggo | 7b11807 | 2011-03-23 15:04:26 +0000 | [diff] [blame] | 202 | if (!fCurr->fRect) { |
| 203 | rect->setEmpty(); |
| 204 | } else { |
| 205 | *rect = Sk2Gr(*fCurr->fRect); |
| 206 | } |
| bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 207 | } |
| 208 | |
| 209 | virtual GrPathIter* getPathIter() { |
| 210 | fPathIter.reset(*fCurr->fPath); |
| 211 | return &fPathIter; |
| 212 | } |
| 213 | |
| 214 | virtual GrPathFill getPathFill() const; |
| 215 | |
| 216 | private: |
| 217 | const SkClipStack* fClipStack; |
| 218 | SkClipStack::B2FIter fIter; |
| 219 | SkGrPathIter fPathIter; |
| 220 | // SkClipStack's auto advances on each get |
| 221 | // so we store the current pos here. |
| 222 | const SkClipStack::B2FIter::Clip* fCurr; |
| 223 | }; |
| 224 | |
| 225 | class SkGrRegionIterator : public GrClipIterator { |
| 226 | public: |
| 227 | SkGrRegionIterator() {} |
| 228 | SkGrRegionIterator(const SkRegion& region) { this->reset(region); } |
| 229 | |
| reed@google.com | 98539c6 | 2011-03-15 15:40:16 +0000 | [diff] [blame] | 230 | void reset(const SkRegion& region) { |
| bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 231 | fRegion = ®ion; |
| 232 | fIter.reset(region); |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 233 | } |
| bsalomon@google.com | 5782d71 | 2011-01-21 21:03:59 +0000 | [diff] [blame] | 234 | |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 235 | // overrides |
| bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 236 | virtual bool isDone() const { return fIter.done(); } |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 237 | virtual void next() { fIter.next(); } |
| bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 238 | virtual void rewind() { this->reset(*fRegion); } |
| 239 | virtual GrClipType getType() const { return kRect_ClipType; } |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 240 | |
| bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 241 | virtual GrSetOp getOp() const { return kUnion_SetOp; } |
| 242 | |
| 243 | virtual void getRect(GrRect* rect) const { |
| 244 | const SkIRect& r = fIter.rect(); |
| 245 | rect->fLeft = GrIntToScalar(r.fLeft); |
| 246 | rect->fTop = GrIntToScalar(r.fTop); |
| 247 | rect->fRight = GrIntToScalar(r.fRight); |
| 248 | rect->fBottom = GrIntToScalar(r.fBottom); |
| 249 | } |
| 250 | |
| 251 | virtual GrPathIter* getPathIter() { |
| 252 | SkASSERT(0); |
| 253 | return NULL; |
| 254 | } |
| 255 | |
| 256 | virtual GrPathFill getPathFill() const { |
| 257 | SkASSERT(0); |
| 258 | return kWinding_PathFill; |
| 259 | } |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 260 | private: |
| bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 261 | const SkRegion* fRegion; |
| 262 | SkRegion::Iterator fIter; |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 263 | }; |
| 264 | |
| 265 | class SkGlyphCache; |
| 266 | |
| 267 | class SkGrFontScaler : public GrFontScaler { |
| 268 | public: |
| 269 | explicit SkGrFontScaler(SkGlyphCache* strike); |
| 270 | virtual ~SkGrFontScaler(); |
| 271 | |
| 272 | // overrides |
| 273 | virtual const GrKey* getKey(); |
| reed@google.com | 98539c6 | 2011-03-15 15:40:16 +0000 | [diff] [blame] | 274 | virtual GrMaskFormat getMaskFormat(); |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 275 | virtual bool getPackedGlyphBounds(GrGlyph::PackedID, GrIRect* bounds); |
| 276 | virtual bool getPackedGlyphImage(GrGlyph::PackedID, int width, int height, |
| 277 | int rowBytes, void* image); |
| 278 | virtual bool getGlyphPath(uint16_t glyphID, GrPath*); |
| 279 | |
| 280 | private: |
| 281 | SkGlyphCache* fStrike; |
| 282 | GrKey* fKey; |
| 283 | // DECLARE_INSTANCE_COUNTER(SkGrFontScaler); |
| 284 | }; |
| 285 | |
| 286 | //////////////////////////////////////////////////////////////////////////////// |
| 287 | // Helper functions |
| 288 | |
| bsalomon@google.com | 5782d71 | 2011-01-21 21:03:59 +0000 | [diff] [blame] | 289 | GrTextureEntry* sk_gr_create_bitmap_texture(GrContext* ctx, |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 290 | GrTextureKey* key, |
| 291 | const GrSamplerState& sampler, |
| 292 | const SkBitmap& bitmap); |
| 293 | |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 294 | |
| 295 | #endif |