Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1567 → Rev 1566

/uspace/trunk/fb/fb.c
699,7 → 699,7
tmp = (vport->y + y) * screen.scanline + vport->x * screen.pixelbytes;
memcpy(screen.fbaddress + tmp, pmap->data + y * srcrowsize, realrowsize);
}
return 0;
return pm;
}
 
/** Handler for messages concerning pixmap handling */
/uspace/trunk/console/console.c
263,7 → 263,6
interbuffer[i + j*conn->screenbuffer.size_x] = *get_field_at(&(conn->screenbuffer),i, j);
/* This call can preempt, but we are already at the end */
sync_send_2(fb_info.phone, FB_DRAW_TEXT_DATA, 0, 0, NULL, NULL);
curs_visibility(1);
} else {
curs_visibility(0);
clrscr();
376,8 → 375,7
case CONSOLE_GOTO:
screenbuffer_goto(&(connections[consnum].screenbuffer), IPC_GET_ARG2(call), IPC_GET_ARG1(call));
if (consnum == active_console)
curs_goto(IPC_GET_ARG1(call),IPC_GET_ARG2(call));
curs_goto(IPC_GET_ARG1(call),IPC_GET_ARG2(call));
break;