Exemplo n.º 1
0
mame_bitmap *auto_bitmap_alloc_depth(int width, int height, int depth)
{
	return bitmap_alloc_core(width, height, depth, TRUE);
}
Exemplo n.º 2
0
mame_bitmap *bitmap_alloc_depth(int width, int height, int depth)
{
	return bitmap_alloc_core(width, height, depth, FALSE);
}
Exemplo n.º 3
0
mame_bitmap *bitmap_alloc_format(int width, int height, mame_bitmap_format format)
{
	return bitmap_alloc_core(width, height, format, FALSE);
}
Exemplo n.º 4
0
mame_bitmap *auto_bitmap_alloc_format(int width, int height, mame_bitmap_format format)
{
	return bitmap_alloc_core(width, height, format, TRUE);
}
Exemplo n.º 5
0
struct mame_bitmap *auto_bitmap_alloc(int width,int height)
{
	return bitmap_alloc_core(width,height,Machine->scrbitmap->depth,1);
}