Mercurial > hg > svcore
comparison data/model/PowerOfSqrtTwoZoomConstraint.h @ 1429:48e9f538e6e9
Untabify
author | Chris Cannam |
---|---|
date | Thu, 01 Mar 2018 18:02:22 +0000 |
parents | 59e7fe1b1003 |
children | 710e6250a401 a7485c1bdba5 |
comparison
equal
deleted
inserted
replaced
1428:87ae75da6527 | 1429:48e9f538e6e9 |
---|---|
20 | 20 |
21 class PowerOfSqrtTwoZoomConstraint : virtual public ZoomConstraint | 21 class PowerOfSqrtTwoZoomConstraint : virtual public ZoomConstraint |
22 { | 22 { |
23 public: | 23 public: |
24 virtual int getNearestBlockSize(int requestedBlockSize, | 24 virtual int getNearestBlockSize(int requestedBlockSize, |
25 RoundingDirection dir = RoundNearest) | 25 RoundingDirection dir = RoundNearest) |
26 const; | 26 const; |
27 | 27 |
28 virtual int getNearestBlockSize(int requestedBlockSize, | 28 virtual int getNearestBlockSize(int requestedBlockSize, |
29 int &type, | 29 int &type, |
30 int &power, | 30 int &power, |
31 RoundingDirection dir = RoundNearest) | 31 RoundingDirection dir = RoundNearest) |
32 const; | 32 const; |
33 | 33 |
34 virtual int getMinCachePower() const { return 6; } | 34 virtual int getMinCachePower() const { return 6; } |
35 }; | 35 }; |
36 | 36 |
37 #endif | 37 #endif |
38 | 38 |