- removed un-necessary sendfile header

- fixed compile when streflop disabled
This commit is contained in:
Mark Vejvoda 2011-10-13 20:05:39 +00:00
parent 3d20c207d5
commit 828069087b
2 changed files with 17 additions and 1 deletions

View File

@ -867,16 +867,32 @@ static Vec2i _unprojectMap(const Vec2i& pt,const GLdouble* model,const GLdouble*
Vec2i pos;
if(strcmp(label,"tl") == 0) {
#ifdef USE_STREFLOP
pos = Vec2i(streflop::floor(i.x),streflop::floor(i.z));
#else
pos = Vec2i(floor(i.x),floor(i.z));
#endif
}
else if(strcmp(label,"tr") == 0) {
#ifdef USE_STREFLOP
pos = Vec2i(streflop::ceil(i.x),streflop::floor(i.z));
#else
pos = Vec2i(ceil(i.x),floor(i.z));
#endif
}
else if(strcmp(label,"bl") == 0) {
#ifdef USE_STREFLOP
pos = Vec2i(streflop::floor(i.x),streflop::ceil(i.z));
#else
pos = Vec2i(floor(i.x),ceil(i.z));
#endif
}
else if(strcmp(label,"br") == 0) {
#ifdef USE_STREFLOP
pos = Vec2i(streflop::ceil(i.x),streflop::ceil(i.z));
#else
pos = Vec2i(ceil(i.x),ceil(i.z));
#endif
}
if(false) { // print debug info

View File

@ -30,7 +30,7 @@
#if defined(__FreeBSD__)
#include <sys/uio.h>
#else
#include <sys/sendfile.h>
//#include <sys/sendfile.h>
#endif
#include <fcntl.h>