Skip to content

Commit

Permalink
Merge remote branch 'ajax/for-keithp'
Browse files Browse the repository at this point in the history
  • Loading branch information
keith-packard committed Nov 30, 2010
2 parents afd6eb6 + b85f906 commit 02449ee
Show file tree
Hide file tree
Showing 64 changed files with 570 additions and 1,551 deletions.
16 changes: 16 additions & 0 deletions Xext/panoramiX.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,12 @@ Equipment Corporation.
#include "servermd.h"
#include "resource.h"
#include "picturestr.h"
#ifdef XFIXES
#include "xfixesint.h"
#endif
#ifdef COMPOSITE
#include "compint.h"
#endif
#include "modinit.h"
#include "protocol-versions.h"

Expand Down Expand Up @@ -581,6 +587,13 @@ void PanoramiXExtensionInit(int argc, char *argv[])
ProcVector[X_StoreNamedColor] = PanoramiXStoreNamedColor;

PanoramiXRenderInit ();
#ifdef XFIXES
PanoramiXFixesInit ();
#endif
#ifdef COMPOSITE
PanoramiXCompositeInit ();
#endif

}

extern Bool CreateConnectionBlock(void);
Expand Down Expand Up @@ -882,6 +895,9 @@ static void PanoramiXResetProc(ExtensionEntry* extEntry)
int i;

PanoramiXRenderReset ();
#ifdef XFIXES
PanoramiXFixesReset ();
#endif
screenInfo.numScreens = PanoramiXNumScreens;
for (i = 256; i--; )
ProcVector[i] = SavedProcVector[i];
Expand Down
1 change: 1 addition & 0 deletions Xext/panoramiXsrv.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ extern _X_EXPORT unsigned long XRT_WINDOW;
extern _X_EXPORT unsigned long XRT_PIXMAP;
extern _X_EXPORT unsigned long XRT_GC;
extern _X_EXPORT unsigned long XRT_COLORMAP;
extern _X_EXPORT unsigned long XRT_PICTURE;

/*
* Drivers are allowed to wrap this function. Each wrapper can decide that the
Expand Down
Loading

0 comments on commit 02449ee

Please sign in to comment.