Hmm bei dir funktioniert es wunderbar, aber bei mir irgendwie nicht
Selbst wenn die Bufferbitmaps vom Typus "TBitmap32" sind, was sie ja nicht sein müsste, da da ja keine Transparenz ist
MfG
xZise
[edit]
Oh man ^^ Ich habs:
So war es vorher:
Delphi-Quellcode:
procedure TSnow.DrawTo(const ABitmap : TBitmap32);
begin
FBitmap.DrawTo(ABitmap.Canvas.Handle, FLeft, FTop);
end;
Und dannach, also dass es funzt:
Delphi-Quellcode:
procedure TSnow.DrawTo(const ABitmap : TBitmap32);
begin
FBitmap.DrawTo(ABitmap, FLeft, FTop);
end;