Implemented Floyd Steinberg dithering and made it default.
Renamed many constants and fields according to Open BeOS coding style guide. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6433 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -39,12 +39,12 @@ public:
|
||||
bool enumObject(PictureData **);
|
||||
|
||||
private:
|
||||
BFile *__file;
|
||||
bool __reverse;
|
||||
int __picture_count;
|
||||
int __rest;
|
||||
off_t __offset;
|
||||
bool __hollow;
|
||||
BFile *fFile;
|
||||
bool fReverse;
|
||||
int fPictureCount;
|
||||
int fRest;
|
||||
off_t fOffset;
|
||||
bool fHollow;
|
||||
};
|
||||
|
||||
typedef list<PageData *> PageDataList;
|
||||
@@ -57,8 +57,8 @@ public:
|
||||
bool enumObject(PageData **);
|
||||
|
||||
private:
|
||||
PageDataList __pages;
|
||||
PageDataList::iterator __it;
|
||||
PageDataList fPages;
|
||||
PageDataList::iterator fIt;
|
||||
};
|
||||
|
||||
#endif /* __PRINTPROCESS_H */
|
||||
|
||||
Reference in New Issue
Block a user