Title: [129720] trunk/Source/WebCore
- Revision
- 129720
- Author
- kenn...@webkit.org
- Date
- 2012-09-26 18:20:43 -0700 (Wed, 26 Sep 2012)
Log Message
[Texmap][EFL] Accelerated compositing support using TextureMapper on EFL port
https://bugs.webkit.org/show_bug.cgi?id=73111
Reviewed by Gyuyoung Kim.
Remove unneeded files
* PlatformEfl.cmake: Do not add the files any more.
* platform/graphics/efl/GraphicsLayerEfl.cpp: Removed.
* platform/graphics/efl/GraphicsLayerEfl.h: Removed.
Modified Paths
Removed Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (129719 => 129720)
--- trunk/Source/WebCore/ChangeLog 2012-09-27 01:18:40 UTC (rev 129719)
+++ trunk/Source/WebCore/ChangeLog 2012-09-27 01:20:43 UTC (rev 129720)
@@ -1,3 +1,16 @@
+2012-09-26 Kenneth Rohde Christiansen <kenn...@webkit.org>
+
+ [Texmap][EFL] Accelerated compositing support using TextureMapper on EFL port
+ https://bugs.webkit.org/show_bug.cgi?id=73111
+
+ Reviewed by Gyuyoung Kim.
+
+ Remove unneeded files
+
+ * PlatformEfl.cmake: Do not add the files any more.
+ * platform/graphics/efl/GraphicsLayerEfl.cpp: Removed.
+ * platform/graphics/efl/GraphicsLayerEfl.h: Removed.
+
2012-09-26 Simon Fraser <simon.fra...@apple.com>
Rename Page::frameCount() to subframeCount(), and related
Modified: trunk/Source/WebCore/PlatformEfl.cmake (129719 => 129720)
--- trunk/Source/WebCore/PlatformEfl.cmake 2012-09-27 01:18:40 UTC (rev 129719)
+++ trunk/Source/WebCore/PlatformEfl.cmake 2012-09-27 01:20:43 UTC (rev 129720)
@@ -180,10 +180,6 @@
LIST(APPEND WebCore_SOURCES
platform/graphics/texmap/GraphicsLayerTextureMapper.cpp
)
-ELSE ()
- LIST(APPEND WebCore_SOURCES
- platform/graphics/efl/GraphicsLayerEfl.cpp
- )
ENDIF ()
LIST(APPEND WebCore_LIBRARIES
Deleted: trunk/Source/WebCore/platform/graphics/efl/GraphicsLayerEfl.cpp (129719 => 129720)
--- trunk/Source/WebCore/platform/graphics/efl/GraphicsLayerEfl.cpp 2012-09-27 01:18:40 UTC (rev 129719)
+++ trunk/Source/WebCore/platform/graphics/efl/GraphicsLayerEfl.cpp 2012-09-27 01:20:43 UTC (rev 129720)
@@ -1,57 +0,0 @@
-/*
-Copyright (C) 2009-2011 Samsung Electronics
-
-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.
-*/
-
-#include "config.h"
-
-#if USE(ACCELERATED_COMPOSITING)
-
-#include "GraphicsLayerEfl.h"
-
-#include "NotImplemented.h"
-
-namespace WebCore {
-
-PassOwnPtr<GraphicsLayer> GraphicsLayer::create(GraphicsLayerClient* client)
-{
- return adoptPtr(new GraphicsLayerEfl(client));
-}
-
-GraphicsLayerEfl::GraphicsLayerEfl(GraphicsLayerClient* client)
- : GraphicsLayer(client)
-{
-}
-
-GraphicsLayerEfl::~GraphicsLayerEfl()
-{
- willBeDestroyed();
-}
-
-void GraphicsLayerEfl::setNeedsDisplay()
-{
- notImplemented();
-}
-
-void GraphicsLayerEfl::setNeedsDisplayInRect(const FloatRect&)
-{
- notImplemented();
-}
-
-} // namespace WebCore
-
-#endif // USE(ACCELERATED_COMPOSITING)
Deleted: trunk/Source/WebCore/platform/graphics/efl/GraphicsLayerEfl.h (129719 => 129720)
--- trunk/Source/WebCore/platform/graphics/efl/GraphicsLayerEfl.h 2012-09-27 01:18:40 UTC (rev 129719)
+++ trunk/Source/WebCore/platform/graphics/efl/GraphicsLayerEfl.h 2012-09-27 01:20:43 UTC (rev 129720)
@@ -1,42 +0,0 @@
-/*
- Copyright (C) 2009-2011 Samsung Electronics
-
- 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 GraphicsLayerEfl_h
-#define GraphicsLayerEfl_h
-
-#if USE(ACCELERATED_COMPOSITING)
-
-#include "GraphicsLayer.h"
-
-namespace WebCore {
-
-class GraphicsLayerEfl : public GraphicsLayer {
-public:
- GraphicsLayerEfl(GraphicsLayerClient*);
- virtual ~GraphicsLayerEfl();
-
- virtual void setNeedsDisplay();
- virtual void setNeedsDisplayInRect(const FloatRect&);
-};
-
-} // namespace WebCore
-
-#endif // USE(ACCELERATED_COMPOSITING)
-
-#endif // GraphicsLayerEfl_h
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes