Remove "EXPERIMENTAL" label from kDecal_TileMode

Should be fully supported now.

Change-Id: If269e57840343917353995af05d6044a9189bc99
Reviewed-on: https://skia-review.googlesource.com/c/179522
Auto-Submit: Florin Malita <fmalita@chromium.org>
Commit-Queue: Michael Ludwig <michaelludwig@google.com>
Reviewed-by: Michael Ludwig <michaelludwig@google.com>
This commit is contained in:
Florin Malita 2018-12-20 09:25:10 -05:00 committed by Skia Commit-Bot
parent 7db91db6a0
commit 700ae55b22

View File

@ -40,22 +40,25 @@ class GrFragmentProcessor;
class SK_API SkShader : public SkFlattenable {
public:
enum TileMode {
/** replicate the edge color if the shader draws outside of its
* original bounds
/**
* Replicate the edge color if the shader draws outside of its
* original bounds.
*/
kClamp_TileMode,
/** repeat the shader's image horizontally and vertically */
/**
* 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
/**
* Repeat the shader's image horizontally and vertically, alternating
* mirror images so that adjacent images always seam.
*/
kMirror_TileMode,
/**
* Only draw within the original domain, return transparent-black everywhere else.
* EXPERIMENTAL -- DO NOT USE YET
*/
kDecal_TileMode,