Changeset 75baf6e in mainline for uspace/lib/draw/source.c


Ignore:
Timestamp:
2014-03-01T22:58:23Z (11 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
d9be488
Parents:
440f57f
Message:

cstyle (no change in functionality)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/draw/source.c

    r440f57f r75baf6e  
    9292bool source_is_fast(source_t *source)
    9393{
    94         return (source->mask == NULL)
    95             && (source->alpha == (pixel_t) PIXEL(255, 0, 0, 0))
    96             && (source->texture != NULL)
    97             && (source->texture_tile == false)
    98             && transform_is_fast(&source->transform);
     94        return ((source->mask == NULL) &&
     95            (source->alpha == (pixel_t) PIXEL(255, 0, 0, 0)) &&
     96            (source->texture != NULL) &&
     97            (source->texture_tile == false) &&
     98            (transform_is_fast(&source->transform)));
    9999}
    100100
Note: See TracChangeset for help on using the changeset viewer.