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

Unified Diff: include/effects/SkValidateImageFilter.h

Issue 204543006: New option for arithmetic mode (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: include/effects/SkValidateImageFilter.h
diff --git a/include/effects/SkValidateImageFilter.h b/include/effects/SkValidateImageFilter.h
new file mode 100644
index 0000000000000000000000000000000000000000..b12566d5b0865bc22b3481ed6e45803f92339407
--- /dev/null
+++ b/include/effects/SkValidateImageFilter.h
@@ -0,0 +1,46 @@
+/*
+ * Copyright 2014 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+#ifndef SkValidateImageFilter_DEFINED
Stephen White 2014/03/25 17:10:14 Bikeshed: the name doesn't really explain what it'
+#define SkValidateImageFilter_DEFINED
+
+#include "SkImageFilter.h"
+#include "SkBitmap.h"
+
+class SK_API SkValidateImageFilter : public SkImageFilter {
+public:
+ ~SkValidateImageFilter();
+
+ static SkValidateImageFilter* Create(SkImageFilter* input = NULL) {
+ return SkNEW_ARGS(SkValidateImageFilter, (input));
+ }
+
+ SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkValidateImageFilter)
+
+ virtual bool onFilterImage(Proxy* proxy,
+ const SkBitmap& src,
+ const Context& ctx,
+ SkBitmap* dst,
+ SkIPoint* offset) const SK_OVERRIDE;
+
+#if SK_SUPPORT_GPU
+ virtual bool canFilterImageGPU() const SK_OVERRIDE { return true; }
+ virtual bool filterImageGPU(Proxy* proxy, const SkBitmap& src, const Context& ctx,
+ SkBitmap* result, SkIPoint* offset) const SK_OVERRIDE;
+#endif
+
+protected:
+ explicit SkValidateImageFilter(SkReadBuffer& buffer);
+ virtual void flatten(SkWriteBuffer&) const SK_OVERRIDE;
+
+ SkValidateImageFilter(SkImageFilter* input = NULL);
+
+private:
+ typedef SkImageFilter INHERITED;
+};
+
+#endif

Powered by Google App Engine
This is Rietveld 408576698