summaryrefslogtreecommitdiff
path: root/drawinglayer/source/processor3d/defaultprocessor3d.cxx
diff options
context:
space:
mode:
authorArmin Weiss <aw@openoffice.org>2006-09-27 15:33:43 +0000
committerArmin Weiss <aw@openoffice.org>2006-09-27 15:33:43 +0000
commit747de983576c2d853667a34292980db077ddf4b8 (patch)
tree956e47b491545f1a248e6697c0b301b911c09d4c /drawinglayer/source/processor3d/defaultprocessor3d.cxx
parent4db120a0a127ef3e2459d14fab976c938b333966 (diff)
#i39532# changes after resync to m185
Diffstat (limited to 'drawinglayer/source/processor3d/defaultprocessor3d.cxx')
-rw-r--r--drawinglayer/source/processor3d/defaultprocessor3d.cxx17
1 files changed, 10 insertions, 7 deletions
diff --git a/drawinglayer/source/processor3d/defaultprocessor3d.cxx b/drawinglayer/source/processor3d/defaultprocessor3d.cxx
index 4d11f2bd8fb7..1ec617b0a944 100644
--- a/drawinglayer/source/processor3d/defaultprocessor3d.cxx
+++ b/drawinglayer/source/processor3d/defaultprocessor3d.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: defaultprocessor3d.cxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: aw $ $Date: 2006-08-09 16:57:47 $
+ * last change: $Author: aw $ $Date: 2006-09-27 16:33:27 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -431,6 +431,10 @@ namespace basegfx
{
}
+ virtual ~B3DPolyPolygonRasterConverter()
+ {
+ }
+
void addPolygon(const B3DPolygon& rPolygon, const B3DHomMatrix& rInvEyeToView)
{
const sal_uInt32 nPointCount(rPolygon.count());
@@ -879,7 +883,6 @@ namespace drawinglayer
}
else
{
- const sal_uInt32 nScanlineIndexLine(mrBuffer.getIndexFromXY(0L, (sal_uInt32)nLine));
double fZStart(rEntry.getZInterpolator().getVal());
double fZStop(fZStart + rEntry.getZInterpolator().getInc());
@@ -973,12 +976,12 @@ namespace drawinglayer
&& mfOpacity == pCompare->mfOpacity);
}
- void geoTexSvxMono::modifyBColor(const basegfx::B2DPoint& rUV, basegfx::BColor& rBColor, double& rfOpacity) const
+ void geoTexSvxMono::modifyBColor(const basegfx::B2DPoint& /*rUV*/, basegfx::BColor& rBColor, double& /*rfOpacity*/) const
{
rBColor = maSingleColor;
}
- void geoTexSvxMono::modifyOpacity(const basegfx::B2DPoint& rUV, double& rfOpacity) const
+ void geoTexSvxMono::modifyOpacity(const basegfx::B2DPoint& /*rUV*/, double& rfOpacity) const
{
rfOpacity = mfOpacity;
}
@@ -1743,7 +1746,7 @@ namespace drawinglayer
// directdraw of polygonHairlinePrimitive3D
const primitive3d::polygonHairlinePrimitive3D& rPrimitive = static_cast< const primitive3d::polygonHairlinePrimitive3D& >(rCandidate.getBasePrimitive());
- if(mbProcessTransparent == (0L != mpTransparenceGeoTexSvx))
+ if((bool)mbProcessTransparent == (0L != mpTransparenceGeoTexSvx))
{
impRender_POH3(rPrimitive);
}
@@ -1756,7 +1759,7 @@ namespace drawinglayer
// directdraw of polyPolygonMaterialPrimitive3D
const primitive3d::polyPolygonMaterialPrimitive3D& rPrimitive = static_cast< const primitive3d::polyPolygonMaterialPrimitive3D& >(rCandidate.getBasePrimitive());
- if(mbProcessTransparent == (0L != mpTransparenceGeoTexSvx))
+ if((bool)mbProcessTransparent == (0L != mpTransparenceGeoTexSvx))
{
impRender_POM3(rPrimitive);
}