| 442 | Q_DECLARE_METATYPE(RichResourceTextPtr); |
| 443 | |
| 444 | void GPUAddress::cacheAddress(const QWidget *widget) |
| 445 | { |
| 446 | if(!ctxptr) |
| 447 | ctxptr = getCaptureContext(widget); |
| 448 | |
| 449 | // bail out if we don't have a context |
| 450 | if(!ctxptr) |
| 451 | return; |
| 452 | |
| 453 | cacheAddress(*ctxptr); |
| 454 | } |
| 455 | |
| 456 | void GPUAddress::cacheAddress(const ICaptureContext &ctx) |
| 457 | { |
no test coverage detected