2014-04-09 21:01:57 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
* vim: set ts=8 sts=4 et sw=4 tw=99:
|
|
|
|
*
|
|
|
|
* glcommon GL code & font stuff
|
|
|
|
*
|
|
|
|
* Copyright (c) 2011-2014 Mark Watkins <jedimark@users.sourceforge.net>
|
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
|
|
* License. See the file COPYING in the main directory of the Linux
|
|
|
|
* distribution for more details. */
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2011-08-30 17:22:54 +00:00
|
|
|
#include <cmath>
|
2011-06-26 08:30:44 +00:00
|
|
|
#include "glcommon.h"
|
|
|
|
|
2011-12-17 14:38:15 +00:00
|
|
|
#ifdef BUILD_WITH_MSVC
|
2014-05-09 07:05:54 +00:00
|
|
|
|
|
|
|
#if (_MSC_VER < 1800)
|
2011-12-17 14:38:15 +00:00
|
|
|
double round(double number)
|
|
|
|
{
|
2014-04-17 05:55:38 +00:00
|
|
|
return number < 0.0 ? ceil(number - 0.5) : floor(number + 0.5);
|
2011-12-17 14:38:15 +00:00
|
|
|
}
|
|
|
|
#endif
|
2014-05-09 07:05:54 +00:00
|
|
|
#endif
|
2011-12-17 14:38:15 +00:00
|
|
|
|