Title: [174308] trunk/Source/WebCore
Revision
174308
Author
[email protected]
Date
2014-10-04 00:14:35 -0700 (Sat, 04 Oct 2014)

Log Message

[TexMap] Remove QDoc comments in GraphicsLayerTextureMapper
https://bugs.webkit.org/show_bug.cgi?id=137264

Reviewed by Andreas Kling.

Remove all the QDoc comments in the class that were
left over by the Qt port.

* platform/graphics/texmap/GraphicsLayerTextureMapper.cpp:
(WebCore::GraphicsLayerTextureMapper::setNeedsDisplay):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (174307 => 174308)


--- trunk/Source/WebCore/ChangeLog	2014-10-04 02:41:42 UTC (rev 174307)
+++ trunk/Source/WebCore/ChangeLog	2014-10-04 07:14:35 UTC (rev 174308)
@@ -1,3 +1,16 @@
+2014-10-04  Zan Dobersek  <[email protected]>
+
+        [TexMap] Remove QDoc comments in GraphicsLayerTextureMapper
+        https://bugs.webkit.org/show_bug.cgi?id=137264
+
+        Reviewed by Andreas Kling.
+
+        Remove all the QDoc comments in the class that were
+        left over by the Qt port.
+
+        * platform/graphics/texmap/GraphicsLayerTextureMapper.cpp:
+        (WebCore::GraphicsLayerTextureMapper::setNeedsDisplay):
+
 2014-10-03  Christophe Dumez  <[email protected]>
 
         Use is<>() / downcast<>() for CSSValue subclasses

Modified: trunk/Source/WebCore/platform/graphics/texmap/GraphicsLayerTextureMapper.cpp (174307 => 174308)


--- trunk/Source/WebCore/platform/graphics/texmap/GraphicsLayerTextureMapper.cpp	2014-10-04 02:41:42 UTC (rev 174307)
+++ trunk/Source/WebCore/platform/graphics/texmap/GraphicsLayerTextureMapper.cpp	2014-10-04 07:14:35 UTC (rev 174308)
@@ -84,28 +84,23 @@
     GraphicsLayer::willBeDestroyed();
 }
 
-/* \reimp (GraphicsLayer.h): The current size might change, thus we need to update the whole display.
-*/
 void GraphicsLayerTextureMapper::setNeedsDisplay()
 {
     if (!drawsContent())
         return;
 
+    // The current size might change, thus we need to update the whole display.
     m_needsDisplay = true;
     notifyChange(DisplayChange);
     addRepaintRect(FloatRect(FloatPoint(), m_size));
 }
 
-/* \reimp (GraphicsLayer.h)
-*/
 void GraphicsLayerTextureMapper::setContentsNeedsDisplay()
 {
     notifyChange(DisplayChange);
     addRepaintRect(contentsRect());
 }
 
-/* \reimp (GraphicsLayer.h)
-*/
 void GraphicsLayerTextureMapper::setNeedsDisplayInRect(const FloatRect& rect, ShouldClipToLayer)
 {
     if (!drawsContent())
@@ -118,8 +113,6 @@
     addRepaintRect(rect);
 }
 
