aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu
diff options
context:
space:
mode:
authorGravatar bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-07-26 14:12:23 +0000
committerGravatar bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-07-26 14:12:23 +0000
commiteb9568a13d247e77847dbc1acbdac7ec59cc70ee (patch)
tree68b546f59597be746984dd20bf931e7789d754e6 /src/gpu
parent0b7ad989b4d0fb67b8157fd42eb48a9d298d133e (diff)
Fix reversed bilerp setting in GrTextContext in r4773
Review URL: http://codereview.appspot.com/6455044/ git-svn-id: http://skia.googlecode.com/svn/trunk@4778 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'src/gpu')
-rw-r--r--src/gpu/GrTextContext.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpu/GrTextContext.cpp b/src/gpu/GrTextContext.cpp
index 925fdb32f4..86b73f8690 100644
--- a/src/gpu/GrTextContext.cpp
+++ b/src/gpu/GrTextContext.cpp
@@ -30,7 +30,7 @@ void GrTextContext::flushGlyphs() {
if (fCurrVertex > 0) {
// setup our sampler state for our text texture/atlas
drawState->sampler(kGlyphMaskStage)->reset(SkShader::kRepeat_TileMode,
- fExtMatrix.isIdentity());
+ !fExtMatrix.isIdentity());
GrAssert(GrIsALIGN4(fCurrVertex));
GrAssert(fCurrTexture);