aboutsummaryrefslogtreecommitdiffhomepage
path: root/gpu
diff options
context:
space:
mode:
authorGravatar tomhudson@google.com <tomhudson@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-06-30 14:47:55 +0000
committerGravatar tomhudson@google.com <tomhudson@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-06-30 14:47:55 +0000
commitafec7ba75962517b17293799d3fc70d39fa7dbf2 (patch)
tree7484d7442cb055220b633fafb6c041a7e9d05a0b /gpu
parent3a1f6a06cc706b35d9d6086ffbf5135cbf42bf8a (diff)
Fix bug where equality was used instead of assignment.
git-svn-id: http://skia.googlecode.com/svn/trunk@1767 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'gpu')
-rw-r--r--gpu/src/GrPathUtils.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/gpu/src/GrPathUtils.cpp b/gpu/src/GrPathUtils.cpp
index e78bc54abf..84b9097501 100644
--- a/gpu/src/GrPathUtils.cpp
+++ b/gpu/src/GrPathUtils.cpp
@@ -23,7 +23,7 @@ const GrScalar GrPathUtils::gMinCurveTol (GrFloatToScalar(0.0001f));
uint32_t GrPathUtils::quadraticPointCount(const GrPoint points[],
GrScalar tol) {
if (tol < gMinCurveTol) {
- tol == gMinCurveTol;
+ tol = gMinCurveTol;
}
GrAssert(tol > 0);
@@ -75,7 +75,7 @@ uint32_t GrPathUtils::generateQuadraticPoints(const GrPoint& p0,
uint32_t GrPathUtils::cubicPointCount(const GrPoint points[],
GrScalar tol) {
if (tol < gMinCurveTol) {
- tol == gMinCurveTol;
+ tol = gMinCurveTol;
}
GrAssert(tol > 0);
@@ -131,7 +131,7 @@ uint32_t GrPathUtils::generateCubicPoints(const GrPoint& p0,
int GrPathUtils::worstCasePointCount(const GrPath& path, int* subpaths,
GrScalar tol) {
if (tol < gMinCurveTol) {
- tol == gMinCurveTol;
+ tol = gMinCurveTol;
}
GrAssert(tol > 0);