~ubuntu-branches/ubuntu/precise/xorg-server/precise-updates

« back to all changes in this revision

Viewing changes to hw/xfree86/xf8_16bpp/xf8_16module.c

Tags: 2:1.10.1-2
* Build xserver-xorg-core-udeb on hurd-i386.  Thanks, Samuel Thibault!
* Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright 2006 Adam Jackson.
3
 
 *
4
 
 * Permission is hereby granted, free of charge, to any person obtaining a
5
 
 * copy of this software and associated documentation files (the "Software"),
6
 
 * to deal in the Software without restriction, including without limitation
7
 
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8
 
 * and/or sell copies of the Software, and to permit persons to whom the
9
 
 * Software is furnished to do so, subject to the following conditions:
10
 
 *
11
 
 * The above copyright notice and this permission notice (including the next
12
 
 * paragraph) shall be included in all copies or substantial portions of the
13
 
 * Software.
14
 
 *
15
 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
 
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
 
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
18
 
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
 
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20
 
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21
 
 * DEALINGS IN THE SOFTWARE.
22
 
 */
23
 
 
24
 
#ifdef HAVE_XORG_CONFIG_H
25
 
#include <xorg-config.h>
26
 
#endif
27
 
 
28
 
#include <X11/X.h>
29
 
#include <X11/Xmd.h>
30
 
#include "misc.h"
31
 
#include "servermd.h"
32
 
#include "scrnintstr.h"
33
 
#include "resource.h"
34
 
#include "fb.h"
35
 
#include "fboverlay.h"
36
 
#include "cfb8_16.h"
37
 
 
38
 
Bool
39
 
cfb8_16ScreenInit(ScreenPtr pScreen, pointer pbits16, pointer pbits8,
40
 
                  int xsize, int ysize, int dpix, int dpiy,
41
 
                  int width16, int width8)
42
 
{
43
 
    return
44
 
        (fbOverlaySetupScreen(pScreen, pbits16, pbits8, xsize, ysize,
45
 
                              dpix, dpiy, width16, width8, 16, 8) &&
46
 
         fbOverlayFinishScreenInit(pScreen, pbits16, pbits8, xsize, ysize,
47
 
                                   dpix, dpiy, width16, width8, 16, 8, 16, 8));
48
 
}
49
 
 
50
 
#include "xf86Module.h"
51
 
 
52
 
static MODULESETUPPROTO(xf8_16bppSetup);
53
 
 
54
 
static XF86ModuleVersionInfo VersRec = {
55
 
        "xf8_16bpp",
56
 
        MODULEVENDORSTRING,
57
 
        MODINFOSTRING1,
58
 
        MODINFOSTRING2,
59
 
        XORG_VERSION_CURRENT,
60
 
        2, 0, 0,
61
 
        ABI_CLASS_ANSIC,                /* Only need the ansic layer */
62
 
        ABI_ANSIC_VERSION,
63
 
        NULL,
64
 
        {0,0,0,0}       /* signature, to be patched into the file by a tool */
65
 
};
66
 
 
67
 
_X_EXPORT XF86ModuleData xf8_16bppModuleData = {
68
 
    &VersRec,
69
 
    xf8_16bppSetup,
70
 
    NULL
71
 
};
72
 
 
73
 
static pointer
74
 
xf8_16bppSetup(pointer module, pointer opts, int *errmaj, int *errmin)
75
 
{
76
 
    return (pointer)LoadSubModule(module, "fb", NULL, NULL, NULL, NULL,
77
 
                                  errmaj, errmin);
78
 
}