-/* \reimp (GraphicsLayer.h)
-*/
 bool GraphicsLayerTextureMapper::setChildren(const Vector<GraphicsLayer*>& children)
 {
     if (GraphicsLayer::setChildren(children)) {
@@ -129,40 +122,30 @@
     return false;
 }
 
-/* \reimp (GraphicsLayer.h)
-*/
 void GraphicsLayerTextureMapper::addChild(GraphicsLayer* layer)
 {
     notifyChange(ChildrenChange);
     GraphicsLayer::addChild(layer);
 }
 
-/* \reimp (GraphicsLayer.h)
-*/
 void GraphicsLayerTextureMapper::addChildAtIndex(GraphicsLayer* layer, int index)
 {
     GraphicsLayer::addChildAtIndex(layer, index);
     notifyChange(ChildrenChange);
 }
 
-/* \reimp (GraphicsLayer.h)
-*/
 void GraphicsLayerTextureMapper::addChildAbove(GraphicsLayer* layer, GraphicsLayer* sibling)
 {
     GraphicsLayer::addChildAbove(layer, sibling);
     notifyChange(ChildrenChange);
 }
 
-/* \reimp (GraphicsLayer.h)
-*/
 void GraphicsLayerTextureMapper::addChildBelow(GraphicsLayer* layer, GraphicsLayer* sibling)
 {
     GraphicsLayer::addChildBelow(layer, sibling);
     notifyChange(ChildrenChange);
 }
 
-/* \reimp (GraphicsLayer.h)
-*/
 bool GraphicsLayerTextureMapper::replaceChild(GraphicsLayer* oldChild, GraphicsLayer* newChild)
 {
     if (GraphicsLayer::replaceChild(oldChild, newChild)) {
@@ -172,8 +155,6 @@
     return false;
 }
 
-/* \reimp (GraphicsLayer.h)
-*/
 void GraphicsLayerTextureMapper::setMaskLayer(GraphicsLayer* value)
 {
     if (value == maskLayer())
@@ -188,8 +169,6 @@
 }
 
 
-/* \reimp (GraphicsLayer.h)
-*/
 void GraphicsLayerTextureMapper::setReplicatedByLayer(GraphicsLayer* value)
 {
     if (value == replicaLayer())
@@ -198,8 +177,6 @@
     notifyChange(ReplicaLayerChange);
 }
 
-/* \reimp (GraphicsLayer.h)
-*/
 void GraphicsLayerTextureMapper::setPosition(const FloatPoint& value)
 {
     if (value == position())
@@ -208,8 +185,6 @@
     notifyChange(PositionChange);
 }
 
-/* \reimp (GraphicsLayer.h)
-*/
 void GraphicsLayerTextureMapper::setAnchorPoint(const FloatPoint3D& value)
 {
     if (value == anchorPoint())
@@ -218,8 +193,6 @@
     notifyChange(AnchorPointChange);
 }
 
-/* \reimp (GraphicsLayer.h)
-*/
 void GraphicsLayerTextureMapper::setSize(const FloatSize& value)
 {
     if (value == size())
@@ -231,8 +204,6 @@
     notifyChange(SizeChange);
 }
 
-/* \reimp (GraphicsLayer.h)
-*/
 void GraphicsLayerTextureMapper::setTransform(const TransformationMatrix& value)
 {
     if (value == transform())
@@ -242,8 +213,6 @@
     notifyChange(TransformChange);
 }
 
-/* \reimp (GraphicsLayer.h)
-*/
 void GraphicsLayerTextureMapper::setChildrenTransform(const TransformationMatrix& value)
 {
     if (value == childrenTransform())
@@ -252,8 +221,6 @@
     notifyChange(ChildrenTransformChange);
 }
 
-/* \reimp (GraphicsLayer.h)
-*/
 void GraphicsLayerTextureMapper::setPreserves3D(bool value)
 {
     if (value == preserves3D())
@@ -262,8 +229,6 @@
     notifyChange(Preserves3DChange);
 }
 
-/* \reimp (GraphicsLayer.h)
-*/
 void GraphicsLayerTextureMapper::setMasksToBounds(bool value)
 {
     if (value == masksToBounds())
@@ -272,8 +237,6 @@
     notifyChange(MasksToBoundsChange);
 }
 
-/* \reimp (GraphicsLayer.h)
-*/
 void GraphicsLayerTextureMapper::setDrawsContent(bool value)
 {
     if (value == drawsContent())
@@ -285,8 +248,6 @@
         setNeedsDisplay();
 }
 
-/* \reimp (GraphicsLayer.h)
-*/
 void GraphicsLayerTextureMapper::setContentsVisible(bool value)
 {
     if (value == contentsAreVisible())
@@ -297,8 +258,6 @@
         maskLayer()->setContentsVisible(value);
 }
 
-/* \reimp (GraphicsLayer.h)
-*/
 void GraphicsLayerTextureMapper::setContentsOpaque(bool value)
 {
     if (value == contentsOpaque())
@@ -307,8 +266,6 @@
     GraphicsLayer::setContentsOpaque(value);
 }
 
-/* \reimp (GraphicsLayer.h)
-*/
 void GraphicsLayerTextureMapper::setBackfaceVisibility(bool value)
 {
     if (value == backfaceVisibility())
@@ -317,8 +274,6 @@
     notifyChange(BackfaceVisibilityChange);
 }
 
-/* \reimp (GraphicsLayer.h)
-*/
 void GraphicsLayerTextureMapper::setOpacity(float value)
 {
     if (value == opacity())
@@ -327,8 +282,6 @@
     notifyChange(OpacityChange);
 }
 
-/* \reimp (GraphicsLayer.h)
-*/
 void GraphicsLayerTextureMapper::setContentsRect(const FloatRect& value)
 {
     if (value == contentsRect())
@@ -346,9 +299,6 @@
     notifyChange(BackgroundColorChange);
 }
 
-
-/* \reimp (GraphicsLayer.h)
-*/
 void GraphicsLayerTextureMapper::setContentsToImage(Image* image)
 {
     if (image) {
@@ -429,8 +379,6 @@
     notifyChange(IsScrollableChange);
 }
 
-/* \reimp (GraphicsLayer.h)
-*/
 void GraphicsLayerTextureMapper::flushCompositingStateForThisLayerOnly()
 {
     prepareBackingStoreIfNeeded();
@@ -573,8 +521,6 @@
     m_changeMask = NoChanges;
 }
 
-/* \reimp (GraphicsLayer.h)
-*/
 void GraphicsLayerTextureMapper::flushCompositingState(const FloatRect& rect)
 {
     if (!m_layer->textureMapper())
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to