Implement GetBytesPix. Declare mIsTopToBottom member variable.

This commit is contained in:
syd%netscape.com 1999-03-30 00:59:16 +00:00
Родитель 46f202d0cc
Коммит 7ae2664dc2
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -38,11 +38,12 @@ public:
/**
@see nsIImage.h
*/
virtual PRInt32 GetBytesPix();
virtual PRInt32 GetBytesPix() { return mNumBytesPixel; }
virtual PRInt32 GetHeight();
virtual PRInt32 GetWidth();
virtual PRUint8* GetBits();
virtual void* GetBitInfo();
virtual PRBool GetIsRowOrderTopToBottom() { return mIsTopToBottom; }
virtual PRInt32 GetLineStride();
virtual nsColorMap* GetColorMap();
NS_IMETHOD Draw(nsIRenderingContext &aContext,
@ -92,6 +93,7 @@ private:
PRUint8 *mImageBits;
PRUint8 *mConvertedBits;
PRInt32 mSizeImage;
PRBool mIsTopToBottom;
PRInt8 mNumBytesPixel;