vl: fix some missing prototypes error
authorChristian König <deathsimple@vodafone.de>
Tue, 31 Jan 2012 13:49:07 +0000 (14:49 +0100)
committerChristian König <deathsimple@vodafone.de>
Tue, 31 Jan 2012 16:12:05 +0000 (17:12 +0100)
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=45444
Signed-off-by: Christian König <deathsimple@vodafone.de>
src/gallium/state_trackers/vdpau/preemption.c
src/gallium/winsys/g3dvl/dri/XF86dri.c

index 67a3ce663b73114300aa9ec63f55ee6388827435..2bcaa7ee242701c1e022fb8e0d503573d36e722a 100644 (file)
@@ -26,6 +26,7 @@
  **************************************************************************/
 
 #include <vdpau/vdpau.h>
+#include "vdpau_private.h"
 
 /**
  * A callback to notify the client application that a device's display has
index 831a7603396959b3cc3a71b857a5179d5d5c737a..648f9af6f9cc3941708fceb8a45811af936ef632 100644 (file)
@@ -589,30 +589,3 @@ PUBLIC Bool XF86DRIGetDeviceInfo(dpy, screen, hFrameBuffer,
     TRACE("GetDeviceInfo... return True");
     return True;
 }
-
-PUBLIC Bool XF86DRIOpenFullScreen(dpy, screen, drawable)
-    Display* dpy;
-    int screen;
-    Drawable drawable;
-{
-    /* This function and the underlying X protocol are deprecated.
-     */
-    (void) dpy;
-    (void) screen;
-    (void) drawable;
-    return False;
-}
-
-PUBLIC Bool XF86DRICloseFullScreen(dpy, screen, drawable)
-    Display* dpy;
-    int screen;
-    Drawable drawable;
-{
-    /* This function and the underlying X protocol are deprecated.
-     */
-    (void) dpy;
-    (void) screen;
-    (void) drawable;
-    return True;
-}
-