Title: [98384] trunk/Source/WebKit/chromium
Revision
98384
Author
[email protected]
Date
2011-10-25 13:30:24 -0700 (Tue, 25 Oct 2011)

Log Message

[chromium] WebGraphicsContext3D setVisibilityCHROMIUM extension changed to pure virtual.
https://bugs.webkit.org/show_bug.cgi?id=70818

Patch by Michal Mocny <[email protected]> on 2011-10-25
Reviewed by Kenneth Russell.

* public/WebGraphicsContext3D.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (98383 => 98384)


--- trunk/Source/WebKit/chromium/ChangeLog	2011-10-25 20:23:56 UTC (rev 98383)
+++ trunk/Source/WebKit/chromium/ChangeLog	2011-10-25 20:30:24 UTC (rev 98384)
@@ -1,3 +1,12 @@
+2011-10-25  Michal Mocny  <[email protected]>
+
+        [chromium] WebGraphicsContext3D setVisibilityCHROMIUM extension changed to pure virtual.
+        https://bugs.webkit.org/show_bug.cgi?id=70818
+
+        Reviewed by Kenneth Russell.
+
+        * public/WebGraphicsContext3D.h:
+
 2011-10-25  Dave Michael  <[email protected]>
 
         Make it possible to create and dispatch a message event through chromium API

Modified: trunk/Source/WebKit/chromium/public/WebGraphicsContext3D.h (98383 => 98384)


--- trunk/Source/WebKit/chromium/public/WebGraphicsContext3D.h	2011-10-25 20:23:56 UTC (rev 98383)
+++ trunk/Source/WebKit/chromium/public/WebGraphicsContext3D.h	2011-10-25 20:30:24 UTC (rev 98384)
@@ -141,7 +141,7 @@
     virtual void reshape(int width, int height) = 0;
 
     // GL_CHROMIUM_setVisibility - Changes the visibility of the backbuffer
-    virtual void setVisibilityCHROMIUM(bool visible) { }
+    virtual void setVisibilityCHROMIUM(bool visible) = 0;
 
     // Query whether it is built on top of compliant GLES2 implementation.
     virtual bool isGLES2Compliant() = 0;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to