aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/gl/GrGLSL.cpp
diff options
context:
space:
mode:
authorGravatar bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-08-29 19:35:44 +0000
committerGravatar bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-08-29 19:35:44 +0000
commitd9e0181405c9853ffd20502555200205a5ab09b1 (patch)
tree7b026a6615e4b76d5eba16de2d1d6ffaa80f1449 /src/gpu/gl/GrGLSL.cpp
parent57cdcc091bf8ff4c6da90c6dac8ca3780bfe3b3c (diff)
Linux warning fixes
Review URL: https://codereview.appspot.com/6500045/ git-svn-id: http://skia.googlecode.com/svn/trunk@5337 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'src/gpu/gl/GrGLSL.cpp')
-rw-r--r--src/gpu/gl/GrGLSL.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpu/gl/GrGLSL.cpp b/src/gpu/gl/GrGLSL.cpp
index 21e9183b6c..c995a34652 100644
--- a/src/gpu/gl/GrGLSL.cpp
+++ b/src/gpu/gl/GrGLSL.cpp
@@ -115,7 +115,7 @@ GrSLConstantVec GrGLSLModulate4f(SkString* outAppend,
outAppend->append(GrGLSLZerosVecf(4));
return kZeros_GrSLConstantVec;
} else {
- outAppend->appendf(GrGLSLOnesVecf(4));
+ outAppend->append(GrGLSLOnesVecf(4));
return kOnes_GrSLConstantVec;
}
} else if (!has0) {