~ubuntu-branches/ubuntu/intrepid/xserver-xgl/intrepid

« back to all changes in this revision

Viewing changes to hw/xfree86/dixmods/extmod/xvmod.c

  • Committer: Bazaar Package Importer
  • Author(s): Matthew Garrett
  • Date: 2006-02-13 14:21:43 UTC
  • Revision ID: james.westby@ubuntu.com-20060213142143-mad6z9xzem7hzxz9
Tags: upstream-7.0.0
ImportĀ upstreamĀ versionĀ 7.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $XFree86: xc/programs/Xserver/Xext/xvmod.c,v 1.1 1998/08/13 14:45:36 dawes Exp $ */
 
2
 
 
3
#ifdef HAVE_XORG_CONFIG_H
 
4
#include <xorg-config.h>
 
5
#endif
 
6
 
 
7
#include <X11/X.h>
 
8
#include "misc.h"
 
9
#include "scrnintstr.h"
 
10
#include "gc.h"
 
11
#include <X11/extensions/Xv.h>
 
12
#include <X11/extensions/Xvproto.h>
 
13
#include "xvdix.h"
 
14
#include "xvmodproc.h"
 
15
 
 
16
void
 
17
XvRegister()
 
18
{
 
19
    XvScreenInitProc = XvScreenInit;
 
20
    XvGetScreenIndexProc = XvGetScreenIndex;
 
21
    XvGetRTPortProc = XvGetRTPort;
 
22
    XvMCScreenInitProc = XvMCScreenInit;
 
23
}
 
24