Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 /* | |
| 2 * Copyright 2013 The Android Open Source Project | |
| 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 #include <SkColor.h> | |
| 9 | |
| 10 typedef void (*SkMorphologyProc)(const SkPMColor* src, SkPMColor* dst, int radiu s, | |
| 11 int width, int height, int srcStride, int dstSt ride); | |
|
reed1
2013/10/30 15:15:04
are these logically size_t? we use size_t for byte
mtklein
2013/10/30 15:44:47
These strides are pixel counts, so I think it make
reed1
2013/10/30 15:49:52
Ah, then lets rename/document them to make that cl
Stephen White
2013/10/30 19:47:17
Done.
| |
| 12 | |
| 13 SkMorphologyProc SkDilateXGetPlatformProc(); | |
|
reed1
2013/10/30 15:15:04
"if" this list wants to grow in the future, I wond
Stephen White
2013/10/30 19:47:17
I don't forsee the list growing, but I've turned i
| |
| 14 SkMorphologyProc SkDilateYGetPlatformProc(); | |
| 15 SkMorphologyProc SkErodeXGetPlatformProc(); | |
| 16 SkMorphologyProc SkErodeYGetPlatformProc(); | |
| OLD | NEW |