1ec3ed6a5ebf6f2c406d7bcf94b6bc34fcaeb976eepoger@google.com
2ec3ed6a5ebf6f2c406d7bcf94b6bc34fcaeb976eepoger@google.com/*
3ec3ed6a5ebf6f2c406d7bcf94b6bc34fcaeb976eepoger@google.com * Copyright 2006 The Android Open Source Project
4ec3ed6a5ebf6f2c406d7bcf94b6bc34fcaeb976eepoger@google.com *
5ec3ed6a5ebf6f2c406d7bcf94b6bc34fcaeb976eepoger@google.com * Use of this source code is governed by a BSD-style license that can be
6ec3ed6a5ebf6f2c406d7bcf94b6bc34fcaeb976eepoger@google.com * found in the LICENSE file.
7ec3ed6a5ebf6f2c406d7bcf94b6bc34fcaeb976eepoger@google.com */
8ec3ed6a5ebf6f2c406d7bcf94b6bc34fcaeb976eepoger@google.com
98a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com
108a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com#include "SkDrawDiscrete.h"
118a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com#include "SkAnimateMaker.h"
128a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com#include "SkPaint.h"
138a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com#include "SkDiscretePathEffect.h"
148a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com
158a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com#if SK_USE_CONDENSED_INFO == 0
168a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com
178a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.comconst SkMemberInfo SkDiscrete::fInfo[] = {
188a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com    SK_MEMBER(deviation, Float),
198a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com    SK_MEMBER(segLength, Float)
208a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com};
218a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com
228a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com#endif
238a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com
248a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.comDEFINE_GET_MEMBER(SkDiscrete);
258a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com
268a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.comSkDiscrete::SkDiscrete() : deviation(0), segLength(0) {
278a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com}
288a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com
298a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.comSkPathEffect* SkDiscrete::getPathEffect() {
308a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com    if (deviation <= 0 || segLength <= 0)
318a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com        return NULL;
328a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com    else
330a2bf90dccba3bde188e0386a7f0c60e6dde1ae9commit-bot@chromium.org        return SkDiscretePathEffect::Create(segLength, deviation);
348a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com}
35