| 787 | } |
| 788 | |
| 789 | void Thumbnail::decreaseRef () |
| 790 | { |
| 791 | { |
| 792 | MyMutex::MyLock lock(mutex); |
| 793 | |
| 794 | if ( ref == 0 ) { |
| 795 | return; |
| 796 | } |
| 797 | |
| 798 | if ( --ref != 0 ) { |
| 799 | return; |
| 800 | } |
| 801 | } |
| 802 | cachemgr->closeThumbnail (this); |
| 803 | } |
| 804 | |
| 805 | void Thumbnail::getThumbnailSize(int &w, int &h, const rtengine::procparams::ProcParams *pparams) |
| 806 | { |
no test coverage detected