~ubuntu-branches/ubuntu/maverick/directfb/maverick

« back to all changes in this revision

Viewing changes to gfxdrivers/matrox/matrox_maven.h

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2007-12-10 21:50:10 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20071210215010-nlwpy1a8h7705p3z
Tags: 1.0.1-3ubuntu1
* Merge with Debian from svn; remaining changes:
  - Remove (build-)dependency on libmpeg3-dev.
  - Build depend on libsysfs-dev on lpia.
* Changes in SVN:
* Add armel in libsysfs-dev architecture specifier in Build-Depends.
  (Closes: #454769)
  Thanks to Joey Hess <joeyh@debian.org>.
* Enable DIRECTFB_NO_CRUFT in dfb_types.h to avoid polluting the type
  namespace. (Closes: #454944)
  - debian/patches/30_linux_types.patch: Update.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
 
27
27
typedef struct {
28
28
     char dev[256];
29
 
     __u8 regs[256];
30
 
     __u8 address;
 
29
     u8 regs[256];
 
30
     u8 address;
31
31
} MatroxMavenData;
32
32
 
33
33
DFBResult maven_init( MatroxMavenData  *mav,
52
52
 
53
53
void maven_set_hue( MatroxMavenData  *mav,
54
54
                    MatroxDriverData *mdrv,
55
 
                    __u8              hue );
 
55
                    u8                hue );
56
56
void maven_set_saturation( MatroxMavenData  *mav,
57
57
                           MatroxDriverData *mdrv,
58
 
                           __u8              saturation );
 
58
                           u8                saturation );
59
59
void maven_set_bwlevel( MatroxMavenData  *mav,
60
60
                        MatroxDriverData *mdrv,
61
 
                        __u8              brightness,
62
 
                        __u8              contrast );
 
61
                        u8                brightness,
 
62
                        u8                contrast );
63
63
 
64
64
#endif