[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

zmo at google.com zmo at google.com
Wed Dec 22 15:02:23 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 24aed8d1cc5be9338634962c47f01cc0f53a1114
Author: zmo at google.com <zmo at google.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Oct 27 17:24:45 2010 +0000

    2010-10-27  ZHenyao Mo  <zmo at google.com>
    
            Reviewed by Kenneth Russell.
    
            Must enable GL_POINT_SPRITE in GraphicsContext3D implementations
            https://bugs.webkit.org/show_bug.cgi?id=45908
    
            * src/WebGraphicsContext3DDefaultImpl.cpp: Enable for chromium --in-process-webgl port.
            (WebKit::WebGraphicsContext3DDefaultImpl::initialize):
    2010-10-27  ZHenyao Mo  <zmo at google.com>
    
            Reviewed by Kenneth Russell.
    
            Must enable GL_POINT_SPRITE in GraphicsContext3D implementations
            https://bugs.webkit.org/show_bug.cgi?id=45908
    
            * platform/graphics/mac/GraphicsContext3DMac.mm: Enable for Mac port.
            (WebCore::GraphicsContext3D::GraphicsContext3D):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@70666 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 91fab8f..768a7d2 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,13 @@
+2010-10-27  ZHenyao Mo  <zmo at google.com>
+
+        Reviewed by Kenneth Russell.
+
+        Must enable GL_POINT_SPRITE in GraphicsContext3D implementations
+        https://bugs.webkit.org/show_bug.cgi?id=45908
+
+        * platform/graphics/mac/GraphicsContext3DMac.mm: Enable for Mac port.
+        (WebCore::GraphicsContext3D::GraphicsContext3D):
+
 2010-10-27  Leandro Gracia Gil  <leandrogracia at google.com>
 
         Reviewed by Jeremy Orlow.
diff --git a/WebCore/platform/graphics/mac/GraphicsContext3DMac.mm b/WebCore/platform/graphics/mac/GraphicsContext3DMac.mm
index e079b44..78d004a 100644
--- a/WebCore/platform/graphics/mac/GraphicsContext3DMac.mm
+++ b/WebCore/platform/graphics/mac/GraphicsContext3DMac.mm
@@ -210,6 +210,8 @@ GraphicsContext3D::GraphicsContext3D(GraphicsContext3D::Attributes attrs, HostWi
     m_compiler.setResources(ANGLEResources);
     
     ::glEnable(GL_VERTEX_PROGRAM_POINT_SIZE);
+    ::glEnable(GL_POINT_SPRITE);
+
     ::glClearColor(0, 0, 0, 0);
 }
 
diff --git a/WebKit/chromium/ChangeLog b/WebKit/chromium/ChangeLog
index b6bf9e7..cdbed9c 100644
--- a/WebKit/chromium/ChangeLog
+++ b/WebKit/chromium/ChangeLog
@@ -1,3 +1,13 @@
+2010-10-27  ZHenyao Mo  <zmo at google.com>
+
+        Reviewed by Kenneth Russell.
+
+        Must enable GL_POINT_SPRITE in GraphicsContext3D implementations
+        https://bugs.webkit.org/show_bug.cgi?id=45908
+
+        * src/WebGraphicsContext3DDefaultImpl.cpp: Enable for chromium --in-process-webgl port.
+        (WebKit::WebGraphicsContext3DDefaultImpl::initialize):
+
 2010-10-27  Leandro Gracia Gil  <leandrogracia at google.com>
 
         Reviewed by Jeremy Orlow.
diff --git a/WebKit/chromium/src/WebGraphicsContext3DDefaultImpl.cpp b/WebKit/chromium/src/WebGraphicsContext3DDefaultImpl.cpp
index 3065c92..2296386 100644
--- a/WebKit/chromium/src/WebGraphicsContext3DDefaultImpl.cpp
+++ b/WebKit/chromium/src/WebGraphicsContext3DDefaultImpl.cpp
@@ -170,6 +170,7 @@ bool WebGraphicsContext3DDefaultImpl::initialize(WebGraphicsContext3D::Attribute
     validateAttributes();
 
     glEnable(GL_VERTEX_PROGRAM_POINT_SIZE);
+    glEnable(GL_POINT_SPRITE);
 
     if (!angleCreateCompilers()) {
         angleDestroyCompilers();

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list