| 404 | } |
| 405 | |
| 406 | void Page::asyncRenderToImage(QObject *listener, double xres, double yres, QRect render_box, bool cache) |
| 407 | { |
| 408 | QReadLocker docLocker(_docLock.data()); |
| 409 | QReadLocker pageLocker(&_pageLock); |
| 410 | if (!_parent) |
| 411 | return; |
| 412 | _parent->processingThread().addPageProcessingRequest(new PageProcessingRenderPageRequest(this, listener, xres, yres, render_box, cache)); |
| 413 | } |
| 414 | |
| 415 | bool higherResolutionThan(const PDFPageTile & t1, const PDFPageTile & t2) |
| 416 | { |
nothing calls this directly
no test coverage detected