2008-12-17 15:59:43 +00:00
|
|
|
/*
|
2011-07-28 14:26:00 +00:00
|
|
|
* Copyright 2006 The Android Open Source Project
|
2008-12-17 15:59:43 +00:00
|
|
|
*
|
2011-07-28 14:26:00 +00:00
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
2008-12-17 15:59:43 +00:00
|
|
|
*/
|
|
|
|
|
2011-07-28 14:26:00 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
#ifndef SkShader_DEFINED
|
|
|
|
#define SkShader_DEFINED
|
|
|
|
|
|
|
|
#include "SkBitmap.h"
|
|
|
|
#include "SkFlattenable.h"
|
|
|
|
#include "SkMask.h"
|
|
|
|
#include "SkMatrix.h"
|
|
|
|
#include "SkPaint.h"
|
|
|
|
|
|
|
|
class SkPath;
|
2014-04-08 15:19:34 +00:00
|
|
|
class SkPicture;
|
2014-05-13 18:14:45 +00:00
|
|
|
class SkXfermode;
|
2012-07-20 20:02:43 +00:00
|
|
|
class GrContext;
|
2013-01-16 15:16:18 +00:00
|
|
|
class GrEffectRef;
|
2008-12-17 15:59:43 +00:00
|
|
|
|
|
|
|
/** \class SkShader
|
2011-04-11 19:01:12 +00:00
|
|
|
*
|
2012-05-11 14:47:03 +00:00
|
|
|
* Shaders specify the source color(s) for what is being drawn. If a paint
|
|
|
|
* has no shader, then the paint's color is used. If the paint has a
|
|
|
|
* shader, then the shader's color(s) are use instead, but they are
|
|
|
|
* modulated by the paint's alpha. This makes it easy to create a shader
|
|
|
|
* once (e.g. bitmap tiling or gradient) and then change its transparency
|
|
|
|
* w/o having to modify the original shader... only the paint's alpha needs
|
|
|
|
* to be modified.
|
2011-04-11 19:01:12 +00:00
|
|
|
*/
|
2011-03-15 21:27:08 +00:00
|
|
|
class SK_API SkShader : public SkFlattenable {
|
2008-12-17 15:59:43 +00:00
|
|
|
public:
|
2012-06-27 14:03:26 +00:00
|
|
|
SK_DECLARE_INST_COUNT(SkShader)
|
|
|
|
|
2014-04-28 14:55:39 +00:00
|
|
|
SkShader(const SkMatrix* localMatrix = NULL);
|
2008-12-17 15:59:43 +00:00
|
|
|
virtual ~SkShader();
|
|
|
|
|
2011-04-11 19:01:12 +00:00
|
|
|
/**
|
2014-05-12 20:42:21 +00:00
|
|
|
* Returns the local matrix.
|
2011-04-11 19:01:12 +00:00
|
|
|
*/
|
2014-05-12 20:42:21 +00:00
|
|
|
const SkMatrix& getLocalMatrix() const { return fLocalMatrix; }
|
2012-10-31 18:09:01 +00:00
|
|
|
|
|
|
|
/**
|
2014-05-12 20:42:21 +00:00
|
|
|
* Returns true if the local matrix is not an identity matrix.
|
2012-10-31 18:09:01 +00:00
|
|
|
*/
|
2014-05-12 20:42:21 +00:00
|
|
|
bool hasLocalMatrix() const { return !fLocalMatrix.isIdentity(); }
|
2011-04-11 19:01:12 +00:00
|
|
|
|
2014-05-22 18:43:05 +00:00
|
|
|
#ifdef SK_SUPPORT_LEGACY_SHADER_LOCALMATRIX
|
2011-04-11 19:01:12 +00:00
|
|
|
/**
|
|
|
|
* Set the shader's local matrix.
|
|
|
|
* @param localM The shader's new local matrix.
|
|
|
|
*/
|
2012-10-31 18:09:01 +00:00
|
|
|
void setLocalMatrix(const SkMatrix& localM) { fLocalMatrix = localM; }
|
2011-04-11 19:01:12 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Reset the shader's local matrix to identity.
|
|
|
|
*/
|
2012-10-31 18:09:01 +00:00
|
|
|
void resetLocalMatrix() { fLocalMatrix.reset(); }
|
2014-05-12 20:42:21 +00:00
|
|
|
#endif
|
2008-12-17 15:59:43 +00:00
|
|
|
|
|
|
|
enum TileMode {
|
2012-03-16 14:38:06 +00:00
|
|
|
/** replicate the edge color if the shader draws outside of its
|
|
|
|
* original bounds
|
|
|
|
*/
|
|
|
|
kClamp_TileMode,
|
|
|
|
|
|
|
|
/** repeat the shader's image horizontally and vertically */
|
|
|
|
kRepeat_TileMode,
|
|
|
|
|
|
|
|
/** repeat the shader's image horizontally and vertically, alternating
|
|
|
|
* mirror images so that adjacent images always seam
|
|
|
|
*/
|
|
|
|
kMirror_TileMode,
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
/** only draw within the original domain, return 0 everywhere else */
|
|
|
|
kDecal_TileMode,
|
|
|
|
#endif
|
2008-12-17 15:59:43 +00:00
|
|
|
|
|
|
|
kTileModeCount
|
|
|
|
};
|
|
|
|
|
|
|
|
// override these in your subclass
|
|
|
|
|
|
|
|
enum Flags {
|
|
|
|
//!< set if all of the colors will be opaque
|
2009-08-27 19:28:37 +00:00
|
|
|
kOpaqueAlpha_Flag = 0x01,
|
2009-06-12 21:27:03 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
//! set if this shader's shadeSpan16() method can be called
|
2009-08-27 19:28:37 +00:00
|
|
|
kHasSpan16_Flag = 0x02,
|
2009-06-12 21:27:03 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
/** Set this bit if the shader's native data type is instrinsically 16
|
|
|
|
bit, meaning that calling the 32bit shadeSpan() entry point will
|
|
|
|
mean the the impl has to up-sample 16bit data into 32bit. Used as a
|
|
|
|
a means of clearing a dither request if the it will have no effect
|
|
|
|
*/
|
2009-06-12 21:27:03 +00:00
|
|
|
kIntrinsicly16_Flag = 0x04,
|
|
|
|
|
Revert of Revert of Extract most of the mutable state of SkShader into a separate Context object. (https://codereview.chromium.org/249643002/)
Reason for revert:
Chromium side change landed along side DEPS roll that includes r14323.
Original issue's description:
> Revert of Extract most of the mutable state of SkShader into a separate Context object. (https://codereview.chromium.org/207683004/)
>
> Reason for revert:
> This is blocking the DEPS roll into Chromium. Failures can be seen here:
>
> http://build.chromium.org/p/tryserver.chromium/builders/android_dbg/builds/174333
>
> Original issue's description:
> > Extract most of the mutable state of SkShader into a separate Context object.
> >
> > SkShader currently stores some state during draw calls via setContext(...).
> > Move that mutable state into a separate SkShader::Context class that is
> > constructed on demand for the duration of the draw.
> >
> > Calls to setContext() are replaced with createContext() which returns a context
> > corresponding to the shader object or NULL if the parameters to createContext
> > are invalid.
> >
> > TEST=out/Debug/dm
> > BUG=skia:1976
> >
> > Committed: http://code.google.com/p/skia/source/detail?r=14216
> >
> > Committed: http://code.google.com/p/skia/source/detail?r=14323
>
> TBR=scroggo@google.com,skyostil@chromium.org,tomhudson@chromium.org,senorblanco@chromium.org,reed@google.com,bungeman@google.com,dominikg@chromium.org
> NOTREECHECKS=true
> NOTRY=true
> BUG=skia:1976
>
> Committed: http://code.google.com/p/skia/source/detail?r=14326
R=scroggo@google.com, skyostil@chromium.org, tomhudson@chromium.org, senorblanco@chromium.org, reed@google.com, bungeman@google.com, dominikg@chromium.org
TBR=bungeman@google.com, dominikg@chromium.org, reed@google.com, scroggo@google.com, senorblanco@chromium.org, skyostil@chromium.org, tomhudson@chromium.org
NOTREECHECKS=true
NOTRY=true
BUG=skia:1976
Author: bsalomon@google.com
Review URL: https://codereview.chromium.org/246403013
git-svn-id: http://skia.googlecode.com/svn/trunk@14328 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-04-23 19:10:51 +00:00
|
|
|
/** set if the spans only vary in X (const in Y).
|
2009-06-12 21:27:03 +00:00
|
|
|
e.g. an Nx1 bitmap that is being tiled in Y, or a linear-gradient
|
2009-08-27 19:28:37 +00:00
|
|
|
that varies from left-to-right. This flag specifies this for
|
|
|
|
shadeSpan().
|
2009-06-12 21:27:03 +00:00
|
|
|
*/
|
2009-08-27 19:28:37 +00:00
|
|
|
kConstInY32_Flag = 0x08,
|
2011-03-07 19:29:00 +00:00
|
|
|
|
2009-08-27 19:28:37 +00:00
|
|
|
/** same as kConstInY32_Flag, but is set if this is true for shadeSpan16
|
|
|
|
which may not always be the case, since shadeSpan16 may be
|
|
|
|
predithered, which would mean it was not const in Y, even though
|
|
|
|
the 32bit shadeSpan() would be const.
|
|
|
|
*/
|
|
|
|
kConstInY16_Flag = 0x10
|
2008-12-17 15:59:43 +00:00
|
|
|
};
|
|
|
|
|
2011-12-09 15:48:03 +00:00
|
|
|
/**
|
|
|
|
* Returns true if the shader is guaranteed to produce only opaque
|
|
|
|
* colors, subject to the SkPaint using the shader to apply an opaque
|
|
|
|
* alpha value. Subclasses should override this to allow some
|
Revert of Revert of Extract most of the mutable state of SkShader into a separate Context object. (https://codereview.chromium.org/249643002/)
Reason for revert:
Chromium side change landed along side DEPS roll that includes r14323.
Original issue's description:
> Revert of Extract most of the mutable state of SkShader into a separate Context object. (https://codereview.chromium.org/207683004/)
>
> Reason for revert:
> This is blocking the DEPS roll into Chromium. Failures can be seen here:
>
> http://build.chromium.org/p/tryserver.chromium/builders/android_dbg/builds/174333
>
> Original issue's description:
> > Extract most of the mutable state of SkShader into a separate Context object.
> >
> > SkShader currently stores some state during draw calls via setContext(...).
> > Move that mutable state into a separate SkShader::Context class that is
> > constructed on demand for the duration of the draw.
> >
> > Calls to setContext() are replaced with createContext() which returns a context
> > corresponding to the shader object or NULL if the parameters to createContext
> > are invalid.
> >
> > TEST=out/Debug/dm
> > BUG=skia:1976
> >
> > Committed: http://code.google.com/p/skia/source/detail?r=14216
> >
> > Committed: http://code.google.com/p/skia/source/detail?r=14323
>
> TBR=scroggo@google.com,skyostil@chromium.org,tomhudson@chromium.org,senorblanco@chromium.org,reed@google.com,bungeman@google.com,dominikg@chromium.org
> NOTREECHECKS=true
> NOTRY=true
> BUG=skia:1976
>
> Committed: http://code.google.com/p/skia/source/detail?r=14326
R=scroggo@google.com, skyostil@chromium.org, tomhudson@chromium.org, senorblanco@chromium.org, reed@google.com, bungeman@google.com, dominikg@chromium.org
TBR=bungeman@google.com, dominikg@chromium.org, reed@google.com, scroggo@google.com, senorblanco@chromium.org, skyostil@chromium.org, tomhudson@chromium.org
NOTREECHECKS=true
NOTRY=true
BUG=skia:1976
Author: bsalomon@google.com
Review URL: https://codereview.chromium.org/246403013
git-svn-id: http://skia.googlecode.com/svn/trunk@14328 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-04-23 19:10:51 +00:00
|
|
|
* optimizations.
|
2011-12-09 15:48:03 +00:00
|
|
|
*/
|
|
|
|
virtual bool isOpaque() const { return false; }
|
|
|
|
|
2014-05-01 19:31:31 +00:00
|
|
|
/**
|
|
|
|
* ContextRec acts as a parameter bundle for creating Contexts.
|
|
|
|
*/
|
|
|
|
struct ContextRec {
|
2014-05-06 17:16:03 +00:00
|
|
|
ContextRec() : fDevice(NULL), fPaint(NULL), fMatrix(NULL), fLocalMatrix(NULL) {}
|
2014-05-01 19:31:31 +00:00
|
|
|
ContextRec(const SkBitmap& device, const SkPaint& paint, const SkMatrix& matrix)
|
|
|
|
: fDevice(&device)
|
|
|
|
, fPaint(&paint)
|
2014-05-06 17:16:03 +00:00
|
|
|
, fMatrix(&matrix)
|
|
|
|
, fLocalMatrix(NULL) {}
|
2014-05-01 19:31:31 +00:00
|
|
|
|
2014-05-06 17:16:03 +00:00
|
|
|
const SkBitmap* fDevice; // the bitmap we are drawing into
|
|
|
|
const SkPaint* fPaint; // the current paint associated with the draw
|
|
|
|
const SkMatrix* fMatrix; // the current matrix in the canvas
|
|
|
|
const SkMatrix* fLocalMatrix; // optional local matrix
|
2014-05-01 19:31:31 +00:00
|
|
|
};
|
|
|
|
|
Revert of Revert of Extract most of the mutable state of SkShader into a separate Context object. (https://codereview.chromium.org/249643002/)
Reason for revert:
Chromium side change landed along side DEPS roll that includes r14323.
Original issue's description:
> Revert of Extract most of the mutable state of SkShader into a separate Context object. (https://codereview.chromium.org/207683004/)
>
> Reason for revert:
> This is blocking the DEPS roll into Chromium. Failures can be seen here:
>
> http://build.chromium.org/p/tryserver.chromium/builders/android_dbg/builds/174333
>
> Original issue's description:
> > Extract most of the mutable state of SkShader into a separate Context object.
> >
> > SkShader currently stores some state during draw calls via setContext(...).
> > Move that mutable state into a separate SkShader::Context class that is
> > constructed on demand for the duration of the draw.
> >
> > Calls to setContext() are replaced with createContext() which returns a context
> > corresponding to the shader object or NULL if the parameters to createContext
> > are invalid.
> >
> > TEST=out/Debug/dm
> > BUG=skia:1976
> >
> > Committed: http://code.google.com/p/skia/source/detail?r=14216
> >
> > Committed: http://code.google.com/p/skia/source/detail?r=14323
>
> TBR=scroggo@google.com,skyostil@chromium.org,tomhudson@chromium.org,senorblanco@chromium.org,reed@google.com,bungeman@google.com,dominikg@chromium.org
> NOTREECHECKS=true
> NOTRY=true
> BUG=skia:1976
>
> Committed: http://code.google.com/p/skia/source/detail?r=14326
R=scroggo@google.com, skyostil@chromium.org, tomhudson@chromium.org, senorblanco@chromium.org, reed@google.com, bungeman@google.com, dominikg@chromium.org
TBR=bungeman@google.com, dominikg@chromium.org, reed@google.com, scroggo@google.com, senorblanco@chromium.org, skyostil@chromium.org, tomhudson@chromium.org
NOTREECHECKS=true
NOTRY=true
BUG=skia:1976
Author: bsalomon@google.com
Review URL: https://codereview.chromium.org/246403013
git-svn-id: http://skia.googlecode.com/svn/trunk@14328 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-04-23 19:10:51 +00:00
|
|
|
class Context : public ::SkNoncopyable {
|
|
|
|
public:
|
2014-05-01 19:31:31 +00:00
|
|
|
Context(const SkShader& shader, const ContextRec&);
|
2014-04-16 10:16:39 +00:00
|
|
|
|
Revert of Revert of Extract most of the mutable state of SkShader into a separate Context object. (https://codereview.chromium.org/249643002/)
Reason for revert:
Chromium side change landed along side DEPS roll that includes r14323.
Original issue's description:
> Revert of Extract most of the mutable state of SkShader into a separate Context object. (https://codereview.chromium.org/207683004/)
>
> Reason for revert:
> This is blocking the DEPS roll into Chromium. Failures can be seen here:
>
> http://build.chromium.org/p/tryserver.chromium/builders/android_dbg/builds/174333
>
> Original issue's description:
> > Extract most of the mutable state of SkShader into a separate Context object.
> >
> > SkShader currently stores some state during draw calls via setContext(...).
> > Move that mutable state into a separate SkShader::Context class that is
> > constructed on demand for the duration of the draw.
> >
> > Calls to setContext() are replaced with createContext() which returns a context
> > corresponding to the shader object or NULL if the parameters to createContext
> > are invalid.
> >
> > TEST=out/Debug/dm
> > BUG=skia:1976
> >
> > Committed: http://code.google.com/p/skia/source/detail?r=14216
> >
> > Committed: http://code.google.com/p/skia/source/detail?r=14323
>
> TBR=scroggo@google.com,skyostil@chromium.org,tomhudson@chromium.org,senorblanco@chromium.org,reed@google.com,bungeman@google.com,dominikg@chromium.org
> NOTREECHECKS=true
> NOTRY=true
> BUG=skia:1976
>
> Committed: http://code.google.com/p/skia/source/detail?r=14326
R=scroggo@google.com, skyostil@chromium.org, tomhudson@chromium.org, senorblanco@chromium.org, reed@google.com, bungeman@google.com, dominikg@chromium.org
TBR=bungeman@google.com, dominikg@chromium.org, reed@google.com, scroggo@google.com, senorblanco@chromium.org, skyostil@chromium.org, tomhudson@chromium.org
NOTREECHECKS=true
NOTRY=true
BUG=skia:1976
Author: bsalomon@google.com
Review URL: https://codereview.chromium.org/246403013
git-svn-id: http://skia.googlecode.com/svn/trunk@14328 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-04-23 19:10:51 +00:00
|
|
|
virtual ~Context();
|
2014-04-23 09:11:58 +00:00
|
|
|
|
Revert of Revert of Extract most of the mutable state of SkShader into a separate Context object. (https://codereview.chromium.org/249643002/)
Reason for revert:
Chromium side change landed along side DEPS roll that includes r14323.
Original issue's description:
> Revert of Extract most of the mutable state of SkShader into a separate Context object. (https://codereview.chromium.org/207683004/)
>
> Reason for revert:
> This is blocking the DEPS roll into Chromium. Failures can be seen here:
>
> http://build.chromium.org/p/tryserver.chromium/builders/android_dbg/builds/174333
>
> Original issue's description:
> > Extract most of the mutable state of SkShader into a separate Context object.
> >
> > SkShader currently stores some state during draw calls via setContext(...).
> > Move that mutable state into a separate SkShader::Context class that is
> > constructed on demand for the duration of the draw.
> >
> > Calls to setContext() are replaced with createContext() which returns a context
> > corresponding to the shader object or NULL if the parameters to createContext
> > are invalid.
> >
> > TEST=out/Debug/dm
> > BUG=skia:1976
> >
> > Committed: http://code.google.com/p/skia/source/detail?r=14216
> >
> > Committed: http://code.google.com/p/skia/source/detail?r=14323
>
> TBR=scroggo@google.com,skyostil@chromium.org,tomhudson@chromium.org,senorblanco@chromium.org,reed@google.com,bungeman@google.com,dominikg@chromium.org
> NOTREECHECKS=true
> NOTRY=true
> BUG=skia:1976
>
> Committed: http://code.google.com/p/skia/source/detail?r=14326
R=scroggo@google.com, skyostil@chromium.org, tomhudson@chromium.org, senorblanco@chromium.org, reed@google.com, bungeman@google.com, dominikg@chromium.org
TBR=bungeman@google.com, dominikg@chromium.org, reed@google.com, scroggo@google.com, senorblanco@chromium.org, skyostil@chromium.org, tomhudson@chromium.org
NOTREECHECKS=true
NOTRY=true
BUG=skia:1976
Author: bsalomon@google.com
Review URL: https://codereview.chromium.org/246403013
git-svn-id: http://skia.googlecode.com/svn/trunk@14328 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-04-23 19:10:51 +00:00
|
|
|
/**
|
|
|
|
* Called sometimes before drawing with this shader. Return the type of
|
|
|
|
* alpha your shader will return. The default implementation returns 0.
|
|
|
|
* Your subclass should override if it can (even sometimes) report a
|
|
|
|
* non-zero value, since that will enable various blitters to perform
|
|
|
|
* faster.
|
|
|
|
*/
|
|
|
|
virtual uint32_t getFlags() const { return 0; }
|
2014-04-23 09:11:58 +00:00
|
|
|
|
Revert of Revert of Extract most of the mutable state of SkShader into a separate Context object. (https://codereview.chromium.org/249643002/)
Reason for revert:
Chromium side change landed along side DEPS roll that includes r14323.
Original issue's description:
> Revert of Extract most of the mutable state of SkShader into a separate Context object. (https://codereview.chromium.org/207683004/)
>
> Reason for revert:
> This is blocking the DEPS roll into Chromium. Failures can be seen here:
>
> http://build.chromium.org/p/tryserver.chromium/builders/android_dbg/builds/174333
>
> Original issue's description:
> > Extract most of the mutable state of SkShader into a separate Context object.
> >
> > SkShader currently stores some state during draw calls via setContext(...).
> > Move that mutable state into a separate SkShader::Context class that is
> > constructed on demand for the duration of the draw.
> >
> > Calls to setContext() are replaced with createContext() which returns a context
> > corresponding to the shader object or NULL if the parameters to createContext
> > are invalid.
> >
> > TEST=out/Debug/dm
> > BUG=skia:1976
> >
> > Committed: http://code.google.com/p/skia/source/detail?r=14216
> >
> > Committed: http://code.google.com/p/skia/source/detail?r=14323
>
> TBR=scroggo@google.com,skyostil@chromium.org,tomhudson@chromium.org,senorblanco@chromium.org,reed@google.com,bungeman@google.com,dominikg@chromium.org
> NOTREECHECKS=true
> NOTRY=true
> BUG=skia:1976
>
> Committed: http://code.google.com/p/skia/source/detail?r=14326
R=scroggo@google.com, skyostil@chromium.org, tomhudson@chromium.org, senorblanco@chromium.org, reed@google.com, bungeman@google.com, dominikg@chromium.org
TBR=bungeman@google.com, dominikg@chromium.org, reed@google.com, scroggo@google.com, senorblanco@chromium.org, skyostil@chromium.org, tomhudson@chromium.org
NOTREECHECKS=true
NOTRY=true
BUG=skia:1976
Author: bsalomon@google.com
Review URL: https://codereview.chromium.org/246403013
git-svn-id: http://skia.googlecode.com/svn/trunk@14328 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-04-23 19:10:51 +00:00
|
|
|
/**
|
|
|
|
* Return the alpha associated with the data returned by shadeSpan16(). If
|
|
|
|
* kHasSpan16_Flag is not set, this value is meaningless.
|
|
|
|
*/
|
|
|
|
virtual uint8_t getSpan16Alpha() const { return fPaintAlpha; }
|
2014-04-23 09:11:58 +00:00
|
|
|
|
Revert of Revert of Extract most of the mutable state of SkShader into a separate Context object. (https://codereview.chromium.org/249643002/)
Reason for revert:
Chromium side change landed along side DEPS roll that includes r14323.
Original issue's description:
> Revert of Extract most of the mutable state of SkShader into a separate Context object. (https://codereview.chromium.org/207683004/)
>
> Reason for revert:
> This is blocking the DEPS roll into Chromium. Failures can be seen here:
>
> http://build.chromium.org/p/tryserver.chromium/builders/android_dbg/builds/174333
>
> Original issue's description:
> > Extract most of the mutable state of SkShader into a separate Context object.
> >
> > SkShader currently stores some state during draw calls via setContext(...).
> > Move that mutable state into a separate SkShader::Context class that is
> > constructed on demand for the duration of the draw.
> >
> > Calls to setContext() are replaced with createContext() which returns a context
> > corresponding to the shader object or NULL if the parameters to createContext
> > are invalid.
> >
> > TEST=out/Debug/dm
> > BUG=skia:1976
> >
> > Committed: http://code.google.com/p/skia/source/detail?r=14216
> >
> > Committed: http://code.google.com/p/skia/source/detail?r=14323
>
> TBR=scroggo@google.com,skyostil@chromium.org,tomhudson@chromium.org,senorblanco@chromium.org,reed@google.com,bungeman@google.com,dominikg@chromium.org
> NOTREECHECKS=true
> NOTRY=true
> BUG=skia:1976
>
> Committed: http://code.google.com/p/skia/source/detail?r=14326
R=scroggo@google.com, skyostil@chromium.org, tomhudson@chromium.org, senorblanco@chromium.org, reed@google.com, bungeman@google.com, dominikg@chromium.org
TBR=bungeman@google.com, dominikg@chromium.org, reed@google.com, scroggo@google.com, senorblanco@chromium.org, skyostil@chromium.org, tomhudson@chromium.org
NOTREECHECKS=true
NOTRY=true
BUG=skia:1976
Author: bsalomon@google.com
Review URL: https://codereview.chromium.org/246403013
git-svn-id: http://skia.googlecode.com/svn/trunk@14328 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-04-23 19:10:51 +00:00
|
|
|
/**
|
|
|
|
* Called for each span of the object being drawn. Your subclass should
|
|
|
|
* set the appropriate colors (with premultiplied alpha) that correspond
|
|
|
|
* to the specified device coordinates.
|
|
|
|
*/
|
|
|
|
virtual void shadeSpan(int x, int y, SkPMColor[], int count) = 0;
|
|
|
|
|
|
|
|
typedef void (*ShadeProc)(void* ctx, int x, int y, SkPMColor[], int count);
|
|
|
|
virtual ShadeProc asAShadeProc(void** ctx);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Called only for 16bit devices when getFlags() returns
|
|
|
|
* kOpaqueAlphaFlag | kHasSpan16_Flag
|
|
|
|
*/
|
|
|
|
virtual void shadeSpan16(int x, int y, uint16_t[], int count);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Similar to shadeSpan, but only returns the alpha-channel for a span.
|
|
|
|
* The default implementation calls shadeSpan() and then extracts the alpha
|
|
|
|
* values from the returned colors.
|
|
|
|
*/
|
|
|
|
virtual void shadeSpanAlpha(int x, int y, uint8_t alpha[], int count);
|
2011-04-11 19:01:12 +00:00
|
|
|
|
Revert of Revert of Extract most of the mutable state of SkShader into a separate Context object. (https://codereview.chromium.org/249643002/)
Reason for revert:
Chromium side change landed along side DEPS roll that includes r14323.
Original issue's description:
> Revert of Extract most of the mutable state of SkShader into a separate Context object. (https://codereview.chromium.org/207683004/)
>
> Reason for revert:
> This is blocking the DEPS roll into Chromium. Failures can be seen here:
>
> http://build.chromium.org/p/tryserver.chromium/builders/android_dbg/builds/174333
>
> Original issue's description:
> > Extract most of the mutable state of SkShader into a separate Context object.
> >
> > SkShader currently stores some state during draw calls via setContext(...).
> > Move that mutable state into a separate SkShader::Context class that is
> > constructed on demand for the duration of the draw.
> >
> > Calls to setContext() are replaced with createContext() which returns a context
> > corresponding to the shader object or NULL if the parameters to createContext
> > are invalid.
> >
> > TEST=out/Debug/dm
> > BUG=skia:1976
> >
> > Committed: http://code.google.com/p/skia/source/detail?r=14216
> >
> > Committed: http://code.google.com/p/skia/source/detail?r=14323
>
> TBR=scroggo@google.com,skyostil@chromium.org,tomhudson@chromium.org,senorblanco@chromium.org,reed@google.com,bungeman@google.com,dominikg@chromium.org
> NOTREECHECKS=true
> NOTRY=true
> BUG=skia:1976
>
> Committed: http://code.google.com/p/skia/source/detail?r=14326
R=scroggo@google.com, skyostil@chromium.org, tomhudson@chromium.org, senorblanco@chromium.org, reed@google.com, bungeman@google.com, dominikg@chromium.org
TBR=bungeman@google.com, dominikg@chromium.org, reed@google.com, scroggo@google.com, senorblanco@chromium.org, skyostil@chromium.org, tomhudson@chromium.org
NOTREECHECKS=true
NOTRY=true
BUG=skia:1976
Author: bsalomon@google.com
Review URL: https://codereview.chromium.org/246403013
git-svn-id: http://skia.googlecode.com/svn/trunk@14328 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-04-23 19:10:51 +00:00
|
|
|
/**
|
|
|
|
* Helper function that returns true if this shader's shadeSpan16() method
|
|
|
|
* can be called.
|
|
|
|
*/
|
|
|
|
bool canCallShadeSpan16() {
|
|
|
|
return SkShader::CanCallShadeSpan16(this->getFlags());
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// Reference to shader, so we don't have to dupe information.
|
|
|
|
const SkShader& fShader;
|
|
|
|
|
|
|
|
enum MatrixClass {
|
|
|
|
kLinear_MatrixClass, // no perspective
|
|
|
|
kFixedStepInX_MatrixClass, // fast perspective, need to call fixedStepInX() each
|
|
|
|
// scanline
|
|
|
|
kPerspective_MatrixClass // slow perspective, need to mappoints each pixel
|
|
|
|
};
|
|
|
|
static MatrixClass ComputeMatrixClass(const SkMatrix&);
|
|
|
|
|
2014-05-06 17:16:03 +00:00
|
|
|
uint8_t getPaintAlpha() const { return fPaintAlpha; }
|
|
|
|
const SkMatrix& getTotalInverse() const { return fTotalInverse; }
|
|
|
|
MatrixClass getInverseClass() const { return (MatrixClass)fTotalInverseClass; }
|
|
|
|
const SkMatrix& getCTM() const { return fCTM; }
|
Revert of Revert of Extract most of the mutable state of SkShader into a separate Context object. (https://codereview.chromium.org/249643002/)
Reason for revert:
Chromium side change landed along side DEPS roll that includes r14323.
Original issue's description:
> Revert of Extract most of the mutable state of SkShader into a separate Context object. (https://codereview.chromium.org/207683004/)
>
> Reason for revert:
> This is blocking the DEPS roll into Chromium. Failures can be seen here:
>
> http://build.chromium.org/p/tryserver.chromium/builders/android_dbg/builds/174333
>
> Original issue's description:
> > Extract most of the mutable state of SkShader into a separate Context object.
> >
> > SkShader currently stores some state during draw calls via setContext(...).
> > Move that mutable state into a separate SkShader::Context class that is
> > constructed on demand for the duration of the draw.
> >
> > Calls to setContext() are replaced with createContext() which returns a context
> > corresponding to the shader object or NULL if the parameters to createContext
> > are invalid.
> >
> > TEST=out/Debug/dm
> > BUG=skia:1976
> >
> > Committed: http://code.google.com/p/skia/source/detail?r=14216
> >
> > Committed: http://code.google.com/p/skia/source/detail?r=14323
>
> TBR=scroggo@google.com,skyostil@chromium.org,tomhudson@chromium.org,senorblanco@chromium.org,reed@google.com,bungeman@google.com,dominikg@chromium.org
> NOTREECHECKS=true
> NOTRY=true
> BUG=skia:1976
>
> Committed: http://code.google.com/p/skia/source/detail?r=14326
R=scroggo@google.com, skyostil@chromium.org, tomhudson@chromium.org, senorblanco@chromium.org, reed@google.com, bungeman@google.com, dominikg@chromium.org
TBR=bungeman@google.com, dominikg@chromium.org, reed@google.com, scroggo@google.com, senorblanco@chromium.org, skyostil@chromium.org, tomhudson@chromium.org
NOTREECHECKS=true
NOTRY=true
BUG=skia:1976
Author: bsalomon@google.com
Review URL: https://codereview.chromium.org/246403013
git-svn-id: http://skia.googlecode.com/svn/trunk@14328 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-04-23 19:10:51 +00:00
|
|
|
private:
|
2014-05-06 17:16:03 +00:00
|
|
|
SkMatrix fCTM;
|
|
|
|
SkMatrix fTotalInverse;
|
|
|
|
uint8_t fPaintAlpha;
|
|
|
|
uint8_t fTotalInverseClass;
|
Revert of Revert of Extract most of the mutable state of SkShader into a separate Context object. (https://codereview.chromium.org/249643002/)
Reason for revert:
Chromium side change landed along side DEPS roll that includes r14323.
Original issue's description:
> Revert of Extract most of the mutable state of SkShader into a separate Context object. (https://codereview.chromium.org/207683004/)
>
> Reason for revert:
> This is blocking the DEPS roll into Chromium. Failures can be seen here:
>
> http://build.chromium.org/p/tryserver.chromium/builders/android_dbg/builds/174333
>
> Original issue's description:
> > Extract most of the mutable state of SkShader into a separate Context object.
> >
> > SkShader currently stores some state during draw calls via setContext(...).
> > Move that mutable state into a separate SkShader::Context class that is
> > constructed on demand for the duration of the draw.
> >
> > Calls to setContext() are replaced with createContext() which returns a context
> > corresponding to the shader object or NULL if the parameters to createContext
> > are invalid.
> >
> > TEST=out/Debug/dm
> > BUG=skia:1976
> >
> > Committed: http://code.google.com/p/skia/source/detail?r=14216
> >
> > Committed: http://code.google.com/p/skia/source/detail?r=14323
>
> TBR=scroggo@google.com,skyostil@chromium.org,tomhudson@chromium.org,senorblanco@chromium.org,reed@google.com,bungeman@google.com,dominikg@chromium.org
> NOTREECHECKS=true
> NOTRY=true
> BUG=skia:1976
>
> Committed: http://code.google.com/p/skia/source/detail?r=14326
R=scroggo@google.com, skyostil@chromium.org, tomhudson@chromium.org, senorblanco@chromium.org, reed@google.com, bungeman@google.com, dominikg@chromium.org
TBR=bungeman@google.com, dominikg@chromium.org, reed@google.com, scroggo@google.com, senorblanco@chromium.org, skyostil@chromium.org, tomhudson@chromium.org
NOTREECHECKS=true
NOTRY=true
BUG=skia:1976
Author: bsalomon@google.com
Review URL: https://codereview.chromium.org/246403013
git-svn-id: http://skia.googlecode.com/svn/trunk@14328 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-04-23 19:10:51 +00:00
|
|
|
|
|
|
|
typedef SkNoncopyable INHERITED;
|
|
|
|
};
|
2012-10-12 18:56:18 +00:00
|
|
|
|
2011-04-11 19:01:12 +00:00
|
|
|
/**
|
Revert of Revert of Extract most of the mutable state of SkShader into a separate Context object. (https://codereview.chromium.org/249643002/)
Reason for revert:
Chromium side change landed along side DEPS roll that includes r14323.
Original issue's description:
> Revert of Extract most of the mutable state of SkShader into a separate Context object. (https://codereview.chromium.org/207683004/)
>
> Reason for revert:
> This is blocking the DEPS roll into Chromium. Failures can be seen here:
>
> http://build.chromium.org/p/tryserver.chromium/builders/android_dbg/builds/174333
>
> Original issue's description:
> > Extract most of the mutable state of SkShader into a separate Context object.
> >
> > SkShader currently stores some state during draw calls via setContext(...).
> > Move that mutable state into a separate SkShader::Context class that is
> > constructed on demand for the duration of the draw.
> >
> > Calls to setContext() are replaced with createContext() which returns a context
> > corresponding to the shader object or NULL if the parameters to createContext
> > are invalid.
> >
> > TEST=out/Debug/dm
> > BUG=skia:1976
> >
> > Committed: http://code.google.com/p/skia/source/detail?r=14216
> >
> > Committed: http://code.google.com/p/skia/source/detail?r=14323
>
> TBR=scroggo@google.com,skyostil@chromium.org,tomhudson@chromium.org,senorblanco@chromium.org,reed@google.com,bungeman@google.com,dominikg@chromium.org
> NOTREECHECKS=true
> NOTRY=true
> BUG=skia:1976
>
> Committed: http://code.google.com/p/skia/source/detail?r=14326
R=scroggo@google.com, skyostil@chromium.org, tomhudson@chromium.org, senorblanco@chromium.org, reed@google.com, bungeman@google.com, dominikg@chromium.org
TBR=bungeman@google.com, dominikg@chromium.org, reed@google.com, scroggo@google.com, senorblanco@chromium.org, skyostil@chromium.org, tomhudson@chromium.org
NOTREECHECKS=true
NOTRY=true
BUG=skia:1976
Author: bsalomon@google.com
Review URL: https://codereview.chromium.org/246403013
git-svn-id: http://skia.googlecode.com/svn/trunk@14328 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-04-23 19:10:51 +00:00
|
|
|
* Create the actual object that does the shading.
|
|
|
|
* Size of storage must be >= contextSize.
|
2011-04-11 19:01:12 +00:00
|
|
|
*/
|
2014-05-05 18:39:18 +00:00
|
|
|
Context* createContext(const ContextRec&, void* storage) const;
|
2008-12-17 15:59:43 +00:00
|
|
|
|
2011-04-11 19:01:12 +00:00
|
|
|
/**
|
Revert of Revert of Extract most of the mutable state of SkShader into a separate Context object. (https://codereview.chromium.org/249643002/)
Reason for revert:
Chromium side change landed along side DEPS roll that includes r14323.
Original issue's description:
> Revert of Extract most of the mutable state of SkShader into a separate Context object. (https://codereview.chromium.org/207683004/)
>
> Reason for revert:
> This is blocking the DEPS roll into Chromium. Failures can be seen here:
>
> http://build.chromium.org/p/tryserver.chromium/builders/android_dbg/builds/174333
>
> Original issue's description:
> > Extract most of the mutable state of SkShader into a separate Context object.
> >
> > SkShader currently stores some state during draw calls via setContext(...).
> > Move that mutable state into a separate SkShader::Context class that is
> > constructed on demand for the duration of the draw.
> >
> > Calls to setContext() are replaced with createContext() which returns a context
> > corresponding to the shader object or NULL if the parameters to createContext
> > are invalid.
> >
> > TEST=out/Debug/dm
> > BUG=skia:1976
> >
> > Committed: http://code.google.com/p/skia/source/detail?r=14216
> >
> > Committed: http://code.google.com/p/skia/source/detail?r=14323
>
> TBR=scroggo@google.com,skyostil@chromium.org,tomhudson@chromium.org,senorblanco@chromium.org,reed@google.com,bungeman@google.com,dominikg@chromium.org
> NOTREECHECKS=true
> NOTRY=true
> BUG=skia:1976
>
> Committed: http://code.google.com/p/skia/source/detail?r=14326
R=scroggo@google.com, skyostil@chromium.org, tomhudson@chromium.org, senorblanco@chromium.org, reed@google.com, bungeman@google.com, dominikg@chromium.org
TBR=bungeman@google.com, dominikg@chromium.org, reed@google.com, scroggo@google.com, senorblanco@chromium.org, skyostil@chromium.org, tomhudson@chromium.org
NOTREECHECKS=true
NOTRY=true
BUG=skia:1976
Author: bsalomon@google.com
Review URL: https://codereview.chromium.org/246403013
git-svn-id: http://skia.googlecode.com/svn/trunk@14328 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-04-23 19:10:51 +00:00
|
|
|
* Return the size of a Context returned by createContext.
|
2014-04-30 23:29:02 +00:00
|
|
|
*
|
|
|
|
* Override this if your subclass overrides createContext, to return the correct size of
|
|
|
|
* your subclass' context.
|
2011-04-11 19:01:12 +00:00
|
|
|
*/
|
2014-04-30 23:29:02 +00:00
|
|
|
virtual size_t contextSize() const;
|
2008-12-17 15:59:43 +00:00
|
|
|
|
2011-04-11 19:01:12 +00:00
|
|
|
/**
|
|
|
|
* Helper to check the flags to know if it is legal to call shadeSpan16()
|
|
|
|
*/
|
2008-12-17 15:59:43 +00:00
|
|
|
static bool CanCallShadeSpan16(uint32_t flags) {
|
|
|
|
return (flags & kHasSpan16_Flag) != 0;
|
|
|
|
}
|
|
|
|
|
2010-12-20 18:26:13 +00:00
|
|
|
/**
|
|
|
|
Gives method bitmap should be read to implement a shader.
|
|
|
|
Also determines number and interpretation of "extra" parameters returned
|
|
|
|
by asABitmap
|
|
|
|
*/
|
|
|
|
enum BitmapType {
|
|
|
|
kNone_BitmapType, //<! Shader is not represented as a bitmap
|
2011-03-07 19:29:00 +00:00
|
|
|
kDefault_BitmapType,//<! Access bitmap using local coords transformed
|
2010-12-20 18:26:13 +00:00
|
|
|
// by matrix. No extras
|
2011-03-07 19:29:00 +00:00
|
|
|
kRadial_BitmapType, //<! Access bitmap by transforming local coordinates
|
|
|
|
// by the matrix and taking the distance of result
|
|
|
|
// from (0,0) as bitmap column. Bitmap is 1 pixel
|
2010-12-20 18:26:13 +00:00
|
|
|
// tall. No extras
|
2011-03-07 19:29:00 +00:00
|
|
|
kSweep_BitmapType, //<! Access bitmap by transforming local coordinates
|
2010-12-20 18:26:13 +00:00
|
|
|
// by the matrix and taking the angle of result
|
|
|
|
// to (0,0) as bitmap x coord, where angle = 0 is
|
2011-03-07 19:29:00 +00:00
|
|
|
// bitmap left edge of bitmap = 2pi is the
|
2010-12-20 18:26:13 +00:00
|
|
|
// right edge. Bitmap is 1 pixel tall. No extras
|
2011-02-24 00:21:06 +00:00
|
|
|
kTwoPointRadial_BitmapType,
|
2011-03-07 19:29:00 +00:00
|
|
|
//<! Matrix transforms to space where (0,0) is
|
2010-12-20 18:26:13 +00:00
|
|
|
// the center of the starting circle. The second
|
2011-03-07 19:29:00 +00:00
|
|
|
// circle will be centered (x, 0) where x may be
|
|
|
|
// 0. The post-matrix space is normalized such
|
2010-12-20 18:26:13 +00:00
|
|
|
// that 1 is the second radius - first radius.
|
|
|
|
// Three extra parameters are returned:
|
2011-03-07 19:29:00 +00:00
|
|
|
// 0: x-offset of second circle center
|
2010-12-20 18:26:13 +00:00
|
|
|
// to first.
|
2011-03-07 19:29:00 +00:00
|
|
|
// 1: radius of first circle in post-matrix
|
2010-12-20 18:26:13 +00:00
|
|
|
// space
|
|
|
|
// 2: the second radius minus the first radius
|
2011-03-07 19:29:00 +00:00
|
|
|
// in pre-transformed space.
|
2012-07-03 13:43:35 +00:00
|
|
|
kTwoPointConical_BitmapType,
|
|
|
|
//<! Matrix transforms to space where (0,0) is
|
|
|
|
// the center of the starting circle. The second
|
|
|
|
// circle will be centered (x, 0) where x may be
|
|
|
|
// 0.
|
|
|
|
// Three extra parameters are returned:
|
|
|
|
// 0: x-offset of second circle center
|
|
|
|
// to first.
|
|
|
|
// 1: radius of first circle
|
|
|
|
// 2: the second radius minus the first radius
|
2012-07-19 15:16:19 +00:00
|
|
|
kLinear_BitmapType, //<! Access bitmap using local coords transformed
|
|
|
|
// by matrix. No extras
|
2011-02-24 00:21:06 +00:00
|
|
|
|
2012-07-19 15:16:19 +00:00
|
|
|
kLast_BitmapType = kLinear_BitmapType
|
2010-12-20 18:26:13 +00:00
|
|
|
};
|
2008-12-17 15:59:43 +00:00
|
|
|
/** Optional methods for shaders that can pretend to be a bitmap/texture
|
2011-03-07 19:29:00 +00:00
|
|
|
to play along with opengl. Default just returns kNone_BitmapType and
|
2010-12-20 18:26:13 +00:00
|
|
|
ignores the out parameters.
|
|
|
|
|
|
|
|
@param outTexture if non-NULL will be the bitmap representing the shader
|
|
|
|
after return.
|
|
|
|
@param outMatrix if non-NULL will be the matrix to apply to vertices
|
|
|
|
to access the bitmap after return.
|
|
|
|
@param xy if non-NULL will be the tile modes that should be
|
|
|
|
used to access the bitmap after return.
|
|
|
|
@param twoPointRadialParams Two extra return values needed for two point
|
|
|
|
radial bitmaps. The first is the x-offset of
|
|
|
|
the second point and the second is the radius
|
|
|
|
about the first point.
|
2008-12-17 15:59:43 +00:00
|
|
|
*/
|
2010-12-20 18:26:13 +00:00
|
|
|
virtual BitmapType asABitmap(SkBitmap* outTexture, SkMatrix* outMatrix,
|
2012-07-25 17:18:31 +00:00
|
|
|
TileMode xy[2]) const;
|
2008-12-17 15:59:43 +00:00
|
|
|
|
2011-02-24 00:21:06 +00:00
|
|
|
/**
|
|
|
|
* If the shader subclass can be represented as a gradient, asAGradient
|
|
|
|
* returns the matching GradientType enum (or kNone_GradientType if it
|
|
|
|
* cannot). Also, if info is not null, asAGradient populates info with
|
|
|
|
* the relevant (see below) parameters for the gradient. fColorCount
|
|
|
|
* is both an input and output parameter. On input, it indicates how
|
|
|
|
* many entries in fColors and fColorOffsets can be used, if they are
|
|
|
|
* non-NULL. After asAGradient has run, fColorCount indicates how
|
|
|
|
* many color-offset pairs there are in the gradient. If there is
|
|
|
|
* insufficient space to store all of the color-offset pairs, fColors
|
|
|
|
* and fColorOffsets will not be altered. fColorOffsets specifies
|
|
|
|
* where on the range of 0 to 1 to transition to the given color.
|
|
|
|
* The meaning of fPoint and fRadius is dependant on the type of gradient.
|
|
|
|
*
|
|
|
|
* None:
|
|
|
|
* info is ignored.
|
|
|
|
* Color:
|
|
|
|
* fColorOffsets[0] is meaningless.
|
|
|
|
* Linear:
|
|
|
|
* fPoint[0] and fPoint[1] are the end-points of the gradient
|
|
|
|
* Radial:
|
|
|
|
* fPoint[0] and fRadius[0] are the center and radius
|
|
|
|
* Radial2:
|
|
|
|
* fPoint[0] and fRadius[0] are the center and radius of the 1st circle
|
|
|
|
* fPoint[1] and fRadius[1] are the center and radius of the 2nd circle
|
|
|
|
* Sweep:
|
|
|
|
* fPoint[0] is the center of the sweep.
|
|
|
|
*/
|
|
|
|
|
|
|
|
enum GradientType {
|
|
|
|
kNone_GradientType,
|
|
|
|
kColor_GradientType,
|
|
|
|
kLinear_GradientType,
|
|
|
|
kRadial_GradientType,
|
|
|
|
kRadial2_GradientType,
|
|
|
|
kSweep_GradientType,
|
2012-06-07 20:26:47 +00:00
|
|
|
kConical_GradientType,
|
|
|
|
kLast_GradientType = kConical_GradientType
|
2011-02-24 00:21:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct GradientInfo {
|
|
|
|
int fColorCount; //!< In-out parameter, specifies passed size
|
|
|
|
// of fColors/fColorOffsets on input, and
|
|
|
|
// actual number of colors/offsets on
|
|
|
|
// output.
|
|
|
|
SkColor* fColors; //!< The colors in the gradient.
|
|
|
|
SkScalar* fColorOffsets; //!< The unit offset for color transitions.
|
|
|
|
SkPoint fPoint[2]; //!< Type specific, see above.
|
|
|
|
SkScalar fRadius[2]; //!< Type specific, see above.
|
|
|
|
TileMode fTileMode; //!< The tile mode used.
|
2013-05-24 14:58:44 +00:00
|
|
|
uint32_t fGradientFlags; //!< see SkGradientShader::Flags
|
2011-02-24 00:21:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
virtual GradientType asAGradient(GradientInfo* info) const;
|
|
|
|
|
2014-05-13 18:14:45 +00:00
|
|
|
/**
|
|
|
|
* If the shader subclass is composed of two shaders, return true, and if rec is not NULL,
|
|
|
|
* fill it out with info about the shader.
|
2014-05-14 14:28:34 +00:00
|
|
|
*
|
|
|
|
* These are bare pointers; the ownership and reference count are unchanged.
|
2014-05-13 18:14:45 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
struct ComposeRec {
|
|
|
|
const SkShader* fShaderA;
|
|
|
|
const SkShader* fShaderB;
|
|
|
|
const SkXfermode* fMode;
|
|
|
|
};
|
|
|
|
|
|
|
|
virtual bool asACompose(ComposeRec* rec) const { return false; }
|
|
|
|
|
|
|
|
|
2012-07-20 20:02:43 +00:00
|
|
|
/**
|
2013-09-06 15:31:06 +00:00
|
|
|
* If the shader subclass has a GrEffect implementation, this resturns the effect to install.
|
|
|
|
* The incoming color to the effect has r=g=b=a all extracted from the SkPaint's alpha.
|
|
|
|
* The output color should be the computed SkShader premul color modulated by the incoming
|
|
|
|
* color. The GrContext may be used by the effect to create textures. The GPU device does not
|
Revert of Revert of Extract most of the mutable state of SkShader into a separate Context object. (https://codereview.chromium.org/249643002/)
Reason for revert:
Chromium side change landed along side DEPS roll that includes r14323.
Original issue's description:
> Revert of Extract most of the mutable state of SkShader into a separate Context object. (https://codereview.chromium.org/207683004/)
>
> Reason for revert:
> This is blocking the DEPS roll into Chromium. Failures can be seen here:
>
> http://build.chromium.org/p/tryserver.chromium/builders/android_dbg/builds/174333
>
> Original issue's description:
> > Extract most of the mutable state of SkShader into a separate Context object.
> >
> > SkShader currently stores some state during draw calls via setContext(...).
> > Move that mutable state into a separate SkShader::Context class that is
> > constructed on demand for the duration of the draw.
> >
> > Calls to setContext() are replaced with createContext() which returns a context
> > corresponding to the shader object or NULL if the parameters to createContext
> > are invalid.
> >
> > TEST=out/Debug/dm
> > BUG=skia:1976
> >
> > Committed: http://code.google.com/p/skia/source/detail?r=14216
> >
> > Committed: http://code.google.com/p/skia/source/detail?r=14323
>
> TBR=scroggo@google.com,skyostil@chromium.org,tomhudson@chromium.org,senorblanco@chromium.org,reed@google.com,bungeman@google.com,dominikg@chromium.org
> NOTREECHECKS=true
> NOTRY=true
> BUG=skia:1976
>
> Committed: http://code.google.com/p/skia/source/detail?r=14326
R=scroggo@google.com, skyostil@chromium.org, tomhudson@chromium.org, senorblanco@chromium.org, reed@google.com, bungeman@google.com, dominikg@chromium.org
TBR=bungeman@google.com, dominikg@chromium.org, reed@google.com, scroggo@google.com, senorblanco@chromium.org, skyostil@chromium.org, tomhudson@chromium.org
NOTREECHECKS=true
NOTRY=true
BUG=skia:1976
Author: bsalomon@google.com
Review URL: https://codereview.chromium.org/246403013
git-svn-id: http://skia.googlecode.com/svn/trunk@14328 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-04-23 19:10:51 +00:00
|
|
|
* call createContext. Instead we pass the SkPaint here in case the shader needs paint info.
|
2012-07-20 20:02:43 +00:00
|
|
|
*/
|
2014-05-09 20:28:11 +00:00
|
|
|
virtual GrEffectRef* asNewEffect(GrContext* context, const SkPaint& paint,
|
|
|
|
const SkMatrix* localMatrixOrNull) const;
|
2012-07-20 20:02:43 +00:00
|
|
|
|
2014-05-13 18:14:45 +00:00
|
|
|
#ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK
|
|
|
|
/**
|
|
|
|
* If the shader is a custom shader which has data the caller might want, call this function
|
|
|
|
* to get that data.
|
|
|
|
*/
|
|
|
|
virtual bool asACustomShader(void** customData) const { return false; }
|
|
|
|
#endif
|
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
// Factory methods for stock shaders
|
|
|
|
|
2014-05-05 18:39:18 +00:00
|
|
|
/**
|
|
|
|
* Call this to create a new "empty" shader, that will not draw anything.
|
|
|
|
*/
|
|
|
|
static SkShader* CreateEmptyShader();
|
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
/** Call this to create a new shader that will draw with the specified bitmap.
|
2012-05-03 20:14:26 +00:00
|
|
|
*
|
|
|
|
* If the bitmap cannot be used (e.g. has no pixels, or its dimensions
|
|
|
|
* exceed implementation limits (currently at 64K - 1)) then SkEmptyShader
|
|
|
|
* may be returned.
|
|
|
|
*
|
2013-12-05 15:43:19 +00:00
|
|
|
* If the src is kA8_Config then that mask will be colorized using the color on
|
|
|
|
* the paint.
|
|
|
|
*
|
2012-05-03 20:14:26 +00:00
|
|
|
* @param src The bitmap to use inside the shader
|
|
|
|
* @param tmx The tiling mode to use when sampling the bitmap in the x-direction.
|
|
|
|
* @param tmy The tiling mode to use when sampling the bitmap in the y-direction.
|
|
|
|
* @return Returns a new shader object. Note: this function never returns null.
|
2008-12-17 15:59:43 +00:00
|
|
|
*/
|
|
|
|
static SkShader* CreateBitmapShader(const SkBitmap& src,
|
2014-04-28 14:55:39 +00:00
|
|
|
TileMode tmx, TileMode tmy,
|
|
|
|
const SkMatrix* localMatrix = NULL);
|
2008-12-17 15:59:43 +00:00
|
|
|
|
2014-04-08 15:19:34 +00:00
|
|
|
/** Call this to create a new shader that will draw with the specified picture.
|
|
|
|
*
|
|
|
|
* @param src The picture to use inside the shader (if not NULL, its ref count
|
2014-04-21 19:33:12 +00:00
|
|
|
* is incremented). The SkPicture must not be changed after
|
|
|
|
* successfully creating a picture shader.
|
|
|
|
* FIXME: src cannot be const due to SkCanvas::drawPicture
|
2014-04-08 15:19:34 +00:00
|
|
|
* @param tmx The tiling mode to use when sampling the bitmap in the x-direction.
|
|
|
|
* @param tmy The tiling mode to use when sampling the bitmap in the y-direction.
|
|
|
|
* @return Returns a new shader object. Note: this function never returns null.
|
|
|
|
*/
|
2014-05-02 21:23:52 +00:00
|
|
|
static SkShader* CreatePictureShader(SkPicture* src, TileMode tmx, TileMode tmy,
|
|
|
|
const SkMatrix* localMatrix = NULL);
|
2014-04-08 15:19:34 +00:00
|
|
|
|
2014-05-07 22:26:37 +00:00
|
|
|
/**
|
|
|
|
* Return a shader that will apply the specified localMatrix to the proxy shader.
|
|
|
|
* The specified matrix will be applied before any matrix associated with the proxy.
|
|
|
|
*
|
|
|
|
* Note: ownership of the proxy is not transferred (though a ref is taken).
|
|
|
|
*/
|
|
|
|
static SkShader* CreateLocalMatrixShader(SkShader* proxy, const SkMatrix& localMatrix);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* If this shader can be represented by another shader + a localMatrix, return that shader
|
|
|
|
* and, if not NULL, the localMatrix. If not, return NULL and ignore the localMatrix parameter.
|
|
|
|
*
|
|
|
|
* Note: the returned shader (if not NULL) will have been ref'd, and it is the responsibility
|
|
|
|
* of the caller to balance that with unref() when they are done.
|
|
|
|
*/
|
|
|
|
virtual SkShader* refAsALocalMatrixShader(SkMatrix* localMatrix) const;
|
|
|
|
|
2014-03-13 18:02:17 +00:00
|
|
|
SK_TO_STRING_VIRT()
|
2013-10-23 17:06:21 +00:00
|
|
|
SK_DEFINE_FLATTENABLE_TYPE(SkShader)
|
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
protected:
|
2014-01-30 18:58:24 +00:00
|
|
|
SkShader(SkReadBuffer& );
|
|
|
|
virtual void flatten(SkWriteBuffer&) const SK_OVERRIDE;
|
Revert of Revert of Extract most of the mutable state of SkShader into a separate Context object. (https://codereview.chromium.org/249643002/)
Reason for revert:
Chromium side change landed along side DEPS roll that includes r14323.
Original issue's description:
> Revert of Extract most of the mutable state of SkShader into a separate Context object. (https://codereview.chromium.org/207683004/)
>
> Reason for revert:
> This is blocking the DEPS roll into Chromium. Failures can be seen here:
>
> http://build.chromium.org/p/tryserver.chromium/builders/android_dbg/builds/174333
>
> Original issue's description:
> > Extract most of the mutable state of SkShader into a separate Context object.
> >
> > SkShader currently stores some state during draw calls via setContext(...).
> > Move that mutable state into a separate SkShader::Context class that is
> > constructed on demand for the duration of the draw.
> >
> > Calls to setContext() are replaced with createContext() which returns a context
> > corresponding to the shader object or NULL if the parameters to createContext
> > are invalid.
> >
> > TEST=out/Debug/dm
> > BUG=skia:1976
> >
> > Committed: http://code.google.com/p/skia/source/detail?r=14216
> >
> > Committed: http://code.google.com/p/skia/source/detail?r=14323
>
> TBR=scroggo@google.com,skyostil@chromium.org,tomhudson@chromium.org,senorblanco@chromium.org,reed@google.com,bungeman@google.com,dominikg@chromium.org
> NOTREECHECKS=true
> NOTRY=true
> BUG=skia:1976
>
> Committed: http://code.google.com/p/skia/source/detail?r=14326
R=scroggo@google.com, skyostil@chromium.org, tomhudson@chromium.org, senorblanco@chromium.org, reed@google.com, bungeman@google.com, dominikg@chromium.org
TBR=bungeman@google.com, dominikg@chromium.org, reed@google.com, scroggo@google.com, senorblanco@chromium.org, skyostil@chromium.org, tomhudson@chromium.org
NOTREECHECKS=true
NOTRY=true
BUG=skia:1976
Author: bsalomon@google.com
Review URL: https://codereview.chromium.org/246403013
git-svn-id: http://skia.googlecode.com/svn/trunk@14328 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-04-23 19:10:51 +00:00
|
|
|
|
2014-05-05 18:39:18 +00:00
|
|
|
bool computeTotalInverse(const ContextRec&, SkMatrix* totalInverse) const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Your subclass must also override contextSize() if it overrides onCreateContext().
|
|
|
|
* Base class impl returns NULL.
|
|
|
|
*/
|
|
|
|
virtual Context* onCreateContext(const ContextRec&, void* storage) const;
|
Revert of Revert of Extract most of the mutable state of SkShader into a separate Context object. (https://codereview.chromium.org/249643002/)
Reason for revert:
Chromium side change landed along side DEPS roll that includes r14323.
Original issue's description:
> Revert of Extract most of the mutable state of SkShader into a separate Context object. (https://codereview.chromium.org/207683004/)
>
> Reason for revert:
> This is blocking the DEPS roll into Chromium. Failures can be seen here:
>
> http://build.chromium.org/p/tryserver.chromium/builders/android_dbg/builds/174333
>
> Original issue's description:
> > Extract most of the mutable state of SkShader into a separate Context object.
> >
> > SkShader currently stores some state during draw calls via setContext(...).
> > Move that mutable state into a separate SkShader::Context class that is
> > constructed on demand for the duration of the draw.
> >
> > Calls to setContext() are replaced with createContext() which returns a context
> > corresponding to the shader object or NULL if the parameters to createContext
> > are invalid.
> >
> > TEST=out/Debug/dm
> > BUG=skia:1976
> >
> > Committed: http://code.google.com/p/skia/source/detail?r=14216
> >
> > Committed: http://code.google.com/p/skia/source/detail?r=14323
>
> TBR=scroggo@google.com,skyostil@chromium.org,tomhudson@chromium.org,senorblanco@chromium.org,reed@google.com,bungeman@google.com,dominikg@chromium.org
> NOTREECHECKS=true
> NOTRY=true
> BUG=skia:1976
>
> Committed: http://code.google.com/p/skia/source/detail?r=14326
R=scroggo@google.com, skyostil@chromium.org, tomhudson@chromium.org, senorblanco@chromium.org, reed@google.com, bungeman@google.com, dominikg@chromium.org
TBR=bungeman@google.com, dominikg@chromium.org, reed@google.com, scroggo@google.com, senorblanco@chromium.org, skyostil@chromium.org, tomhudson@chromium.org
NOTREECHECKS=true
NOTRY=true
BUG=skia:1976
Author: bsalomon@google.com
Review URL: https://codereview.chromium.org/246403013
git-svn-id: http://skia.googlecode.com/svn/trunk@14328 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-04-23 19:10:51 +00:00
|
|
|
|
2014-05-05 18:39:18 +00:00
|
|
|
private:
|
|
|
|
SkMatrix fLocalMatrix;
|
2008-12-17 15:59:43 +00:00
|
|
|
|
|
|
|
typedef SkFlattenable INHERITED;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|