Home | History | Annotate | Download | only in opts
      1 /*
      2  * Copyright 2015 Google Inc.
      3  *
      4  * Use of this source code is governed by a BSD-style license that can be
      5  * found in the LICENSE file.
      6  */
      7 
      8 #ifndef SkBlitMask_opts_arm_neon_DEFINED
      9 #define SkBlitMask_opts_arm_neon_DEFINED
     10 
     11 #include "SkColor.h"
     12 #include "SkBlitMask.h"
     13 
     14 extern void SkBlitLCD16OpaqueRow_neon(SkPMColor dst[], const uint16_t src[],
     15                                       SkColor color, int width,
     16                                       SkPMColor opaqueDst);
     17 
     18 extern void SkBlitLCD16Row_neon(SkPMColor dst[], const uint16_t src[],
     19                                 SkColor color, int width, SkPMColor);
     20 
     21 #endif // #ifndef SkBlitMask_opts_arm_neon_DEFINED
     22