diff options
Diffstat (limited to 'xorg/server/module/rdpCopyPlane.c')
-rw-r--r-- | xorg/server/module/rdpCopyPlane.c | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/xorg/server/module/rdpCopyPlane.c b/xorg/server/module/rdpCopyPlane.c index 9b89125c..fb7c22b8 100644 --- a/xorg/server/module/rdpCopyPlane.c +++ b/xorg/server/module/rdpCopyPlane.c @@ -19,6 +19,17 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ +#include <stdio.h> +#include <stdlib.h> +#include <string.h> + +/* this should be before all X11 .h files */ +#include <xorg-server.h> + +/* all driver need this */ +#include <xf86.h> +#include <xf86_OSproc.h> + #include "rdp.h" #include "rdpDraw.h" @@ -32,9 +43,8 @@ rdpCopyPlaneOrg(DrawablePtr pSrc, DrawablePtr pDst, GCPtr pGC, int srcx, int srcy, int w, int h, int dstx, int dsty, unsigned long bitPlane) { + GC_OP_VARS; RegionPtr rv; - rdpGCPtr priv; - GCFuncs *oldFuncs; GC_OP_PROLOGUE(pGC); rv = pGC->ops->CopyPlane(pSrc, pDst, pGC, srcx, srcy, |