summaryrefslogtreecommitdiffstats
path: root/qemu/roms/ipxe/src/include/ipxe/pixbuf.h
blob: 106b666e6199113859fee468f1879097867e8ca2 (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
#ifndef _IPXE_PIXBUF_H
#define _IPXE_PIXBUF_H

/** @file
 *
 * Pixel buffer
 *
 */

FILE_LICENCE ( GPL2_OR_LATER );

#include <stddef.h>
#include <ipxe/refcnt.h>
#include <ipxe/uaccess.h>

/** A pixel buffer */
struct pixel_buffer {
	/** Reference count */
	struct refcnt refcnt;
	/** Width */
	unsigned int width;
	/** Height */
	unsigned int height;
	/** 32-bit (8:8:8:8) xRGB pixel data, in host-endian order */
	userptr_t data;
	/** Total length */
	size_t len;
};

/**
 * Get reference to pixel buffer
 *
 * @v pixbuf		Pixel buffer
 * @ret pixbuf		Pixel buffer
 */
static inline __attribute__ (( always_inline )) struct pixel_buffer *
pixbuf_get ( struct pixel_buffer *pixbuf ) {
	ref_get ( &pixbuf->refcnt );
	return pixbuf;
}

/**
 * Drop reference to pixel buffer
 *
 * @v pixbuf		Pixel buffer
 */
static inline __attribute__ (( always_inline )) void
pixbuf_put ( struct pixel_buffer *pixbuf ) {
	ref_put ( &pixbuf->refcnt );
}

extern struct pixel_buffer * alloc_pixbuf ( unsigned int width,
					    unsigned int height );

#endif /* _IPXE_PIXBUF_H */