diff options
Diffstat (limited to 'hw/xfree86/dixmods/extmod/xvmod.c')
-rw-r--r-- | hw/xfree86/dixmods/extmod/xvmod.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/hw/xfree86/dixmods/extmod/xvmod.c b/hw/xfree86/dixmods/extmod/xvmod.c new file mode 100644 index 0000000..9551046 --- /dev/null +++ b/hw/xfree86/dixmods/extmod/xvmod.c @@ -0,0 +1,23 @@ + +#ifdef HAVE_XORG_CONFIG_H +#include <xorg-config.h> +#endif + +#include <X11/X.h> +#include "misc.h" +#include "scrnintstr.h" +#include "gc.h" +#include <X11/extensions/Xv.h> +#include <X11/extensions/Xvproto.h> +#include "xvdix.h" +#include "xvmodproc.h" + +void +XvRegister(void) +{ + XvScreenInitProc = XvScreenInit; + XvGetScreenKeyProc = XvGetScreenKey; + XvGetRTPortProc = XvGetRTPort; + XvMCScreenInitProc = XvMCScreenInit; +} + |