You've already forked lazarus-ccr
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@1586 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -16,7 +16,11 @@ type
|
|||||||
rgbtAlpha: byte;
|
rgbtAlpha: byte;
|
||||||
end;
|
end;
|
||||||
PRGBATriple = ^TRGBATriple;
|
PRGBATriple = ^TRGBATriple;
|
||||||
|
{$ifdef MSWINDOWS}
|
||||||
|
TRGBATriple = tagRGBTRIPLE;
|
||||||
|
{$else}
|
||||||
TRGBATriple = tagRGBATRIPLE;
|
TRGBATriple = tagRGBATRIPLE;
|
||||||
|
{$endif}
|
||||||
PRGBATripleArray = ^TRGBATripleArray;
|
PRGBATripleArray = ^TRGBATripleArray;
|
||||||
TRGBATripleArray = array[word] of TRGBATriple;
|
TRGBATripleArray = array[word] of TRGBATriple;
|
||||||
|
|
||||||
@ -86,11 +90,7 @@ implementation
|
|||||||
constructor TDLBitmap.Create;
|
constructor TDLBitmap.Create;
|
||||||
begin
|
begin
|
||||||
inherited;
|
inherited;
|
||||||
{$ifdef MSWINDOWS}
|
|
||||||
PixelFormat := pf32bit;
|
|
||||||
{$else}
|
|
||||||
PixelFormat := pf24bit;
|
PixelFormat := pf24bit;
|
||||||
{$endif}
|
|
||||||
FIntfImgA := TLazIntfImage.Create(0, 0);
|
FIntfImgA := TLazIntfImage.Create(0, 0);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user