summaryrefslogtreecommitdiff
path: root/vcl/source/gdi/bitmap3.cxx
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2013-12-11 10:16:44 +0200
committerTor Lillqvist <tml@collabora.com>2013-12-11 10:30:07 +0200
commita1fc912096220648bb2064ff3603bd95fdc84d93 (patch)
treebd5d3bc6c638da95f53a665d45a0fc26bb5aecde /vcl/source/gdi/bitmap3.cxx
parenta0e8a1b69106dd55dd52fc6966ecf2b19d461fa9 (diff)
octree.hxx is private to vcl
Change-Id: I3cb377cfa99914fdba00504fb7d955e088bfca76
Diffstat (limited to 'vcl/source/gdi/bitmap3.cxx')
-rw-r--r--vcl/source/gdi/bitmap3.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/source/gdi/bitmap3.cxx b/vcl/source/gdi/bitmap3.cxx
index 5c4905a28b1e..8522af01c529 100644
--- a/vcl/source/gdi/bitmap3.cxx
+++ b/vcl/source/gdi/bitmap3.cxx
@@ -17,17 +17,17 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-
+#include <math.h>
#include <stdlib.h>
#include <vcl/bmpacc.hxx>
-#include <vcl/octree.hxx>
#include <vcl/bitmapex.hxx>
#include <vcl/bitmap.hxx>
#include <impoct.hxx>
#include <impvect.hxx>
-#include <math.h>
+
+#include "octree.hxx"
#define RGB15( _def_cR, _def_cG, _def_cB ) (((sal_uLong)(_def_cR)<<10UL)|((sal_uLong)(_def_cG)<<5UL)|(sal_uLong)(_def_cB))
#define GAMMA( _def_cVal, _def_InvGamma ) ((sal_uInt8)MinMax(FRound(pow( _def_cVal/255.0,_def_InvGamma)*255.0),0L,255L))