Changeset afcf704 in mainline for uspace/drv/fb/kfb/port.c


Ignore:
Timestamp:
2020-06-14T22:23:34Z (4 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c45d8696
Parents:
28f8f6f2
Message:

Allow GUI direct access to window buffer

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/fb/kfb/port.c

    r28f8f6f2 rafcf704  
    199199        errno_t rc;
    200200
     201        /* Check that we support all required flags */
     202        if ((params->flags & ~bmpf_color_key) != 0)
     203                return ENOTSUP;
     204
    201205        kfbbm = calloc(1, sizeof(kfb_bitmap_t));
    202206        if (kfbbm == NULL)
Note: See TracChangeset for help on using the changeset viewer.