> static and dynamic linking... Need proper dynamic config > Standalone app basis... Need more rework > CMake proper install
22 lines
467 B
C
22 lines
467 B
C
/**
|
|
* \file obj_exporter.h
|
|
* \date 27/07/2022
|
|
* \author JackCarterSmith
|
|
* \copyright GPL-v3.0
|
|
* \brief Export datas to Waveform OBJ format.
|
|
*/
|
|
|
|
#ifndef SRC_OBJ_EXPORTER_H_
|
|
#define SRC_OBJ_EXPORTER_H_
|
|
|
|
|
|
typedef struct t_material {
|
|
unsigned short hasTexture;
|
|
unsigned short bpp;
|
|
unsigned int gl_tex_id;
|
|
} T_MATERIAL;
|
|
|
|
unsigned char exportOBJModel(T_RSPMODEL_OBJECT* hob_objects, const char *out_path, T_PROG_OPTIONS* p_opts);
|
|
|
|
#endif /* SRC_OBJ_EXPORTER_H_ */
|