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/amdm37x_dispc/amdm37x_dispc.c

    r28f8f6f2 rafcf704  
    382382        errno_t rc;
    383383
     384        /* Check that we support all required flags */
     385        if ((params->flags & ~bmpf_color_key) != 0)
     386                return ENOTSUP;
     387
    384388        dcbm = calloc(1, sizeof(amdm37x_bitmap_t));
    385389        if (dcbm == NULL)
     
    483487        gfx_rect_clip(&srect, &skfbrect, &crect);
    484488
     489        // XXX bmpf_color_key
    485490        for (pos.y = crect.p0.y; pos.y < crect.p1.y; pos.y++) {
    486491                for (pos.x = crect.p0.x; pos.x < crect.p1.x; pos.x++) {
Note: See TracChangeset for help on using the changeset viewer.