Title: [87208] trunk/Source/WebCore
Revision
87208
Author
[email protected]
Date
2011-05-24 14:47:27 -0700 (Tue, 24 May 2011)

Log Message

2011-05-24  Syed Idris Shah  <[email protected]>

        Reviewed by Andreas Kling.

        [Qt] fast/canvas/webgl/gl-uniform-arrays.html failing for Qt on Linux
        https://bugs.webkit.org/show_bug.cgi?id=60377

        LayoutTests/fast/canvas/webgl/gl-uniform-arrays.html

        We do not need assert for the useProgram as program can be null.

        * platform/graphics/qt/GraphicsContext3DQt.cpp:
        (WebCore::GraphicsContext3D::useProgram): Program can be null. Removing assert.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (87207 => 87208)


--- trunk/Source/WebCore/ChangeLog	2011-05-24 21:36:06 UTC (rev 87207)
+++ trunk/Source/WebCore/ChangeLog	2011-05-24 21:47:27 UTC (rev 87208)
@@ -1,3 +1,17 @@
+2011-05-24  Syed Idris Shah  <[email protected]>
+
+        Reviewed by Andreas Kling.
+
+        [Qt] fast/canvas/webgl/gl-uniform-arrays.html failing for Qt on Linux
+        https://bugs.webkit.org/show_bug.cgi?id=60377 
+
+        LayoutTests/fast/canvas/webgl/gl-uniform-arrays.html
+
+        We do not need assert for the useProgram as program can be null.
+
+        * platform/graphics/qt/GraphicsContext3DQt.cpp:
+        (WebCore::GraphicsContext3D::useProgram): Program can be null. Removing assert.
+
 2011-05-24  Ryosuke Niwa  <[email protected]>
 
         Reviewed by Darin Adler.

Modified: trunk/Source/WebCore/platform/graphics/qt/GraphicsContext3DQt.cpp (87207 => 87208)


--- trunk/Source/WebCore/platform/graphics/qt/GraphicsContext3DQt.cpp	2011-05-24 21:36:06 UTC (rev 87207)
+++ trunk/Source/WebCore/platform/graphics/qt/GraphicsContext3DQt.cpp	2011-05-24 21:47:27 UTC (rev 87208)
@@ -1445,8 +1445,6 @@
 
 void GraphicsContext3D::useProgram(Platform3DObject program)
 {
-    ASSERT(program);
-    
     m_internal->m_glWidget->makeCurrent();
     m_internal->useProgram(program);
 }
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to