Changeset 4b06a70 in mainline


Ignore:
Timestamp:
2020-11-14T21:41:43Z (3 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0d3bc7b1
Parents:
63b35c7
Message:

Remove everything from libsoftrend except pixel conversions

Location:
uspace/lib/softrend
Files:
8 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/softrend/meson.build

    r63b35c7 r4b06a70  
    2727#
    2828
    29 deps = [ 'math' ]
    3029src = files(
    31         'compose.c',
    32         'filter.c',
    3330        'pixconv.c',
    34         'rectangle.c',
    35         'transform.c',
    3631)
  • uspace/lib/softrend/pixconv.c

    r63b35c7 r4b06a70  
    3232 */
    3333/**
    34  * @file
    35  */
    36 
    37 #include <byteorder.h>
    38 #include "pixconv.h"
    39 
    40 /** Pixel conversion and mask functions
     34 * @file Pixel conversion and mask functions.
    4135 *
    4236 * These functions write an ARGB pixel value to a memory location
     
    4741 */
    4842
     43#include <byteorder.h>
     44#include "pixconv.h"
     45
    4946void pixel2argb_8888(void *dst, pixel_t pix)
    5047{
Note: See TracChangeset for help on using the changeset viewer.