aggpas debugging

git-svn-id: trunk@21964 -
This commit is contained in:
mattias 2009-10-01 21:09:31 +00:00
parent 81751791c5
commit d99d72dc20
2 changed files with 2 additions and 0 deletions

View File

@ -705,6 +705,7 @@ end;
{ ZERO }
procedure pod_array.zero;
begin
writeln('pod_array.zero m_entry_sz=',m_entry_sz,' m_size=',m_size);
fillchar(m_array^ ,m_entry_sz * m_size ,0 );
end;

View File

@ -829,6 +829,7 @@ end;
procedure TAggFPImage.ReallocData;
begin
writeln('TAggFPImage.ReallocData Width=',Width,' Height=',Height,' DataSize=',DataSize);
ReAllocMem(fData,DataSize);
RenderingBuffer.Destruct;
RenderingBuffer.Construct(FData, Width, Height, LineSize);