fixed MT render stopping and pausing bug,

some other changes
This commit is contained in:
zueuk
2006-03-08 14:21:36 +00:00
parent 163c30677e
commit 85bc00513e
14 changed files with 168 additions and 143 deletions

View File

@ -74,6 +74,7 @@ type
procedure SaveImage(const FileName: String); virtual;
procedure Stop; virtual;
procedure Pause(paused: boolean); virtual;
property OnProgress: TOnProgress
read FOnProgress
@ -285,6 +286,11 @@ begin
FStop := True;
end;
procedure TBaseRenderer.Pause(paused: boolean);
begin
end;
///////////////////////////////////////////////////////////////////////////////
destructor TBaseRenderer.Destroy;
begin