diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2013-03-06 13:40:47 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2013-03-18 10:21:59 +0100 |
commit | 1562e53112fd1082c656a06d953a7447ab17e6e1 (patch) | |
tree | a4ca2537f1e887d8c81ff6820baccb039634d320 /include/ui | |
parent | cf6f05481affb600da22dba3c0bc2564e918e8f1 (diff) |
console: remove ds_get_* helper functions
Switch the few remaining ds_get_* uses in console.c over to the new
surface_* accessors.
While doing so tripped over a few leftovers from commit
a93a4a226a2afba147ba5df688b85d844f537c68 (code using depth == 0
as indicator for textmode rendering). Fixed them up.
Finally dropped ds_get_* helper helpers.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'include/ui')
-rw-r--r-- | include/ui/console.h | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/include/ui/console.h b/include/ui/console.h index 92c31a9cfe..a234c72d2e 100644 --- a/include/ui/console.h +++ b/include/ui/console.h @@ -268,66 +268,6 @@ static inline int surface_bytes_per_pixel(DisplaySurface *s) return (bits + 7) / 8; } -static inline int ds_get_linesize(DisplayState *ds) -{ - return surface_stride(ds->surface); -} - -static inline uint8_t* ds_get_data(DisplayState *ds) -{ - return surface_data(ds->surface); -} - -static inline int ds_get_width(DisplayState *ds) -{ - return surface_width(ds->surface); -} - -static inline int ds_get_height(DisplayState *ds) -{ - return surface_height(ds->surface); -} - -static inline int ds_get_bits_per_pixel(DisplayState *ds) -{ - return surface_bits_per_pixel(ds->surface); -} - -static inline int ds_get_bytes_per_pixel(DisplayState *ds) -{ - return surface_bytes_per_pixel(ds->surface); -} - -static inline pixman_format_code_t ds_get_format(DisplayState *ds) -{ - return ds->surface->format; -} - -static inline pixman_image_t *ds_get_image(DisplayState *ds) -{ - return ds->surface->image; -} - -static inline int ds_get_depth(DisplayState *ds) -{ - return ds->surface->pf.depth; -} - -static inline int ds_get_rmask(DisplayState *ds) -{ - return ds->surface->pf.rmask; -} - -static inline int ds_get_gmask(DisplayState *ds) -{ - return ds->surface->pf.gmask; -} - -static inline int ds_get_bmask(DisplayState *ds) -{ - return ds->surface->pf.bmask; -} - #ifdef CONFIG_CURSES #include <curses.h> typedef chtype console_ch_t; |