mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-16 23:59:23 +02:00
* removed 10 years deprecated property bytesperpixel
git-svn-id: trunk@33272 -
This commit is contained in:
parent
2b210335a1
commit
e160956abf
@ -17,6 +17,7 @@
|
|||||||
- Removed FBytesPerPixel, BytesPerPixel property is now deprecated, use BitsPerPixel instead.
|
- Removed FBytesPerPixel, BytesPerPixel property is now deprecated, use BitsPerPixel instead.
|
||||||
- Rewritten a large part of the file, so we can handle all bmp color depths
|
- Rewritten a large part of the file, so we can handle all bmp color depths
|
||||||
- Support for RLE4 and RLE8 encoding
|
- Support for RLE4 and RLE8 encoding
|
||||||
|
03/2015 MvdV finally removed bytesperpixel. 10 years should be enough.
|
||||||
}
|
}
|
||||||
|
|
||||||
{$mode objfpc}{$h+}
|
{$mode objfpc}{$h+}
|
||||||
@ -54,7 +55,6 @@ type
|
|||||||
constructor Create; override;
|
constructor Create; override;
|
||||||
property BitsPerPixel : byte read FBpp write SetBpp;
|
property BitsPerPixel : byte read FBpp write SetBpp;
|
||||||
property RLECompress : boolean read FRleCompress write FRleCompress;
|
property RLECompress : boolean read FRleCompress write FRleCompress;
|
||||||
Property BytesPerPixel : Byte Read GetColorSize Write SetColorSize; deprecated;
|
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user