Changeset 56678 in webkit


Ignore:
Timestamp:
Mar 27, 2010 9:16:50 PM (14 years ago)
Author:
kbr@google.com
Message:

2010-03-27 Kenneth Russell <kbr@google.com>

Reviewed by Darin Fisher.

Use WebKitClient to instantiate WebGraphicsContext3D
https://bugs.webkit.org/show_bug.cgi?id=36669

  • src/GraphicsContext3D.cpp: (WebCore::GraphicsContext3DInternal::initialize):
Location:
trunk/WebKit/chromium
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/chromium/ChangeLog

    r56637 r56678  
     12010-03-27  Kenneth Russell  <kbr@google.com>
     2
     3        Reviewed by Darin Fisher.
     4
     5        Use WebKitClient to instantiate WebGraphicsContext3D
     6        https://bugs.webkit.org/show_bug.cgi?id=36669
     7
     8        * src/GraphicsContext3D.cpp:
     9        (WebCore::GraphicsContext3DInternal::initialize):
     10
    1112010-03-24  James Hawkins  <jhawkins@chromium.org>
    212
  • trunk/WebKit/chromium/src/GraphicsContext3D.cpp

    r56381 r56678  
    336336    webAttributes.antialias = attrs.antialias;
    337337    webAttributes.premultipliedAlpha = attrs.premultipliedAlpha;
    338     // FIXME: once the Chromium portion of the WebKitClient changes has landed,
    339     // change this to call WebKit::webKitClient()->createGraphicsContext3D().
    340     WebKit::WebGraphicsContext3D* webContext = WebKit::WebGraphicsContext3D::createDefault();
     338    WebKit::WebGraphicsContext3D* webContext = WebKit::webKitClient()->createGraphicsContext3D();
    341339    if (!webContext)
    342340        return false;
Note: See TracChangeset for help on using the changeset viewer.