More documentation tweaks

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2517 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
DarkWyrm
2003-01-19 23:04:58 +00:00
parent 8672a4b33c
commit c37002b4ea
9 changed files with 273 additions and 198 deletions
+8 -8
View File
@@ -28,13 +28,13 @@
/*!
\brief Constructor called by the BitmapManager (only).
\param Size of the bitmap.
\param Color space of the bitmap
\param Various bitmap flags to tweak the bitmap as defined in Bitmap.h
\param Number of bytes in each row. -1 implies the default value. Any value less
than the the default will less than the default will be overridden, but any value
\param rect Size of the bitmap.
\param space Color space of the bitmap
\param flags Various bitmap flags to tweak the bitmap as defined in Bitmap.h
\param bytesperline Number of bytes in each row. -1 implies the default value. Any
value less than the the default will less than the default will be overridden, but any value
greater than the default will result in the number of bytes specified.
\param Screen assigned to the bitmap.
\param screen Screen assigned to the bitmap.
*/
ServerBitmap::ServerBitmap(BRect rect,color_space space, int32 flags,
int32 bytesperline=-1, screen_id screen=B_MAIN_SCREEN_ID)
@@ -97,8 +97,8 @@ uint32 ServerBitmap::BitsLength(void)
/*!
\brief Internal function used to translate color space values to appropriate internal
values.
\param Color space for the bitmap.
\param Number of bytes per row.
\param space Color space for the bitmap.
\param bytesperline Number of bytes per row.
*/
void ServerBitmap::_HandleSpace(color_space space, int32 bytesperline=-1)
{