diff options
Diffstat (limited to 'xorg-server/hw/xfree86/dixmods/extmod/xvmod.c')
-rw-r--r-- | xorg-server/hw/xfree86/dixmods/extmod/xvmod.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/xorg-server/hw/xfree86/dixmods/extmod/xvmod.c b/xorg-server/hw/xfree86/dixmods/extmod/xvmod.c new file mode 100644 index 000000000..6b3f1149a --- /dev/null +++ b/xorg-server/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() +{ + XvScreenInitProc = XvScreenInit; + XvGetScreenKeyProc = XvGetScreenKey; + XvGetRTPortProc = XvGetRTPort; + XvMCScreenInitProc = XvMCScreenInit; +} + |