| Index: src/core/SkUtils.cpp
|
| diff --git a/src/core/SkUtils.cpp b/src/core/SkUtils.cpp
|
| index b063071932178b81e62164c08bcbc8208d98e2f7..33ea4db47c0bcfcdd0f49dab09c99e40cde2898c 100644
|
| --- a/src/core/SkUtils.cpp
|
| +++ b/src/core/SkUtils.cpp
|
| @@ -134,12 +134,12 @@ SkMemcpy32Proc choose_memcpy32() {
|
|
|
| } // namespace
|
|
|
| -void sk_memset16(uint16_t dst[], uint16_t value, int count) {
|
| +void sk_memset16_large(uint16_t dst[], uint16_t value, int count) {
|
| SK_DECLARE_STATIC_LAZY_FN_PTR(SkMemset16Proc, proc, choose_memset16);
|
| proc.get()(dst, value, count);
|
| }
|
|
|
| -void sk_memset32(uint32_t dst[], uint32_t value, int count) {
|
| +void sk_memset32_large(uint32_t dst[], uint32_t value, int count) {
|
| SK_DECLARE_STATIC_LAZY_FN_PTR(SkMemset32Proc, proc, choose_memset32);
|
| proc.get()(dst, value, count);
|
| }
|
|
|