Changeset 53640 in webkit


Ignore:
Timestamp:
Jan 21, 2010 1:01:38 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-01-21 Kenneth Russell <kbr@google.com>

Reviewed by Oliver Hunt.

[Chromium] Implement texSubImage2D taking WebGLArray
https://bugs.webkit.org/show_bug.cgi?id=33932

  • fast/canvas/webgl/tex-sub-image-2d-expected.txt: Added.
  • fast/canvas/webgl/tex-sub-image-2d.html: Added.

2010-01-21 Kenneth Russell <kbr@google.com>

Reviewed by Oliver Hunt.

[Chromium] Implement texSubImage2D taking WebGLArray
https://bugs.webkit.org/show_bug.cgi?id=33932

  • src/GraphicsContext3D.cpp: (WebCore::GraphicsContext3D::texSubImage2D):
Location:
trunk
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r53637 r53640  
     12010-01-21  Kenneth Russell  <kbr@google.com>
     2
     3        Reviewed by Oliver Hunt.
     4
     5        [Chromium] Implement texSubImage2D taking WebGLArray
     6        https://bugs.webkit.org/show_bug.cgi?id=33932
     7
     8        * fast/canvas/webgl/tex-sub-image-2d-expected.txt: Added.
     9        * fast/canvas/webgl/tex-sub-image-2d.html: Added.
     10
    1112010-01-20  Simon Fraser  <simon.fraser@apple.com>
    212
  • trunk/WebKit/chromium/ChangeLog

    r53586 r53640  
     12010-01-21  Kenneth Russell  <kbr@google.com>
     2
     3        Reviewed by Oliver Hunt.
     4
     5        [Chromium] Implement texSubImage2D taking WebGLArray
     6        https://bugs.webkit.org/show_bug.cgi?id=33932
     7
     8        * src/GraphicsContext3D.cpp:
     9        (WebCore::GraphicsContext3D::texSubImage2D):
     10
    1112010-01-20  Vitaly Repeshko  <vitalyr@chromium.org>
    212
  • trunk/WebKit/chromium/src/GraphicsContext3D.cpp

    r53238 r53640  
    20852085                                     void* pixels)
    20862086{
    2087     // FIXME: implement.
    2088     notImplemented();
    2089     return -1;
     2087    glTexSubImage2D(target, level, xoffset, yoffset, width, height, format, type, pixels);
     2088    return 0;
    20902089}
    20912090
Note: See TracChangeset for help on using the changeset viewer.