XImage* XGetImage(Display* display, Drawable d, int x, int y, unsigned int width, unsigned int height, unsigned long plane_mask, int format)
| 1590 | |
| 1591 | // XImage* XGetImage(Display* display, Drawable d, int x, int y, unsigned int width, unsigned int height, unsigned long plane_mask, int format) |
| 1592 | static void x11_GetImage(CPU* cpu) { |
| 1593 | KThread* thread = cpu->thread; |
| 1594 | XServer* server = XServer::getServer(); |
| 1595 | XDrawablePtr d = server->getDrawable(ARG2); |
| 1596 | VisualPtr visual = d->getVisual(); |
| 1597 | |
| 1598 | EAX = d->getImage(thread, ARG3, ARG4, ARG5, ARG6, ARG7, ARG8, visual->red_mask, visual->green_mask, visual->blue_mask); |
| 1599 | } |
| 1600 | |
| 1601 | // int XPutImage(Display* display, Drawable d, GC gc, XImage* image, int src_x, int src_y, int dest_x, int dest_y, unsigned int width, unsigned int height) |
| 1602 | static void x11_PutImage(CPU* cpu) { |
nothing calls this directly
no test coverage detected