15c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)/*
25c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * Copyright (C) 2006 Apple Inc. All rights reserved.
35c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *
45c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * Redistribution and use in source and binary forms, with or without
55c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * modification, are permitted provided that the following conditions
65c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * are met:
75c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * 1. Redistributions of source code must retain the above copyright
85c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *    notice, this list of conditions and the following disclaimer.
95c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * 2. Redistributions in binary form must reproduce the above copyright
105c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *    notice, this list of conditions and the following disclaimer in the
115c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *    documentation and/or other materials provided with the distribution.
125c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *
135c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
145c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
155c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
165c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
175c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
185c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
195c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
205c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
215c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
225c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2302772c6a72f1ee0b226341a4f4439970c29fc861Ben Murdoch * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
245c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) */
255c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
26a9984bf9ddc3cf73fdae3f29134a2bab379e7029Ben Murdoch// http://www.w3.org/TR/filter-effects/#InterfaceSVGFETurbulenceElement
27a9984bf9ddc3cf73fdae3f29134a2bab379e7029Ben Murdoch
285c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)[
29a9984bf9ddc3cf73fdae3f29134a2bab379e7029Ben Murdoch    DoNotCheckConstants,
30f5e4ad553afbc08dd2e729bb77e937a9a94d5827Torne (Richard Coles)] interface SVGFETurbulenceElement : SVGElement {
315c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    // Turbulence Types
32a9984bf9ddc3cf73fdae3f29134a2bab379e7029Ben Murdoch    const unsigned short SVG_TURBULENCE_TYPE_UNKNOWN = 0;
335c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    const unsigned short SVG_TURBULENCE_TYPE_FRACTALNOISE = 1;
34a9984bf9ddc3cf73fdae3f29134a2bab379e7029Ben Murdoch    const unsigned short SVG_TURBULENCE_TYPE_TURBULENCE = 2;
355c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
365c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    // Stitch Options
37a9984bf9ddc3cf73fdae3f29134a2bab379e7029Ben Murdoch    const unsigned short SVG_STITCHTYPE_UNKNOWN = 0;
38a9984bf9ddc3cf73fdae3f29134a2bab379e7029Ben Murdoch    const unsigned short SVG_STITCHTYPE_STITCH = 1;
395c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    const unsigned short SVG_STITCHTYPE_NOSTITCH = 2;
405c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
41a9984bf9ddc3cf73fdae3f29134a2bab379e7029Ben Murdoch    readonly attribute SVGAnimatedNumber baseFrequencyX;
42a9984bf9ddc3cf73fdae3f29134a2bab379e7029Ben Murdoch    readonly attribute SVGAnimatedNumber baseFrequencyY;
43a9984bf9ddc3cf73fdae3f29134a2bab379e7029Ben Murdoch    readonly attribute SVGAnimatedInteger numOctaves;
44a9984bf9ddc3cf73fdae3f29134a2bab379e7029Ben Murdoch    readonly attribute SVGAnimatedNumber seed;
455c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    readonly attribute SVGAnimatedEnumeration stitchTiles;
465c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    readonly attribute SVGAnimatedEnumeration type;
475c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)};
485c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
49591b958dee2cf159d33a0b931e6231072eaf38d5Ben MurdochSVGFETurbulenceElement implements SVGFilterPrimitiveStandardAttributes;
50