Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(855)

Side by Side Diff: src/opts/SkMorphology_opts.h

Issue 52603004: Implement SSE2-based implementations of the morphology filters (dilate & (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Fix typo in dilateY() Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698