]> Joshua Wise's Git repositories - netwatch.git/blame_incremental - include/fb.h
Add some headers.
[netwatch.git] / include / fb.h
... / ...
CommitLineData
1/* fb.h
2 * Framebuffer definitions
3 * NetWatch system management mode administration console
4 *
5 * Copyright (c) 2008 Jacob Potter and Joshua Wise. All rights reserved.
6 * This program is free software; you can redistribute and/or modify it under
7 * the terms found in the file LICENSE in the root of this source tree.
8 *
9 */
10
11#ifndef __FB_H
12#define __FB_H
13
14#include <stdint.h>
15
16struct fbdevice;
17struct vmode;
18
19typedef enum {
20 FB_RGB888
21} format_t;
22
23typedef void (*getvmode_t)(void *);
24typedef uint32_t (*checksum_rect_t)(int x, int y, int width, int height);
25typedef void (*copy_pixels_t)(char *buf, int x, int y, int width, int height);
26
27struct vmode {
28 int text:1;
29 int xres, yres, bytestride;
30 format_t format;
31};
32
33struct fbdevice {
34 unsigned char *fbaddr;
35 unsigned char *textbase; /* A safe place to put a textfb. */
36 void *priv;
37 getvmode_t getvmode;
38 checksum_rect_t checksum_rect;
39 copy_pixels_t copy_pixels;
40 struct vmode curmode;
41};
42
43extern struct fbdevice *fb;
44
45#endif
This page took 0.017491 seconds and 4 git commands to generate.