summaryrefslogtreecommitdiff
path: root/drawinglayer/source/processor3d
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-01-10 17:52:34 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-01-10 17:52:55 +0100
commit70863f08d83dec5c9ee51d06b64bbca59e9daaef (patch)
treeee298b1dbec44ceb7231e7afeaa897b9c85d7fd9 /drawinglayer/source/processor3d
parent10840ad753b60886ea5175060cb0ec2a77e1579a (diff)
Use bool
Change-Id: I2d06ae03650b318a1318d0e2b026352e22404fdd
Diffstat (limited to 'drawinglayer/source/processor3d')
-rw-r--r--drawinglayer/source/processor3d/zbufferprocessor3d.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/drawinglayer/source/processor3d/zbufferprocessor3d.cxx b/drawinglayer/source/processor3d/zbufferprocessor3d.cxx
index 31c96f8dd1ca..bce1797f007f 100644
--- a/drawinglayer/source/processor3d/zbufferprocessor3d.cxx
+++ b/drawinglayer/source/processor3d/zbufferprocessor3d.cxx
@@ -153,12 +153,12 @@ private:
// bitfield
// some boolean flags for line span interpolator usages
- unsigned mbModifyColor : 1;
- unsigned mbUseTex : 1;
- unsigned mbHasTexCoor : 1;
- unsigned mbHasInvTexCoor : 1;
- unsigned mbUseNrm : 1;
- unsigned mbUseCol : 1;
+ bool mbModifyColor : 1;
+ bool mbUseTex : 1;
+ bool mbHasTexCoor : 1;
+ bool mbHasInvTexCoor : 1;
+ bool mbUseNrm : 1;
+ bool mbUseCol : 1;
void getTextureCoor(basegfx::B2DPoint& rTarget) const
{