Title: [243006] trunk/Source/WebCore
Revision
243006
Author
jer.no...@apple.com
Date
2019-03-15 12:34:25 -0700 (Fri, 15 Mar 2019)

Log Message

Unreviewed unified build fix: GPUBindGroup has a default public constructor and destructor, so all its member
variables must be fully defined.

* platform/graphics/gpu/GPUBindGroup.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (243005 => 243006)


--- trunk/Source/WebCore/ChangeLog	2019-03-15 19:14:43 UTC (rev 243005)
+++ trunk/Source/WebCore/ChangeLog	2019-03-15 19:34:25 UTC (rev 243006)
@@ -1,3 +1,10 @@
+2019-03-15  Jer Noble  <jer.no...@apple.com>
+
+        Unreviewed unified build fix: GPUBindGroup has a default public constructor and destructor, so all its member
+        variables must be fully defined.
+
+        * platform/graphics/gpu/GPUBindGroup.h:
+
 2019-03-15  Per Arne Vollan  <pvol...@apple.com>
 
         [macOS] Broker access to Speech Synthesis

Modified: trunk/Source/WebCore/platform/graphics/gpu/GPUBindGroup.h (243005 => 243006)


--- trunk/Source/WebCore/platform/graphics/gpu/GPUBindGroup.h	2019-03-15 19:14:43 UTC (rev 243005)
+++ trunk/Source/WebCore/platform/graphics/gpu/GPUBindGroup.h	2019-03-15 19:34:25 UTC (rev 243006)
@@ -31,14 +31,13 @@
 #include <wtf/RefPtr.h>
 #include <wtf/RetainPtr.h>
 #include <wtf/Vector.h>
+#include "GPUBuffer.h"
+#include "GPUTexture.h"
 
 OBJC_PROTOCOL(MTLBuffer);
 
 namespace WebCore {
 
-class GPUBuffer;
-class GPUTexture;
-
 struct GPUBindGroupDescriptor;
 
 class GPUBindGroup : public RefCounted<GPUBindGroup> {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to