Changeset 35773 in webkit


Ignore:
Timestamp:
Aug 14, 2008 10:10:57 PM (16 years ago)
Author:
kevino@webkit.org
Message:

wx !USE(WXGC) build fix. This is necessary until we find a way to replace GDI with an alternative that performs reasonably well. (GDI+ is too slow in many cases.)

Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r35772 r35773  
     12008-08-14  Kevin Ollivier  <kevino@theolliviers.com>
     2
     3        wx !USE(WXGC) build fix. This is necessary until we find a way to replace GDI with
     4        an alternative that performs reasonably well. (GDI+ is too slow in many cases.)
     5
     6        * platform/graphics/AffineTransform.h:
     7
    182008-08-14  Eric Carlson  <eric.carlson@apple.com>
    29
  • trunk/WebCore/platform/graphics/AffineTransform.h

    r35763 r35773  
    5353    AffineTransform();
    5454    AffineTransform(double a, double b, double c, double d, double e, double f);
     55#if !PLATFORM(WX) || USE(WXGC)
    5556    AffineTransform(const PlatformAffineTransform&);
     57#endif
    5658
    5759    void setMatrix(double a, double b, double c, double d, double e, double f);
     
    102104    AffineTransform inverse() const;
    103105
     106#if !PLATFORM(WX) || USE(WXGC)
    104107    operator PlatformAffineTransform() const;
     108#endif
    105109
    106110    bool operator==(const AffineTransform&) const;
     
    110114   
    111115private:
     116#if !PLATFORM(WX) || USE(WXGC)
    112117    PlatformAffineTransform m_transform;
     118#endif
    113119};
    114120
Note: See TracChangeset for help on using the changeset viewer.