Changeset 4b06a70 in mainline
- Timestamp:
- 2020-11-14T21:41:43Z (4 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0d3bc7b1
- Parents:
- 63b35c7
- Location:
- uspace/lib/softrend
- Files:
-
- 8 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/softrend/meson.build
r63b35c7 r4b06a70 27 27 # 28 28 29 deps = [ 'math' ]30 29 src = files( 31 'compose.c',32 'filter.c',33 30 'pixconv.c', 34 'rectangle.c',35 'transform.c',36 31 ) -
uspace/lib/softrend/pixconv.c
r63b35c7 r4b06a70 32 32 */ 33 33 /** 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. 41 35 * 42 36 * These functions write an ARGB pixel value to a memory location … … 47 41 */ 48 42 43 #include <byteorder.h> 44 #include "pixconv.h" 45 49 46 void pixel2argb_8888(void *dst, pixel_t pix) 50 47 {
Note:
See TracChangeset
for help on using the changeset viewer.