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:
Michael Pfeiffer
2004-01-30 17:10:36 +00:00
parent 7ea239b20d
commit 2f6e49a929
25 changed files with 972 additions and 1095 deletions
@@ -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 */