aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkBitmapProcState.h
diff options
context:
space:
mode:
authorGravatar herb <herb@google.com>2016-03-23 09:00:33 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-03-23 09:00:33 -0700
commit6eff52afb458bf6702a715d88611fd571544ef73 (patch)
treea2ffdedd2b0b1fe888dbc3faff6b1f894803f5c2 /src/core/SkBitmapProcState.h
parent0b8321e19b565f3a13af85b55f046c0a74396a7d (diff)
WIP: experimental bilerp pipeline.
Diffstat (limited to 'src/core/SkBitmapProcState.h')
-rw-r--r--src/core/SkBitmapProcState.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/SkBitmapProcState.h b/src/core/SkBitmapProcState.h
index 26e8db8858..40dc31a5e0 100644
--- a/src/core/SkBitmapProcState.h
+++ b/src/core/SkBitmapProcState.h
@@ -35,7 +35,9 @@ struct SkBitmapProcInfo {
const SkBitmapProvider fProvider;
SkPixmap fPixmap;
- SkMatrix fInvMatrix; // copy of what is in fBMState, can we remove the dup?
+ SkMatrix fInvMatrix; // This changes based on tile mode.
+ // TODO: combine fInvMatrix and fRealInvMatrix.
+ SkMatrix fRealInvMatrix; // The actual inverse matrix.
SkColor fPaintColor;
SkShader::TileMode fTileModeX;
SkShader::TileMode fTileModeY;