| 157 | |
| 158 | |
| 159 | void X11Trans::sendFrame(FBXFrame *f, bool sync) |
| 160 | { |
| 161 | if(thread) thread->checkError(); |
| 162 | if(sync) |
| 163 | { |
| 164 | profBlit.startFrame(); |
| 165 | f->redraw(); |
| 166 | f->signalComplete(); |
| 167 | profBlit.endFrame(f->hdr.width * f->hdr.height, 0, 1); |
| 168 | ready.signal(); |
| 169 | } |
| 170 | else q.spoil((void *)f, __X11Trans_spoilfct); |
| 171 | } |
nothing calls this directly
no test coverage detected