From a0f2fcf7405861c43af050d3415a266701fb589a Mon Sep 17 00:00:00 2001 From: Ole Loots Date: Sun, 10 Apr 2011 21:44:25 +0000 Subject: removed MFDB_STRIDE macro ( moved to plotter.h) svn path=/trunk/netsurf/; revision=12178 --- atari/bitmap.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/atari/bitmap.h b/atari/bitmap.h index 666f55bd6..783176053 100755 --- a/atari/bitmap.h +++ b/atari/bitmap.h @@ -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); -- cgit v1.2.3