Add writer_png module
This commit is contained in:
parent
b72a9c8718
commit
1f2e7c97d6
3 changed files with 100 additions and 0 deletions
19
src/writer_png.h
Normal file
19
src/writer_png.h
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue