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

Unified Diff: src/codec/SkCodec_wbmp.h

Issue 1006583005: SkCodec: add wbmp class (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 2015-03-26 (Thursday) 13:10:30 EDT Created 5 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: src/codec/SkCodec_wbmp.h
diff --git a/src/codec/SkCodec_wbmp.h b/src/codec/SkCodec_wbmp.h
new file mode 100644
index 0000000000000000000000000000000000000000..0e4c615d8c92cf9309016b4010eb80f840ae70fc
--- /dev/null
+++ b/src/codec/SkCodec_wbmp.h
@@ -0,0 +1,25 @@
+/*
+ * Copyright 2015 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+#ifndef SkCodec_wbmp_DEFINED
+#define SkCodec_wbmp_DEFINED
+
+#include "SkCodec.h"
+
+class SkWbmpCodec final : public SkCodec {
+public:
+ static bool IsWbmp(SkStream*);
+ static SkCodec* NewFromStream(SkStream*);
+protected:
+ SkEncodedFormat onGetEncodedFormat() const override;
+ Result onGetPixels(const SkImageInfo&, void*, size_t,
+ const Options&, SkPMColor[], int*) override;
+private:
+ SkWbmpCodec(const SkImageInfo&, SkStream*);
+};
+
+#endif // SkCodec_wbmp_DEFINED
« no previous file with comments | « src/codec/SkCodec.cpp ('k') | src/codec/SkCodec_wbmp.cpp » ('j') | src/codec/SkCodec_wbmp.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698