~ubuntu-branches/ubuntu/quantal/freerdp/quantal

« back to all changes in this revision

Viewing changes to dfb/dfb_colour.h

  • Committer: Bazaar Package Importer
  • Author(s): Otavio Salvador
  • Date: 2010-06-23 21:39:09 UTC
  • Revision ID: james.westby@ubuntu.com-20100623213909-bb9pvvv03913tdv6
Tags: upstream-0.7.1
ImportĀ upstreamĀ versionĀ 0.7.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
#ifndef __DFB_COLOUR_H
 
3
#define __DFB_COLOUR_H
 
4
 
 
5
#include <freerdp/freerdp.h>
 
6
 
 
7
int
 
8
dfb_colour_convert(dfbInfo * dfbi, int in_colour, int in_bpp);
 
9
uint8 *
 
10
dfb_image_convert(dfbInfo * dfbi, rdpSet * settings, int width, int height,
 
11
        uint8 * in_data);
 
12
RD_HCOLOURMAP
 
13
dfb_create_colourmap(dfbInfo * dfbi, rdpSet * settings, RD_COLOURMAP * colours);
 
14
int
 
15
dfb_set_colourmap(dfbInfo * dfbi, rdpSet * settings, RD_HCOLOURMAP map);
 
16
int
 
17
dfb_cursor_convert_mono(dfbInfo * dfbi, uint8 * src_glyph, uint8 * msk_glyph,
 
18
        uint8 * xormask, uint8 * andmask, int width, int height, int bpp);
 
19
int
 
20
dfb_cursor_convert_alpha(dfbInfo * dfbi, uint8 * alpha_data,
 
21
        uint8 * xormask, uint8 * andmask, int width, int height, int bpp);
 
22
 
 
23
#endif /* __DFB_COLOUR_H */