Changeset 70666 in webkit


Ignore:
Timestamp:
Oct 27, 2010 10:24:45 AM (14 years ago)
Author:
zmo@google.com
Message:

2010-10-27 ZHenyao Mo <zmo@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@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):
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r70665 r70666  
     12010-10-27  ZHenyao Mo  <zmo@google.com>
     2
     3        Reviewed by Kenneth Russell.
     4
     5        Must enable GL_POINT_SPRITE in GraphicsContext3D implementations
     6        https://bugs.webkit.org/show_bug.cgi?id=45908
     7
     8        * platform/graphics/mac/GraphicsContext3DMac.mm: Enable for Mac port.
     9        (WebCore::GraphicsContext3D::GraphicsContext3D):
     10
    1112010-10-27  Leandro Gracia Gil  <leandrogracia@google.com>
    212
  • trunk/WebCore/platform/graphics/mac/GraphicsContext3DMac.mm

    r69619 r70666  
    211211   
    212212    ::glEnable(GL_VERTEX_PROGRAM_POINT_SIZE);
     213    ::glEnable(GL_POINT_SPRITE);
     214
    213215    ::glClearColor(0, 0, 0, 0);
    214216}
  • trunk/WebKit/chromium/ChangeLog

    r70665 r70666  
     12010-10-27  ZHenyao Mo  <zmo@google.com>
     2
     3        Reviewed by Kenneth Russell.
     4
     5        Must enable GL_POINT_SPRITE in GraphicsContext3D implementations
     6        https://bugs.webkit.org/show_bug.cgi?id=45908
     7
     8        * src/WebGraphicsContext3DDefaultImpl.cpp: Enable for chromium --in-process-webgl port.
     9        (WebKit::WebGraphicsContext3DDefaultImpl::initialize):
     10
    1112010-10-27  Leandro Gracia Gil  <leandrogracia@google.com>
    212
  • trunk/WebKit/chromium/src/WebGraphicsContext3DDefaultImpl.cpp

    r70552 r70666  
    171171
    172172    glEnable(GL_VERTEX_PROGRAM_POINT_SIZE);
     173    glEnable(GL_POINT_SPRITE);
    173174
    174175    if (!angleCreateCompilers()) {
Note: See TracChangeset for help on using the changeset viewer.