blob: 876c4279b6ebaca031ad190a82b59dc41421f8f7 [file] [log] [blame]
reed@google.com58b21ec2012-07-30 18:20:12 +00001/*
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.com889b09e2012-07-27 21:10:42 +00007
8#ifndef SkImagePriv_DEFINED
9#define SkImagePriv_DEFINED
10
reed@google.com889b09e2012-07-27 21:10:42 +000011#include "SkImage.h"
bsalomoneaaaf0b2015-01-23 08:08:04 -080012#include "SkSurface.h"
reed@google.com889b09e2012-07-27 21:10:42 +000013
reed@google.com97af1a62012-08-28 12:19:02 +000014// Call this if you explicitly want to use/share this pixelRef in the image
kkinnunen73953e72015-02-23 22:12:12 -080015extern SkImage* SkNewImageFromPixelRef(const SkImageInfo&, SkPixelRef*,
16 const SkIPoint& pixelRefOrigin,
17 size_t rowBytes,
reed4af267b2014-11-21 08:46:37 -080018 const SkSurfaceProps*);
reed@google.com889b09e2012-07-27 21:10:42 +000019
20/**
21 * Examines the bitmap to decide if it can share the existing pixelRef, or
fmalita9a5d1ab2015-07-27 10:27:28 -070022 * if it needs to make a deep-copy of the pixels.
23 *
24 * The bitmap's pixelref will be shared if either the bitmap is marked as
25 * immutable, or forceSharePixelRef is true. Shared pixel refs are also
26 * locked when kLocked_SharedPixelRefMode is specified.
27 *
28 * Passing kLocked_SharedPixelRefMode allows the image's peekPixels() method
29 * to succeed, but it will force any lazy decodes/generators to execute if
30 * they exist on the pixelref.
reed@google.com97af1a62012-08-28 12:19:02 +000031 *
reed56179002015-07-07 06:11:19 -070032 * It is illegal to call this with a texture-backed bitmap.
33 *
commit-bot@chromium.orga3264e52014-05-30 13:26:10 +000034 * If the bitmap's colortype cannot be converted into a corresponding
reed@google.com2bd8b812013-11-01 13:46:54 +000035 * SkImageInfo, or the bitmap's pixels cannot be accessed, this will return
reed@google.com97af1a62012-08-28 12:19:02 +000036 * NULL.
reed@google.com889b09e2012-07-27 21:10:42 +000037 */
fmalita9a5d1ab2015-07-27 10:27:28 -070038enum SharedPixelRefMode {
39 kLocked_SharedPixelRefMode,
40 kUnlocked_SharedPixelRefMode
41};
reed56179002015-07-07 06:11:19 -070042extern SkImage* SkNewImageFromRasterBitmap(const SkBitmap&, bool forceSharePixelRef,
fmalita9a5d1ab2015-07-27 10:27:28 -070043 const SkSurfaceProps*, SharedPixelRefMode);
reed@google.com889b09e2012-07-27 21:10:42 +000044
reed@google.com2bd8b812013-11-01 13:46:54 +000045static inline size_t SkImageMinRowBytes(const SkImageInfo& info) {
reed759373a2015-07-03 21:01:10 -070046 size_t minRB = info.minRowBytes();
47 if (kIndex_8_SkColorType != info.colorType()) {
48 minRB = SkAlign4(minRB);
49 }
50 return minRB;
reed@google.com889b09e2012-07-27 21:10:42 +000051}
52
reed@google.com97af1a62012-08-28 12:19:02 +000053// Given an image created from SkNewImageFromBitmap, return its pixelref. This
54// may be called to see if the surface and the image share the same pixelref,
55// in which case the surface may need to perform a copy-on-write.
piotaixr65151752014-10-16 11:58:39 -070056extern const SkPixelRef* SkBitmapImageGetPixelRef(const SkImage* rasterImage);
reed@google.com97af1a62012-08-28 12:19:02 +000057
bsalomoneaaaf0b2015-01-23 08:08:04 -080058// When a texture is shared by a surface and an image its budgeted status is that of the
59// surface. This function is used when the surface makes a new texture for itself in order
60// for the orphaned image to determine whether the original texture counts against the
61// budget or not.
62extern void SkTextureImageApplyBudgetedDecision(SkImage* textureImage);
63
robertphillips@google.com97b6b072012-10-31 14:48:39 +000064// Update the texture wrapped by an image created with NewTexture. This
65// is called when a surface and image share the same GrTexture and the
66// surface needs to perform a copy-on-write
67extern void SkTextureImageSetTexture(SkImage* image, GrTexture* texture);
68
reed56179002015-07-07 06:11:19 -070069GrTexture* GrDeepCopyTexture(GrTexture* src, bool isBudgeted);
70
reed@google.com889b09e2012-07-27 21:10:42 +000071#endif