/* * Copyright 2006 The Android Open Source Project * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ // Inspired by Rob Johnson's most excellent QuickDraw GX sample code #ifndef SkCamera_DEFINED #define SkCamera_DEFINED #include "include/core/SkM44.h" #include "include/core/SkMatrix.h" #include "include/core/SkScalar.h" #include "include/core/SkTypes.h" #include "include/private/base/SkNoncopyable.h" // NOTE -- This entire header / impl is deprecated, and will be removed from Skia soon. // // Skia now has support for a 4x matrix (SkM44) in SkCanvas. // class SkCanvas; // DEPRECATED class SkPatch3D { … }; // DEPRECATED class SkCamera3D { … }; // DEPRECATED class SK_API Sk3DView : SkNoncopyable { … }; #endif