Title: [269765] trunk/Source/WebCore
Revision
269765
Author
[email protected]
Date
2020-11-13 00:22:29 -0800 (Fri, 13 Nov 2020)

Log Message

[GTK][WPE] FilterInfo must cleared when reusing BitmapTextureGL
https://bugs.webkit.org/show_bug.cgi?id=218854

Reviewed by Carlos Garcia Campos.

Clear the FilterInfo attribute when reusing a BitmapTextureGL.

* platform/graphics/texmap/BitmapTextureGL.cpp:
(WebCore::BitmapTextureGL::didReset):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (269764 => 269765)


--- trunk/Source/WebCore/ChangeLog	2020-11-13 07:20:19 UTC (rev 269764)
+++ trunk/Source/WebCore/ChangeLog	2020-11-13 08:22:29 UTC (rev 269765)
@@ -1,3 +1,15 @@
+2020-11-13  Miguel Gomez  <[email protected]>
+
+        [GTK][WPE] FilterInfo must cleared when reusing BitmapTextureGL
+        https://bugs.webkit.org/show_bug.cgi?id=218854
+
+        Reviewed by Carlos Garcia Campos.
+
+        Clear the FilterInfo attribute when reusing a BitmapTextureGL.
+
+        * platform/graphics/texmap/BitmapTextureGL.cpp:
+        (WebCore::BitmapTextureGL::didReset):
+
 2020-11-12  Youenn Fablet  <[email protected]>
 
         Add infrastructure for WebRTC transforms

Modified: trunk/Source/WebCore/platform/graphics/texmap/BitmapTextureGL.cpp (269764 => 269765)


--- trunk/Source/WebCore/platform/graphics/texmap/BitmapTextureGL.cpp	2020-11-13 07:20:19 UTC (rev 269764)
+++ trunk/Source/WebCore/platform/graphics/texmap/BitmapTextureGL.cpp	2020-11-13 08:22:29 UTC (rev 269765)
@@ -80,6 +80,7 @@
 
     m_shouldClear = true;
     m_colorConvertFlags = TextureMapperGL::NoFlag;
+    m_filterInfo = FilterInfo();
     if (m_textureSize == contentSize())
         return;
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to