2004-04-23 18:54:16 +00:00
|
|
|
/* $XFree86: xc/programs/Xserver/Xext/xvmod.c,v 1.1 1998/08/13 14:45:36 dawes Exp $ */
|
2003-11-14 16:48:57 +00:00
|
|
|
|
2005-07-03 07:02:09 +00:00
|
|
|
#ifdef HAVE_DIX_CONFIG_H
|
|
|
|
|
#include <dix-config.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2005-04-20 12:25:48 +00:00
|
|
|
#include <X11/X.h>
|
2005-07-03 08:53:54 +00:00
|
|
|
#include "misc.h"
|
2003-11-14 16:48:57 +00:00
|
|
|
#include "scrnintstr.h"
|
|
|
|
|
#include "gc.h"
|
2005-04-20 12:25:48 +00:00
|
|
|
#include <X11/extensions/Xv.h>
|
|
|
|
|
#include <X11/extensions/Xvproto.h>
|
2003-11-14 16:48:57 +00:00
|
|
|
#include "xvdix.h"
|
|
|
|
|
#include "xvmodproc.h"
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
XvRegister()
|
|
|
|
|
{
|
|
|
|
|
XvScreenInitProc = XvScreenInit;
|
|
|
|
|
XvGetScreenIndexProc = XvGetScreenIndex;
|
|
|
|
|
XvGetRTPortProc = XvGetRTPort;
|
|
|
|
|
XvMCScreenInitProc = XvMCScreenInit;
|
|
|
|
|
}
|
|
|
|
|
|