Changeset 55331 in webkit


Ignore:
Timestamp:
Feb 26, 2010 6:25:50 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-02-26 Noam Rosenthal <noam.rosenthal@nokia.com>

Reviewed by Kenneth Rohde Christiansen.

[Qt] Compile error with 3d-canvas
Replaced a direct gl call with a getProcAddress call
https://bugs.webkit.org/show_bug.cgi?id=35448

No new tests.

  • platform/graphics/qt/GraphicsContext3DQt.cpp: (WebCore::GraphicsContext3D::blendColor):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r55330 r55331  
     12010-02-26  Noam Rosenthal  <noam.rosenthal@nokia.com>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        [Qt] Compile error with 3d-canvas
     6        Replaced a direct gl call with a getProcAddress call
     7        https://bugs.webkit.org/show_bug.cgi?id=35448
     8
     9        No new tests.
     10
     11        * platform/graphics/qt/GraphicsContext3DQt.cpp:
     12        (WebCore::GraphicsContext3D::blendColor):
     13
    1142010-02-26  Kwang Yul Seo  <skyul@company100.net>
    215
  • trunk/WebCore/platform/graphics/qt/GraphicsContext3DQt.cpp

    r55304 r55331  
    584584{
    585585    m_internal->m_glWidget->makeCurrent();
    586     glBlendColor(static_cast<float>(red), static_cast<float>(green), static_cast<float>(blue), static_cast<float>(alpha));
     586    m_internal->blendColor(static_cast<float>(red), static_cast<float>(green), static_cast<float>(blue), static_cast<float>(alpha));
    587587}
    588588
Note: See TracChangeset for help on using the changeset viewer.