1234567891011121314151617181920212223242526272829303132333435363738 |
- #ifndef IGL_OPENGL_VERTEX_ARRAY_H
- #define IGL_OPENGL_VERTEX_ARRAY_H
- #include <igl/opengl/../igl_inline.h>
- #include <igl/opengl/gl.h>
- #include <Eigen/Core>
- namespace igl
- {
- namespace opengl
- {
-
-
-
-
-
-
-
-
-
-
- template <
- typename DerivedV,
- typename DerivedF>
- IGL_INLINE void vertex_array(
-
-
-
-
- const Eigen::PlainObjectBase<DerivedV> & V,
- const Eigen::PlainObjectBase<DerivedF> & F,
- GLuint & va_id,
- GLuint & ab_id,
- GLuint & eab_id);
- }
- }
- #ifndef IGL_STATIC_LIBRARY
- # include "vertex_array.cpp"
- #endif
- #endif
|