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