Title: [292462] trunk/Source/WebCore
Revision
292462
Author
z...@falconsigh.net
Date
2022-04-06 06:33:26 -0700 (Wed, 06 Apr 2022)

Log Message

[TextureMapper] Clean up the GraphicsContextGLTextureMapperANGLE header
https://bugs.webkit.org/show_bug.cgi?id=238864

Reviewed by Carlos Garcia Campos.

* platform/graphics/texmap/GraphicsContextGLTextureMapperANGLE.h:
Remove two unused libgbm declarations and mark the class destructor as
virtual, which it is due to its inheritance.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (292461 => 292462)


--- trunk/Source/WebCore/ChangeLog	2022-04-06 13:29:47 UTC (rev 292461)
+++ trunk/Source/WebCore/ChangeLog	2022-04-06 13:33:26 UTC (rev 292462)
@@ -1,3 +1,14 @@
+2022-04-06  Zan Dobersek  <zdober...@igalia.com>
+
+        [TextureMapper] Clean up the GraphicsContextGLTextureMapperANGLE header
+        https://bugs.webkit.org/show_bug.cgi?id=238864
+
+        Reviewed by Carlos Garcia Campos.
+
+        * platform/graphics/texmap/GraphicsContextGLTextureMapperANGLE.h:
+        Remove two unused libgbm declarations and mark the class destructor as
+        virtual, which it is due to its inheritance.
+
 2022-04-06  Youenn Fablet  <you...@apple.com>
 
         Implement ServiceWorkerWindowClient.navigate

Modified: trunk/Source/WebCore/platform/graphics/texmap/GraphicsContextGLTextureMapperANGLE.h (292461 => 292462)


--- trunk/Source/WebCore/platform/graphics/texmap/GraphicsContextGLTextureMapperANGLE.h	2022-04-06 13:29:47 UTC (rev 292461)
+++ trunk/Source/WebCore/platform/graphics/texmap/GraphicsContextGLTextureMapperANGLE.h	2022-04-06 13:33:26 UTC (rev 292462)
@@ -40,9 +40,6 @@
 class GCGLLayer;
 }
 
-struct gbm_device;
-struct gbm_bo;
-
 typedef void *EGLImageKHR;
 #endif
 
@@ -53,7 +50,7 @@
 class WEBCORE_EXPORT GraphicsContextGLTextureMapperANGLE : public GraphicsContextGLANGLE {
 public:
     static RefPtr<GraphicsContextGLTextureMapperANGLE> create(WebCore::GraphicsContextGLAttributes&&);
-    ~GraphicsContextGLTextureMapperANGLE();
+    virtual ~GraphicsContextGLTextureMapperANGLE();
 
     // GraphicsContextGLANGLE overrides.
     RefPtr<GraphicsLayerContentsDisplayDelegate> layerContentsDisplayDelegate() final;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to