diff options
Diffstat (limited to 'samplecode')
-rw-r--r-- | samplecode/PerlinPatch.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/samplecode/PerlinPatch.cpp b/samplecode/PerlinPatch.cpp index 9adb08afea..3f04973b3b 100644 --- a/samplecode/PerlinPatch.cpp +++ b/samplecode/PerlinPatch.cpp @@ -16,13 +16,13 @@ static void draw_control_points(SkCanvas* canvas, const SkPoint cubics[12]) { //draw control points SkPaint paint; SkPoint bottom[SkPatchUtils::kNumPtsCubic]; - SkPatchUtils::getBottomCubic(cubics, bottom); + SkPatchUtils::GetBottomCubic(cubics, bottom); SkPoint top[SkPatchUtils::kNumPtsCubic]; - SkPatchUtils::getTopCubic(cubics, top); + SkPatchUtils::GetTopCubic(cubics, top); SkPoint left[SkPatchUtils::kNumPtsCubic]; - SkPatchUtils::getLeftCubic(cubics, left); + SkPatchUtils::GetLeftCubic(cubics, left); SkPoint right[SkPatchUtils::kNumPtsCubic]; - SkPatchUtils::getRightCubic(cubics, right); + SkPatchUtils::GetRightCubic(cubics, right); paint.setColor(SK_ColorBLACK); paint.setStrokeWidth(0.5f); |