Changeset 57694 in webkit


Ignore:
Timestamp:
Apr 15, 2010 5:43:44 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-04-15 Zhenyao Mo <zmo@google.com>

Reviewed by Dimitri Glazkov.

Must enable GL_VERTEX_PROGRAM_POINT_SIZE during initialization
https://bugs.webkit.org/show_bug.cgi?id=37178

  • fast/canvas/webgl/point-size-expected.txt: Added.
  • fast/canvas/webgl/point-size.html: Added.

2010-04-15 Zhenyao Mo <zmo@google.com>

Reviewed by Dimitri Glazkov.

Must enable GL_VERTEX_PROGRAM_POINT_SIZE during initialization
https://bugs.webkit.org/show_bug.cgi?id=37178

Test: fast/canvas/webgl/point-size.html

  • platform/graphics/mac/GraphicsContext3DMac.cpp: Enable GL_VERTEX_PROGRAM_POINT_SIZE during initialization. (WebCore::GraphicsContext3D::GraphicsContext3D):

2010-04-15 Zhenyao Mo <zmo@google.com>

Reviewed by Dimitri Glazkov.

Must enable GL_VERTEX_PROGRAM_POINT_SIZE during initialization
https://bugs.webkit.org/show_bug.cgi?id=37178

  • src/WebGraphicsContext3DDefaultImpl.cpp: Enable GL_VERTEX_PROGRAM_POINT_SIZE during initialization. (WebKit::WebGraphicsContext3DDefaultImpl::initialize):
Location:
trunk
Files:
2 added
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r57688 r57694  
     12010-04-15  Zhenyao Mo  <zmo@google.com>
     2
     3        Reviewed by Dimitri Glazkov.
     4
     5        Must enable GL_VERTEX_PROGRAM_POINT_SIZE during initialization
     6        https://bugs.webkit.org/show_bug.cgi?id=37178
     7
     8        * fast/canvas/webgl/point-size-expected.txt: Added.
     9        * fast/canvas/webgl/point-size.html: Added.
     10
    1112010-04-15  Eric Uhrhane  <ericu@chromium.org>
    212
  • trunk/WebCore/ChangeLog

    r57688 r57694  
     12010-04-15  Zhenyao Mo  <zmo@google.com>
     2
     3        Reviewed by Dimitri Glazkov.
     4
     5        Must enable GL_VERTEX_PROGRAM_POINT_SIZE during initialization
     6        https://bugs.webkit.org/show_bug.cgi?id=37178
     7
     8        Test: fast/canvas/webgl/point-size.html
     9
     10        * platform/graphics/mac/GraphicsContext3DMac.cpp: Enable GL_VERTEX_PROGRAM_POINT_SIZE during initialization.
     11        (WebCore::GraphicsContext3D::GraphicsContext3D):
     12
    1132010-04-15  Eric Uhrhane  <ericu@chromium.org>
    214
  • trunk/WebCore/platform/graphics/mac/GraphicsContext3DMac.cpp

    r57664 r57694  
    171171    }
    172172   
     173    ::glEnable(GL_VERTEX_PROGRAM_POINT_SIZE);
    173174    ::glClearColor(0, 0, 0, 0);
    174175}
  • trunk/WebKit/chromium/ChangeLog

    r57670 r57694  
     12010-04-15  Zhenyao Mo  <zmo@google.com>
     2
     3        Reviewed by Dimitri Glazkov.
     4
     5        Must enable GL_VERTEX_PROGRAM_POINT_SIZE during initialization
     6        https://bugs.webkit.org/show_bug.cgi?id=37178
     7
     8        * src/WebGraphicsContext3DDefaultImpl.cpp: Enable GL_VERTEX_PROGRAM_POINT_SIZE during initialization.
     9        (WebKit::WebGraphicsContext3DDefaultImpl::initialize):
     10
    1112010-04-15  Albert J. Wong  <ajwong@chromium.org>
    212
  • trunk/WebKit/chromium/src/WebGraphicsContext3DDefaultImpl.cpp

    r57574 r57694  
    382382    validateAttributes();
    383383
     384    glEnable(GL_VERTEX_PROGRAM_POINT_SIZE);
    384385    m_initialized = true;
    385386    return true;
Note: See TracChangeset for help on using the changeset viewer.