Changeset 7e38970d in mainline for uspace/lib/ui/include/types/ui/ui.h
- Timestamp:
- 2020-12-07T00:08:37Z (4 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 25f26600
- Parents:
- 7a873f0 (diff), 8596474 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ui/include/types/ui/ui.h
r7a873f0 r7e38970d 1 1 /* 2 * Copyright (c) 20 12 Petr Koupy2 * Copyright (c) 2020 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup softrend29 /** @addtogroup libui 30 30 * @{ 31 31 */ 32 32 /** 33 * @file 33 * @file User interface 34 34 */ 35 35 36 #ifndef SOFTREND_FILTER_H_37 #define SOFTREND_FILTER_H_36 #ifndef _UI_TYPES_UI_H 37 #define _UI_TYPES_UI_H 38 38 39 #include < io/pixelmap.h>39 #include <gfx/coord.h> 40 40 41 typedef pixel_t (*filter_t)(pixelmap_t *, double, double, pixelmap_extend_t); 41 struct ui; 42 typedef struct ui ui_t; 42 43 43 extern pixel_t filter_nearest(pixelmap_t *, double, double, pixelmap_extend_t); 44 extern pixel_t filter_bilinear(pixelmap_t *, double, double, pixelmap_extend_t); 45 extern pixel_t filter_bicubic(pixelmap_t *, double, double, pixelmap_extend_t); 44 /** Use the default display service (argument to ui_create() */ 45 #define UI_DISPLAY_DEFAULT NULL 46 46 47 47 #endif
Note:
See TracChangeset
for help on using the changeset viewer.