From 2bde7b6696f0419cf0d71bd2f460d724454a95dd Mon Sep 17 00:00:00 2001 From: DarkWyrm Date: Thu, 12 Feb 2004 01:22:47 +0000 Subject: [PATCH] Removed the SetMode(int32) call - no longer necessary git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6562 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/private/servers/app/DisplayDriver.h | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/headers/private/servers/app/DisplayDriver.h b/headers/private/servers/app/DisplayDriver.h index f7591bd3fe..092dab71a8 100644 --- a/headers/private/servers/app/DisplayDriver.h +++ b/headers/private/servers/app/DisplayDriver.h @@ -205,8 +205,6 @@ public: void StrokeTriangle(BPoint *pts, const DrawData *d); void GetMode(display_mode *mode); - int32 GetMode(void); - // Font-related calls void DrawString(const char *string, const int32 &length, const BPoint &pt, const DrawData *d); @@ -235,13 +233,8 @@ public: virtual bool Lock(bigtime_t timeout=B_INFINITE_TIMEOUT); virtual void Unlock(void); - virtual void SetMode(const int32 &mode); virtual void SetMode(const display_mode &mode); - // Eventually, this method will go away.... - uint8 GetDepth(void); - uint32 GetBytesPerRow(void); - virtual bool DumpToFile(const char *path); virtual ServerBitmap *DumpToBitmap(void); virtual void InvertRect(const BRect &r); @@ -306,11 +299,6 @@ protected: int fLineThickness; BLocker *_locker; - uint8 _buffer_depth; - uint16 _buffer_width; - uint16 _buffer_height; - int32 _buffer_mode; - uint32 _bytes_per_row; bool _is_cursor_hidden; bool _is_cursor_obscured;