Changed multi-line C comments into another style.

The left side doesn't look unbalanced.
This commit is contained in:
Greg King
2014-06-30 05:10:35 -04:00
parent 132d57f1ad
commit 0390c34e88
502 changed files with 8869 additions and 8884 deletions

View File

@@ -65,10 +65,10 @@ typedef struct Bitmap Bitmap;
struct Bitmap {
/* Name of the bitmap. This is used for error messages and should be
* something that allows the user to identify which bitmap the message
* refers to. For bitmaps loaded from a file, using the file name is
* a good idea.
*/
** something that allows the user to identify which bitmap the message
** refers to. For bitmaps loaded from a file, using the file name is
** a good idea.
*/
StrBuf Name;
/* Size of the bitmap */
@@ -103,19 +103,19 @@ Bitmap* SliceBitmap (const Bitmap* Original,
unsigned X, unsigned Y,
unsigned Width, unsigned Height);
/* Create a slice of the given bitmap. The slice starts at position X/Y of
* the original and has the given width and height. Location 0/0 is at the
* upper left corner.
*/
** the original and has the given width and height. Location 0/0 is at the
** upper left corner.
*/
Color GetPixelColor (const Bitmap* B, unsigned X, unsigned Y);
/* Get the color for a given pixel. For indexed bitmaps, the palette entry
* is returned.
*/
** is returned.
*/
Pixel GetPixel (const Bitmap* B, unsigned X, unsigned Y);
/* Return a pixel from the bitmap. The returned value may either be a color
* or a palette index, depending on the type of the bitmap.
*/
** or a palette index, depending on the type of the bitmap.
*/
#if defined(HAVE_INLINE)
INLINE int BitmapIsIndexed (const Bitmap* B)
@@ -170,8 +170,8 @@ INLINE const StrBuf* GetBitmapName (const Bitmap* B)
#if defined(HAVE_INLINE)
INLINE unsigned GetBitmapColors (const Bitmap* B)
/* Get the number of colors in an image. The function will return the number
* of palette entries for indexed bitmaps and 2^24 for non indexed bitmaps.
*/
** of palette entries for indexed bitmaps and 2^24 for non indexed bitmaps.
*/
{
return B->Pal? B->Pal->Count : (1U << 24);
}