chromium/third_party/skia/src/core/SkBlitRow.h

/*
 * Copyright 2011 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef SkBlitRow_DEFINED
#define SkBlitRow_DEFINED

#include "include/core/SkBitmap.h"
#include "include/core/SkColor.h"

class SkBlitRow {};

namespace SkOpts {
    extern void (*blit_row_color32)(SkPMColor* dst, int count, SkPMColor color);
    extern void (*blit_row_s32a_opaque)(SkPMColor* dst, const SkPMColor* src,
                                        int count, U8CPU alpha);

    void Init_BlitRow();
}  // namespace SkOpts

#endif