mirror of
https://github.com/barkeser2002/flower.git
synced 2026-09-25 15:36:14 +03:00
10 lines
343 B
C++
10 lines
343 B
C++
#ifndef WAVEFRONT2GRAPHICS_H
|
|
#define WAVEFRONT2GRAPHICS_H
|
|
|
|
#include "../../ThirdPartyLibs/Wavefront/tiny_obj_loader.h"
|
|
#include <vector>
|
|
|
|
struct GLInstanceGraphicsShape* btgCreateGraphicsShapeFromWavefrontObj(const tinyobj::attrib_t& attribute, std::vector<tinyobj::shape_t>& shapes, bool flatShading = false);
|
|
|
|
#endif //WAVEFRONT2GRAPHICS_H
|