reed@google.com | 58b21ec | 2012-07-30 18:20:12 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2012 Google Inc. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
reed@google.com | 889b09e | 2012-07-27 21:10:42 +0000 | [diff] [blame] | 7 | |
| 8 | #ifndef SkImagePriv_DEFINED |
| 9 | #define SkImagePriv_DEFINED |
| 10 | |
| 11 | #include "SkBitmap.h" |
| 12 | #include "SkImage.h" |
| 13 | |
mike@reedtribe.org | 70e3590 | 2012-07-29 20:38:16 +0000 | [diff] [blame] | 14 | class SkPicture; |
| 15 | |
reed@google.com | 889b09e | 2012-07-27 21:10:42 +0000 | [diff] [blame] | 16 | extern SkBitmap::Config SkImageInfoToBitmapConfig(const SkImage::Info&, |
| 17 | bool* isOpaque); |
| 18 | |
| 19 | extern int SkImageBytesPerPixel(SkImage::ColorType); |
| 20 | |
| 21 | extern bool SkBitmapToImageInfo(const SkBitmap&, SkImage::Info*); |
reed@google.com | 97af1a6 | 2012-08-28 12:19:02 +0000 | [diff] [blame] | 22 | |
| 23 | // Call this if you explicitly want to use/share this pixelRef in the image |
reed@google.com | 889b09e | 2012-07-27 21:10:42 +0000 | [diff] [blame] | 24 | extern SkImage* SkNewImageFromPixelRef(const SkImage::Info&, SkPixelRef*, |
| 25 | size_t rowBytes); |
| 26 | |
| 27 | /** |
| 28 | * Examines the bitmap to decide if it can share the existing pixelRef, or |
reed@google.com | 97af1a6 | 2012-08-28 12:19:02 +0000 | [diff] [blame] | 29 | * if it needs to make a deep-copy of the pixels. The bitmap's pixelref will |
| 30 | * be shared if either the bitmap is marked as immutable, or canSharePixelRef |
| 31 | * is true. |
| 32 | * |
| 33 | * If the bitmap's config cannot be converted into a corresponding |
| 34 | * SkImage::Info, or the bitmap's pixels cannot be accessed, this will return |
| 35 | * NULL. |
reed@google.com | 889b09e | 2012-07-27 21:10:42 +0000 | [diff] [blame] | 36 | */ |
reed@google.com | 97af1a6 | 2012-08-28 12:19:02 +0000 | [diff] [blame] | 37 | extern SkImage* SkNewImageFromBitmap(const SkBitmap&, bool canSharePixelRef); |
reed@google.com | 889b09e | 2012-07-27 21:10:42 +0000 | [diff] [blame] | 38 | |
mike@reedtribe.org | 70e3590 | 2012-07-29 20:38:16 +0000 | [diff] [blame] | 39 | extern void SkImagePrivDrawPicture(SkCanvas*, SkPicture*, |
| 40 | SkScalar x, SkScalar y, const SkPaint*); |
reed@google.com | 9ea5a3b | 2012-07-30 21:03:46 +0000 | [diff] [blame] | 41 | |
commit-bot@chromium.org | dfec28d | 2013-07-23 15:52:16 +0000 | [diff] [blame] | 42 | extern void SkImagePrivDrawPicture(SkCanvas*, SkPicture*, |
| 43 | const SkRect*, const SkRect&, const SkPaint*); |
| 44 | |
reed@google.com | 9ea5a3b | 2012-07-30 21:03:46 +0000 | [diff] [blame] | 45 | /** |
| 46 | * Return an SkImage whose contents are those of the specified picture. Note: |
| 47 | * The picture itself is unmodified, and may continue to be used for recording |
| 48 | */ |
| 49 | extern SkImage* SkNewImageFromPicture(const SkPicture*); |
mike@reedtribe.org | 70e3590 | 2012-07-29 20:38:16 +0000 | [diff] [blame] | 50 | |
reed@google.com | 889b09e | 2012-07-27 21:10:42 +0000 | [diff] [blame] | 51 | static inline size_t SkImageMinRowBytes(const SkImage::Info& info) { |
mike@reedtribe.org | 70e3590 | 2012-07-29 20:38:16 +0000 | [diff] [blame] | 52 | size_t rb = info.fWidth * SkImageBytesPerPixel(info.fColorType); |
| 53 | return SkAlign4(rb); |
reed@google.com | 889b09e | 2012-07-27 21:10:42 +0000 | [diff] [blame] | 54 | } |
| 55 | |
reed@google.com | 97af1a6 | 2012-08-28 12:19:02 +0000 | [diff] [blame] | 56 | // Given an image created from SkNewImageFromBitmap, return its pixelref. This |
| 57 | // may be called to see if the surface and the image share the same pixelref, |
| 58 | // in which case the surface may need to perform a copy-on-write. |
| 59 | extern SkPixelRef* SkBitmapImageGetPixelRef(SkImage* rasterImage); |
| 60 | |
junov@chromium.org | 45c3db8 | 2013-04-11 17:52:05 +0000 | [diff] [blame] | 61 | // Given an image created with NewPicture, return its SkPicture. |
| 62 | extern SkPicture* SkPictureImageGetPicture(SkImage* pictureImage); |
| 63 | |
robertphillips@google.com | 97b6b07 | 2012-10-31 14:48:39 +0000 | [diff] [blame] | 64 | // Given an image created with NewTexture, return its GrTexture. This |
| 65 | // may be called to see if the surface and the image share the same GrTexture, |
| 66 | // in which case the surface may need to perform a copy-on-write. |
junov@chromium.org | 45c3db8 | 2013-04-11 17:52:05 +0000 | [diff] [blame] | 67 | extern GrTexture* SkTextureImageGetTexture(SkImage* textureImage); |
robertphillips@google.com | 97b6b07 | 2012-10-31 14:48:39 +0000 | [diff] [blame] | 68 | |
| 69 | // Update the texture wrapped by an image created with NewTexture. This |
| 70 | // is called when a surface and image share the same GrTexture and the |
| 71 | // surface needs to perform a copy-on-write |
| 72 | extern void SkTextureImageSetTexture(SkImage* image, GrTexture* texture); |
| 73 | |
reed@google.com | 889b09e | 2012-07-27 21:10:42 +0000 | [diff] [blame] | 74 | #endif |