/* Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies) This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef ShareableSurface_h #define ShareableSurface_h #include "ShareableBitmap.h" #include #if USE(GRAPHICS_SURFACE) #include "GraphicsSurface.h" #endif namespace WebCore { class BitmapTexture; class Image; class GraphicsContext; } namespace WebKit { class ShareableSurface : public ThreadSafeRefCounted { public: enum Hint { SupportsGraphicsSurface = 0x01 }; typedef unsigned Hints; class Handle { WTF_MAKE_NONCOPYABLE(Handle); public: Handle(); bool isNull() const; void encode(CoreIPC::ArgumentEncoder&) const; static bool decode(CoreIPC::ArgumentDecoder*, Handle&); #if USE(GRAPHICS_SURFACE) WebCore::GraphicsSurfaceToken graphicsSurfaceToken() const { return m_graphicsSurfaceToken; } #endif private: friend class ShareableSurface; mutable ShareableBitmap::Handle m_bitmapHandle; #if USE(GRAPHICS_SURFACE) WebCore::GraphicsSurfaceToken m_graphicsSurfaceToken; #endif WebCore::IntSize m_size; ShareableBitmap::Flags m_flags; }; // Create a new ShareableSurface, and allocate either a GraphicsSurface or a ShareableBitmap as backing. static PassRefPtr create(const WebCore::IntSize&, ShareableBitmap::Flags, Hints); // Create a shareable surface from a handle. static PassRefPtr create(const Handle&); ShareableBitmap::Flags flags() const { return m_flags; } // Create a handle. bool createHandle(Handle&); ~ShareableSurface(); const WebCore::IntSize& size() const { return m_size; } WebCore::IntRect bounds() const { return WebCore::IntRect(WebCore::IntPoint(), size()); } // Create a graphics context that can be used to paint into the backing store. PassOwnPtr createGraphicsContext(const WebCore::IntRect&); #if USE(TEXTURE_MAPPER) void copyToTexture(PassRefPtr, const WebCore::IntRect& target, const WebCore::IntPoint& sourceOffset); #endif private: ShareableSurface(const WebCore::IntSize&, ShareableBitmap::Flags, PassRefPtr); // Create a ShareableSurface referencing an existing ShareableBitmap. static PassRefPtr create(const WebCore::IntSize&, ShareableBitmap::Flags, PassRefPtr); #if USE(GRAPHICS_SURFACE) ShareableSurface(const WebCore::IntSize&, ShareableBitmap::Flags, PassRefPtr); // Create a shareable bitmap backed by a graphics surface. static PassRefPtr createWithSurface(const WebCore::IntSize&, ShareableBitmap::Flags); // Create a ShareableSurface referencing an existing GraphicsSurface. static PassRefPtr create(const WebCore::IntSize&, ShareableBitmap::Flags, PassRefPtr); bool isBackedByGraphicsSurface() const { return !!m_graphicsSurface; } #endif WebCore::IntSize m_size; ShareableBitmap::Flags m_flags; RefPtr m_bitmap; #if USE(GRAPHICS_SURFACE) RefPtr m_graphicsSurface; #endif }; } // namespace WebKit #endif // ShareableSurface_h