/* * 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. */ #ifndef SkSpriteBlitter_DEFINED #define SkSpriteBlitter_DEFINED #include "include/core/SkPixmap.h" #include "include/core/SkShader.h" #include "src/core/SkBlitter.h" class SkPaint; // SkSpriteBlitter specializes SkBlitter in a way to move large rectangles of pixels around. // Because of this use, the main primitive shifts from blitH style things to the more efficient // blitRect. class SkSpriteBlitter : public SkBlitter { … }; #endif