Newer
Older
barebox / include / gui / image.h
@Jean-Christophe PLAGNIOL-VILLARD Jean-Christophe PLAGNIOL-VILLARD on 4 Oct 2012 313 bytes gui: move gui file to include/gui and lib/gui
/*
 * 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__ */