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

Unified Diff: tools/viewer/ImageSlide.h

Issue 2058753002: Display JPGs in Viewer with Split Screen and ColorSpaceXform (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Unmerge Created 4 years, 6 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
« no previous file with comments | « no previous file | tools/viewer/ImageSlide.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/viewer/ImageSlide.h
diff --git a/tools/viewer/ImageSlide.h b/tools/viewer/ImageSlide.h
new file mode 100644
index 0000000000000000000000000000000000000000..88254ddc0317741b221b4035fb3633535f900f69
--- /dev/null
+++ b/tools/viewer/ImageSlide.h
@@ -0,0 +1,34 @@
+/*
+* Copyright 2016 Google Inc.
+*
+* Use of this source code is governed by a BSD-style license that can be
+* found in the LICENSE file.
+*/
+
+#ifndef ImageSlide_DEFINED
+#define ImageSlide_DEFINED
+
+#include "Slide.h"
+#include "SkPicture.h"
+#include "SkImage.h"
+
+static const char* kImageColorXformMetaData = "ImageColorSpaceXform";
+
+class ImageSlide : public Slide {
+public:
+ ImageSlide(const SkString& name, const SkString& path);
+
+ SkISize getDimensions() const override;
+
+ void draw(SkCanvas* canvas) override;
+ void load() override;
+ void unload() override;
+
+private:
+ SkString fPath;
+ sk_sp<const SkImage> fImage;
+ SkBitmap fOriginalBitmap;
+ SkBitmap fXformedBitmap;
+};
+
+#endif
« no previous file with comments | « no previous file | tools/viewer/ImageSlide.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698