Title: [146646] trunk/Source/WebCore
- Revision
- 146646
- Author
- [email protected]
- Date
- 2013-03-22 13:16:49 -0700 (Fri, 22 Mar 2013)
Log Message
Build fix for TransformationMatrix
https://bugs.webkit.org/show_bug.cgi?id=113087
Patch by ChangSeok Oh <[email protected]> on 2013-03-22
Reviewed by Martin Robinson.
This is a trivial build fix for clutter ac backend. Clutter AC backend doesn't use
TextureMapper so there is nowhere including TransformationMatrix.h.
For the reason, we include it explicitly.
No new tests because of no functionality change.
* platform/graphics/clutter/GraphicsContext3DPrivate.cpp:
* platform/graphics/clutter/GraphicsContext3DPrivate.h:
(WebCore):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (146645 => 146646)
--- trunk/Source/WebCore/ChangeLog 2013-03-22 20:14:05 UTC (rev 146645)
+++ trunk/Source/WebCore/ChangeLog 2013-03-22 20:16:49 UTC (rev 146646)
@@ -1,3 +1,20 @@
+2013-03-22 ChangSeok Oh <[email protected]>
+
+ Build fix for TransformationMatrix
+ https://bugs.webkit.org/show_bug.cgi?id=113087
+
+ Reviewed by Martin Robinson.
+
+ This is a trivial build fix for clutter ac backend. Clutter AC backend doesn't use
+ TextureMapper so there is nowhere including TransformationMatrix.h.
+ For the reason, we include it explicitly.
+
+ No new tests because of no functionality change.
+
+ * platform/graphics/clutter/GraphicsContext3DPrivate.cpp:
+ * platform/graphics/clutter/GraphicsContext3DPrivate.h:
+ (WebCore):
+
2013-03-22 Steve Block <[email protected]>
Coordinates.idl lacks Conditional=GEOLOCATION
Modified: trunk/Source/WebCore/platform/graphics/clutter/GraphicsContext3DPrivate.cpp (146645 => 146646)
--- trunk/Source/WebCore/platform/graphics/clutter/GraphicsContext3DPrivate.cpp 2013-03-22 20:14:05 UTC (rev 146645)
+++ trunk/Source/WebCore/platform/graphics/clutter/GraphicsContext3DPrivate.cpp 2013-03-22 20:16:49 UTC (rev 146646)
@@ -24,8 +24,8 @@
#include "HostWindow.h"
#include "NotImplemented.h"
+#include "TransformationMatrix.h"
-
namespace WebCore {
PassOwnPtr<GraphicsContext3DPrivate> GraphicsContext3DPrivate::create(GraphicsContext3D* context, HostWindow* window)
Modified: trunk/Source/WebCore/platform/graphics/clutter/GraphicsContext3DPrivate.h (146645 => 146646)
--- trunk/Source/WebCore/platform/graphics/clutter/GraphicsContext3DPrivate.h 2013-03-22 20:14:05 UTC (rev 146645)
+++ trunk/Source/WebCore/platform/graphics/clutter/GraphicsContext3DPrivate.h 2013-03-22 20:16:49 UTC (rev 146646)
@@ -30,6 +30,8 @@
namespace WebCore {
+class TransformationMatrix;
+
class GraphicsContext3DPrivate {
public:
static PassOwnPtr<GraphicsContext3DPrivate> create(GraphicsContext3D*, HostWindow*);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes