| 445 | } |
| 446 | |
| 447 | XDrawablePtr XServer::getDrawable(U32 xid) { |
| 448 | XDrawablePtr result = getPixmap(xid); |
| 449 | if (result) { |
| 450 | return result; |
| 451 | } |
| 452 | return getWindow(xid); |
| 453 | } |
| 454 | |
| 455 | void XServer::addCursor(const XCursorPtr& cursor) { |
| 456 | BOXEDWINE_CRITICAL_SECTION_WITH_MUTEX(cursorsMutex); |
no outgoing calls
no test coverage detected