소스 검색

* fixed bug in FlipHorz and FlipVert

master
Bergmann89 10 년 전
부모
커밋
84f22cf881
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      glBitmap.pas

+ 2
- 2
glBitmap.pas 파일 보기

@@ -8140,7 +8140,7 @@ begin
Dec(TempDestData, fPixelSize);
end;
end;
SetDataPointer(DestData, Format); //be careful, Data could be freed by this method
SetDataPointer(DestData, Format, Width, Height); //be careful, Data could be freed by this method
result := true;
except
if Assigned(DestData) then
@@ -8168,7 +8168,7 @@ begin
Dec(TempDestData, fRowSize);
Inc(SourceData, fRowSize);
end;
SetDataPointer(DestData, Format); //be careful, Data could be freed by this method
SetDataPointer(DestData, Format, Width, Height); //be careful, Data could be freed by this method
result := true;
except
if Assigned(DestData) then


불러오는 중...
취소
저장