gmio/src/libstl/stl_geom.h

17 lines
355 B
C
Raw Normal View History

2014-01-29 23:59:19 +08:00
#ifndef FOUG_LIBSTL_STL_GEOM_H
#define FOUG_LIBSTL_STL_GEOM_H
#include "stl_global.h"
#include "stl_triangle.h"
struct foug_stl_geom
2014-01-29 23:59:19 +08:00
{
const void* cookie;
uint32_t triangle_count;
void (*get_triangle_func)(const void*, uint32_t, foug_stl_triangle_t*);
};
typedef struct foug_stl_geom foug_stl_geom_t;
2014-01-29 23:59:19 +08:00
#endif /* FOUG_LIBSTL_STL_GEOM_H */