00001 #ifndef _DISPLAY_FACETS_MAP_HPP_
00002 #define _DISPLAY_FACETS_MAP_HPP_
00003
00004 #include "jafarConfig.h"
00005
00006 #ifdef HAVE_OPENGL
00007 #include <GL/gl.h>
00008 #endif
00009
00010
00011
00012 #include "jmath/jblas.hpp"
00013
00014 namespace jafar {
00015 namespace facetsmap {
00016 #ifdef HAVE_OPENGL
00017 struct TexInfo {
00018 inline TexInfo(GLuint ntexid, double nwf, double nhf) : texid(ntexid), wf(nwf), hf(nhf) {}
00019 GLuint texid;
00020 double wf, hf;
00021 };
00022
00023
00024
00025 #endif
00026 };
00027 };
00028 #endif