mirror of
https://github.com/netsurf-browser/netsurf
synced 2025-01-10 13:03:09 +03:00
removed MFDB_STRIDE macro ( moved to plotter.h)
svn path=/trunk/netsurf/; revision=12178
This commit is contained in:
parent
90c2d50d16
commit
a0f2fcf740
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user