Add writer_png module

This commit is contained in:
Eryn Wells 2013-09-06 22:00:04 -07:00
parent b72a9c8718
commit 1f2e7c97d6
3 changed files with 100 additions and 0 deletions

19
src/writer_png.h Normal file
View file

@ -0,0 +1,19 @@
/* writer_png.h
*
* Declaration of the PNG writer.
*
* Eryn Wells <eryn@erynwells.me>
*/
#ifndef __WRITER_PNG_H
#define __WRITER_PNG_H
#include <stdio.h>
#include "scene.h"
int write_scene_png(Scene *scene, FILE *file);
#endif