summaryrefslogtreecommitdiffstats
path: root/include/gui/image.h
blob: ea423b25968e0f5828baa4d1a544d8e0f4fd27d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * Copyright (C) 2012 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
 *
 * GPL v2
 */

#ifndef __GUI_IMAGE_H__
#define __GUI_IMAGE_H__

struct image_renderer;

struct image {
	void *data;
	struct image_renderer *ir;
	int height;
	int width;
	int bits_per_pixel;
};

#endif /* __IMAGE_RENDERER_H__ */