summaryrefslogtreecommitdiff
path: root/atari/bitmap.h
diff options
context:
space:
mode:
authorOle Loots <ole@monochrom.net>2011-04-10 21:44:25 +0000
committerOle Loots <ole@monochrom.net>2011-04-10 21:44:25 +0000
commita0f2fcf7405861c43af050d3415a266701fb589a (patch)
treeb333f9db6fb2099d23f832372bbfdb462916003a /atari/bitmap.h
parent90c2d50d160796f748cd41e3d23b9467cb52a1f7 (diff)
downloadnetsurf-a0f2fcf7405861c43af050d3415a266701fb589a.tar.gz
netsurf-a0f2fcf7405861c43af050d3415a266701fb589a.tar.bz2
removed MFDB_STRIDE macro ( moved to plotter.h)
svn path=/trunk/netsurf/; revision=12178
Diffstat (limited to 'atari/bitmap.h')
-rwxr-xr-xatari/bitmap.h2
1 files changed, 0 insertions, 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);