~n-muench/ubuntu/precise/open-vm-tools/open-vm-tools.raring-precise.backport

« back to all changes in this revision

Viewing changes to lib/include/rasterConv.h

  • Committer: Package Import Robot
  • Author(s): Nate Muench
  • Date: 2012-01-23 16:09:45 UTC
  • mfrom: (1.4.6) (2.4.26 sid)
  • Revision ID: package-import@ubuntu.com-20120123160945-b6s0r1vkcovucpf3
Tags: 2011.12.20-562307-0ubuntu1
* Merge latest upstream git tag. Fixes building on Precise
  (LP: #898289, LP: #905612)

* Items merged from Debian unstable:
  - debian/control:
    + open-vm-tools recommends open-vm-dkms. (LP: #598933)
    + open-vm-tools now suggests open-vm-toolbox. (LP: #604998)
  (From 2011.08.21-471295-1 release)
  - Updating maintainer and uploaders fields.
  - Removing vcs fields.
  - Removing references to Daniel's old email address.
  - Updating years in copyright file.
  - Updating to standards version 3.9.2.
  - Updating to debhelper version 8.
  - Switching to source format 3.0 (quilt).
  - Removing manual chrpath setting.
  - Removing exclusion from plugins from debhelper shlibs.
  - Rediffing kvers.patch.
  (From 2011.09.23-491607-1 release)
  - Marking binary architecture-dependend packages as linux and kfreebsd
  only.
  - Removing liburiparser-dev from build-depends as upstream dropped
  unity support.
  - Building with libproc-dev on amd64 again.
  - Dropping disabling of dnet support.
  (From 2011.09.23-491607-2 release)
  - Adding doxygen to build-depends for api documentation.
  - Adding libcunit1-dev to build-depends for test suites.
  - Minimizing rules file.
  - Adding open-vm-tools-dev package, containing only the api
    documentation for now.
  (From 2011.09.23-491607-3 release)
  - Sorting overrides in rules alphabetically.
  - Compacting copyright file.
  - Adding udev rule to set timeout for vmware scsi devices
  (From 2011.12.20-562307-1 release)
  - Adding patch to correct typo in upstreams dkms configuration

* Remaining Changes:
  - Remove Stable part of version numbering.
  - debian folder:
    + Re-added open-vm-dkms.postinst & open-vm-dkms.prerm.
      * Allows dkms modules to compile upon installation.
  - debian/control:
    + Re-add open-vm-source and make into a transitional package
      for open-vm-toolbox.
    + Return dependancies that were moved to open-vm-tools back to
      open-vm-toolbox.
  - debian/rules and debian/open-vm-toolbox.lintian-overrides:
    + Make vmware-user-suid-wrapper suid-root
  - debian/rules:
    + Added CFLAGS field with -Wno-deprecated-declarations
      * Will suppress issues with glib 2.31 or later.
    + Add line to copy vmware-xdg-detect-de into place.
    + Install vmware-user.desktop through toolbox package.
  - debian/open-vm-tools.init:
    + Re-add 'modprobe [-r] vmblock'.
    + Add 'modprobe [-r] vmxnet'.
      * Incase it's not loaded during boot.
    + Remove and re-add pcnet32 module
      * Will be done before (remove) and after (readd) vmxnet module
        is added.
      * If vmxnet doesn't exist (aka modules fail to build), pcnet32 can be
        still used for network connectivity.
      * Workaround until a better fix can be done.
  - Re-add gnome-session to debian/local/xautostart.conf
  - Manpages removed (from debian/manpages):
    + vmmemctl.9
    + vmxnet3.9
    + Remove references to manpages that have been removed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*********************************************************
2
 
 * Copyright (C) 1998 VMware, Inc. All rights reserved.
3
 
 *
4
 
 * This program is free software; you can redistribute it and/or modify it
5
 
 * under the terms of the GNU Lesser General Public License as published
6
 
 * by the Free Software Foundation version 2.1 and no later version.
7
 
 *
8
 
 * This program is distributed in the hope that it will be useful, but
9
 
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
10
 
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the Lesser GNU General Public
11
 
 * License for more details.
12
 
 *
13
 
 * You should have received a copy of the GNU Lesser General Public License
14
 
 * along with this program; if not, write to the Free Software Foundation, Inc.,
15
 
 * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA.
16
 
 *
17
 
 *********************************************************/
18
 
 
19
 
/*
20
 
 * rasterConv.h --
21
 
 *
22
 
 *      Pixel conversion routines
23
 
 */
24
 
 
25
 
#ifndef _RASTER_CONV_H_
26
 
#define _RASTER_CONV_H_
27
 
 
28
 
#define INCLUDE_ALLOW_USERLEVEL
29
 
#include "includeCheck.h"
30
 
 
31
 
/*
32
 
 * To minimize the amount of code needed to support the rarely-useful
33
 
 * BGR111 and BGR222 modes, their masks are defined to match the
34
 
 * appropriate number of high bits of the BGR233 masks.
35
 
 */
36
 
 
37
 
#define REDMASK_BGR111          0x04
38
 
#define GREENMASK_BGR111        0x20
39
 
#define BLUEMASK_BGR111         0x80
40
 
 
41
 
#define REDMASK_RGB222          0x30
42
 
#define GREENMASK_RGB222        0x0c
43
 
#define BLUEMASK_RGB222         0x03 
44
 
 
45
 
#define REDMASK_BGR222          0x03
46
 
#define GREENMASK_BGR222        0x0c
47
 
#define BLUEMASK_BGR222         0x30
48
 
 
49
 
#define REDMASK_BGR233          0x07
50
 
#define GREENMASK_BGR233        0x38
51
 
#define BLUEMASK_BGR233         0xc0
52
 
 
53
 
#define REDMASK_15              0x7c00
54
 
#define GREENMASK_15            0x03e0
55
 
#define BLUEMASK_15             0x001f
56
 
 
57
 
#define GREEN_HIBIT_15          0x0200
58
 
#define GREEN_HILOSHIFT_15      4
59
 
 
60
 
#define REDMASK_16              0xf800
61
 
#define GREENMASK_16            0x07e0
62
 
#define BLUEMASK_16             0x001f
63
 
 
64
 
#define REDMASK_24              0x00ff0000
65
 
#define GREENMASK_24            0x0000ff00
66
 
#define BLUEMASK_24             0x000000ff
67
 
 
68
 
#define REDMASK_32              0x00ff0000
69
 
#define GREENMASK_32            0x0000ff00
70
 
#define BLUEMASK_32             0x000000ff
71
 
 
72
 
Bool Raster_IsModeReasonable(uint32 depth, uint32 bpp, Bool pseudocolor);
73
 
 
74
 
int Raster_GetBPPDepth(uint32 depth, uint32 bpp);
75
 
 
76
 
void Raster_ConvertPixels(uint8 *tof, int32 line_increment, int bppdepth,
77
 
                          const uint8 *src, int32 src_increment, int src_bppdepth,
78
 
                          Bool pseudoColor, const uint32 *pixels,
79
 
                          uint32 src_x, uint32 src_y,
80
 
                          uint32 x, uint32 y, uint32 w, uint32 h);
81
 
 
82
 
uint32 Raster_ConvertOnePixel(uint32 pixel, int src_depth, int depth,
83
 
                              Bool pseudoColor, const uint32 *pixels);
84
 
 
85
 
Bool Raster_ConversionParameters(int depth, uint32 *redMask,
86
 
                                 uint32 *greenMask, uint32 *blueMask);
87
 
 
88
 
#endif // _RASTER_CONV_H_