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

Side by Side Diff: src/android/effects/SkPixelXorXfermode.cpp

Issue 1645093002: Move SkPixelXorXfermode.h to include/client/android (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: add new include dir to android_framgework_lib.gyp Created 4 years, 10 months 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
OLDNEW
1 /* 1 /*
2 * Copyright 2011 Google Inc. 2 * Copyright 2011 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #include "SkPixelXorXfermode.h" 8 #include "SkPixelXorXfermode.h"
9 #include "SkColorPriv.h" 9 #include "SkColorPriv.h"
10 #include "SkReadBuffer.h" 10 #include "SkReadBuffer.h"
(...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after
381 } 381 }
382 382
383 bool SkPixelXorXfermode::asXPFactory(GrXPFactory** xpf) const { 383 bool SkPixelXorXfermode::asXPFactory(GrXPFactory** xpf) const {
384 if (xpf) { 384 if (xpf) {
385 *xpf = GrPixelXorXPFactory::Create(fOpColor); 385 *xpf = GrPixelXorXPFactory::Create(fOpColor);
386 } 386 }
387 return true; 387 return true;
388 } 388 }
389 389
390 #endif 390 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698