Subversion Repositories HelenOS

Rev

Rev 4594 | Rev 4669 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4594 Rev 4644
Line 1645... Line 1645...
1645
            retval = EOK;
1645
            retval = EOK;
1646
            break;
1646
            break;
1647
        case FB_GET_CSIZE:
1647
        case FB_GET_CSIZE:
1648
            ipc_answer_2(callid, EOK, vport->cols, vport->rows);
1648
            ipc_answer_2(callid, EOK, vport->cols, vport->rows);
1649
            continue;
1649
            continue;
-
 
1650
        case FB_GET_COLOR_CAP:
-
 
1651
            ipc_answer_1(callid, EOK, FB_CCAP_RGB);
-
 
1652
            continue;
1650
        case FB_SCROLL:
1653
        case FB_SCROLL:
1651
            scroll = IPC_GET_ARG1(call);
1654
            scroll = IPC_GET_ARG1(call);
1652
            if ((scroll > (int) vport->rows) || (scroll < (-(int) vport->rows))) {
1655
            if ((scroll > (int) vport->rows) || (scroll < (-(int) vport->rows))) {
1653
                retval = EINVAL;
1656
                retval = EINVAL;
1654
                break;
1657
                break;