removed MFDB_STRIDE macro ( moved to plotter.h)

svn path=/trunk/netsurf/; revision=12178
This commit is contained in:
Ole Loots 2011-04-10 21:44:25 +00:00
parent 90c2d50d16
commit a0f2fcf740

View File

@ -34,8 +34,6 @@ struct bitmap {
};
#define NS_BMP_DEFAULT_BPP 4
/* calculate MFDB compatible rowstride (in number of pixels!) */
#define MFDB_STRIDE( w ) (((w & 15) != 0) ? (w | 15)+1 : w)
void * bitmap_create_ex( int w, int h, short bpp, int rowstride, unsigned int state, void * pixdata );
void bitmap_to_mfdb(void * bitmap, MFDB * out);