summaryrefslogtreecommitdiff
path: root/amiga/rtg.c
blob: 267bd5d054ab49019712a435c1c5276f3a3179c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/*
 * Copyright 2015 Chris Young <chris@unsatisfactorysoftware.co.uk>
 *
 * This file is part of NetSurf, http://www.netsurf-browser.org/
 *
 * NetSurf is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; version 2 of the License.
 *
 * NetSurf is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

/** \file
 * Abstract RTG functions for newer/older/non-P96 systems
 */

#include "amiga/rtg.h"

struct BitMap *ami_rtg_allocbitmap(ULONG width, ULONG height, ULONG depth,
	ULONG flags, struct BitMap *friend, RGBFTYPE format)
{
	if(P96Base == NULL) {
#ifndef __amigaos4__
		if(depth > 8) depth = 8;
#endif
		return AllocBitMap(width, height, depth, flags, friend);
	} else {
		return p96AllocBitMap(width, height, depth, flags, friend, format);
	}
}

void ami_rtg_freebitmap(struct BitMap *bm)
{
	if(P96Base == NULL) {
		return FreeBitMap(bm);
	} else {
		return p96FreeBitMap(bm);
	}
}

void ami_rtg_rectfill(struct RastPort *rp, UWORD min_x, UWORD min_y,
	UWORD max_x, UWORD max_y, ULONG colour)
{
	if(P96Base == NULL) {
		SetAPen(rp, 2); /* white */
		return RectFill(rp, min_x, min_y, max_x, max_y);
	} else {
		return p96RectFill(rp, min_x, min_y, max_x, max_y, colour);
	}
}

void ami_rtg_writepixelarray(UBYTE *pixdata, struct BitMap *bm,
	ULONG width, ULONG height, ULONG bpr, ULONG format)
{
	struct RenderInfo ri;
	struct RastPort trp;

	/* This requires P96 currently */
	if(P96Base == NULL) return;

	ri.Memory = pixdata;
	ri.BytesPerRow = bpr;
	ri.RGBFormat = format;

	InitRastPort(&trp);
	trp.BitMap = bm;

	p96WritePixelArray((struct RenderInfo *)&ri, 0, 0, &trp, 0, 0, width, height);
}