fixed postxform bug in non-asm code

This commit is contained in:
zueuk 2007-06-02 06:50:27 +00:00
parent 5c8e54621a
commit be99b093b4

View File

@ -388,9 +388,12 @@ end;
procedure TXForm.DoPostTransform;
{$ifndef _ASM_}
var
tmp: double;
begin
tmp := FPx;
FPx := p00 * FPx + p10 * FPy + p20;
FPy := p01 * FPx + p11 * FPy + p21;
FPy := p01 * tmp + p11 * FPy + p21;
{$else}
asm
fld qword ptr [eax + FPy]