RSE-Texture/src/Texture-Extractor.h

15 lines
264 B
C

#ifndef TEXTURE_EXTRACTOR_H_
#define TEXTURE_EXTRACTOR_H_
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <zlib.h>
#include <png.h>
#include "HMT_Parser.h"
#include "RS_images.h"
int exportToPNM(FILE *f, RS_IMAGE *img);
#endif