|
GR_32_Filters에서
[DCC Error] GR32_Filters.pas(208): E2250 There is no overloaded version of 'Offset' that can be called with these arguments
[DCC Error] GR32_Filters.pas(210): E2250 There is no overloaded version of 'Offset' that can be called with these arguments
이런 에러가 뜹니다.
PBSrc := Pointer(SrcRow);
Inc(PBSrc, Offset); // shift the pointer to the given component of the first pixel
PBDst := Pointer(DstRow);
Inc(PBDst, Offset);
Inc() 에서 위의 에러가 뜨는데요.. Inc 라인을 지우고 컴파일하면 아래의 에러가 129개 뜹니다.
[DCC Error] GR32_Resamplers.pas(857): E2251 Ambiguous overloaded call to 'IntersectRect'
System.Types.pas(2549): Related method: function IntersectRect(out TRect; const TRect; const TRect): Boolean;
GR32.pas(1): Related method: function IntersectRect(out TRect; const TRect; const TRect): Boolean;
[DCC Error] GR32_Resamplers.pas(857): E2010 Incompatible types: 'Boolean' and 'TRect'
해결책이 없을까요? XE2용으로 수정된거 받아서 설치했는데, 그렇네요..
|