package embox.cmd.testing

@AutoCmd
@Cmd(name = "fb_draw_image",
	help = "demo application draw images to the framebuffer",
	man = '''
		NAME
			fb_draw_image
		SYNOPSIS
			fb_draw_image [FILE]
		DESCRIPTION
			if [FILE] format is supporting then draw it to the framebuffer
		AUTHORS
			Filipp Chubukov
	''')
module fb_draw_image {
	source "fb_draw_image.c"

	@NoRuntime depends embox.lib.file_format
	@NoRuntime depends embox.lib.bmp
	@NoRuntime depends embox.lib.png
	depends embox.lib.fb_draw
}
