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

Side by Side Diff: Source/platform/graphics/ImageBufferSurface.h

Issue 358893002: Use newImageSnapshot() to get an image from a Canvas (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Again in StaticBitmapPattern Created 6 years, 2 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 (c) 2013, Google Inc. All rights reserved. 2 * Copyright (c) 2013, Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 22 matching lines...) Expand all
33 33
34 #include "platform/PlatformExport.h" 34 #include "platform/PlatformExport.h"
35 #include "platform/geometry/IntSize.h" 35 #include "platform/geometry/IntSize.h"
36 #include "platform/graphics/GraphicsTypes3D.h" 36 #include "platform/graphics/GraphicsTypes3D.h"
37 #include "wtf/FastAllocBase.h" 37 #include "wtf/FastAllocBase.h"
38 #include "wtf/Noncopyable.h" 38 #include "wtf/Noncopyable.h"
39 #include "wtf/PassRefPtr.h" 39 #include "wtf/PassRefPtr.h"
40 40
41 class SkBitmap; 41 class SkBitmap;
42 class SkCanvas; 42 class SkCanvas;
43 class SkImage;
43 class SkPicture; 44 class SkPicture;
44 45
45 namespace blink { 46 namespace blink {
46 47
47 class ImageBuffer; 48 class ImageBuffer;
48 class WebLayer; 49 class WebLayer;
49 class FloatRect; 50 class FloatRect;
50 51
51 enum OpacityMode { 52 enum OpacityMode {
52 NonOpaque, 53 NonOpaque,
53 Opaque, 54 Opaque,
54 }; 55 };
55 56
56 class PLATFORM_EXPORT ImageBufferSurface { 57 class PLATFORM_EXPORT ImageBufferSurface {
57 WTF_MAKE_NONCOPYABLE(ImageBufferSurface); WTF_MAKE_FAST_ALLOCATED; 58 WTF_MAKE_NONCOPYABLE(ImageBufferSurface); WTF_MAKE_FAST_ALLOCATED;
58 public: 59 public:
59 virtual ~ImageBufferSurface() { } 60 virtual ~ImageBufferSurface();
60 61
61 virtual SkCanvas* canvas() const = 0; 62 virtual SkCanvas* canvas() const = 0;
62 virtual const SkBitmap& bitmap(); 63 virtual const SkBitmap& bitmap();
63 virtual void willAccessPixels() { } 64 virtual void willAccessPixels() { }
64 virtual bool isValid() const = 0; 65 virtual bool isValid() const = 0;
65 virtual bool restore() { return false; }; 66 virtual bool restore() { return false; };
66 virtual WebLayer* layer() const { return 0; }; 67 virtual WebLayer* layer() const { return 0; };
67 virtual bool isAccelerated() const { return false; } 68 virtual bool isAccelerated() const { return false; }
68 virtual Platform3DObject getBackingTexture() const { return 0; } 69 virtual Platform3DObject getBackingTexture() const { return 0; }
69 virtual void didModifyBackingTexture() { } 70 virtual void didModifyBackingTexture() { }
70 virtual bool cachedBitmapEnabled() const { return false; } 71 virtual bool cachedBitmapEnabled() const { return false; }
71 virtual const SkBitmap& cachedBitmap() const; 72 virtual const SkBitmap& cachedBitmap() const;
72 virtual void invalidateCachedBitmap() { } 73 virtual void invalidateCachedBitmap() { }
73 virtual void updateCachedBitmapIfNeeded() { } 74 virtual void updateCachedBitmapIfNeeded() { }
74 virtual void setIsHidden(bool) { } 75 virtual void setIsHidden(bool) { }
75 virtual void setImageBuffer(ImageBuffer*) { } 76 virtual void setImageBuffer(ImageBuffer*) { }
76 virtual PassRefPtr<SkPicture> getPicture(); 77 virtual PassRefPtr<SkPicture> getPicture();
77 virtual void didClearCanvas() { } 78 virtual void didClearCanvas() { }
78 virtual void finalizeFrame(const FloatRect &dirtyRect) { } 79 virtual void finalizeFrame(const FloatRect &dirtyRect) { }
79 80
81 virtual PassRefPtr<SkImage> newImageSnapshot() const;
82
80 OpacityMode opacityMode() const { return m_opacityMode; } 83 OpacityMode opacityMode() const { return m_opacityMode; }
81 const IntSize& size() const { return m_size; } 84 const IntSize& size() const { return m_size; }
82 void notifyIsValidChanged(bool isValid) const; 85 void notifyIsValidChanged(bool isValid) const;
83 86
84 protected: 87 protected:
85 ImageBufferSurface(const IntSize&, OpacityMode); 88 ImageBufferSurface(const IntSize&, OpacityMode);
86 void clear(); 89 void clear();
87 90
88 private: 91 private:
89 OpacityMode m_opacityMode; 92 OpacityMode m_opacityMode;
90 IntSize m_size; 93 IntSize m_size;
91 }; 94 };
92 95
93 } // namespace blink 96 } // namespace blink
94 97
95 #endif 98 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698