[Webkit-unassigned] [Bug 26680] New: ENABLE_SVG=0 doesn't build
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Wed Jun 24 07:18:46 PDT 2009
https://bugs.webkit.org/show_bug.cgi?id=26680
Summary: ENABLE_SVG=0 doesn't build
Product: WebKit
Version: 528+ (Nightly build)
Platform: All
OS/Version: Mac OS X 10.5
Status: UNCONFIRMED
Severity: Normal
Priority: P2
Component: SVG
AssignedTo: webkit-unassigned at lists.webkit.org
ReportedBy: yong.li at torchmobile.com
1. TransformationMatrix::mapPoint(const FloatPoint3D&) relies on ENABLE(SVG)
#if ENABLE(SVG)
// Map a 3D point through the transform, returning a 3D point.
FloatPoint3D mapPoint(const FloatPoint3D&) const;
#endif
2. computeZOffset(const HitTestingTransformState& transformState) calls
TransformationMatrix::mapPoint(const FloatPoint3D&) without checking
ENABLE(SVG)
Solutions:
a) remove #if ENABLE(SVG) from TransformationMatrix
or,
b) add #if ENABLE(SVG) to computeZOffset()
--
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
More information about the webkit-unassigned
mailing list