debrix/miext/shadow shadow.c, 1.2, 1.3 shadow.h, 1.2, 1.3 shalloc.c,
1.2, 1.3 shmodule.c, 1.2, 1.3 shpacked.c, 1.2, 1.3 shplanar.c,
1.2, 1.3 shplanar8.c, 1.2, 1.3 shrot16pack.c, 1.2,
1.3 shrot16pack_180.c, 1.2, 1.3 shrot16pack_270.c, 1.2,
1.3 shrot16pack_90.c, 1.2, 1.3 shrot32pack.c, 1.2,
1.3 shrot32pack_180.c, 1.2, 1.3 shrot32pack_270.c, 1.2,
1.3 shrot32pack_90.c, 1.2, 1.3 shrot8pack.c, 1.2,
1.3 shrot8pack_180.c, 1.2, 1.3 shrot8pack_270.c, 1.2,
1.3 shrot8pack_90.c, 1.2, 1.3 shrotate.c, 1.2, 1.3 shrotpack.h,
1.2, 1.3
Daniel Stone
xserver-commit at pdx.freedesktop.org
Fri Jun 11 05:42:00 EST 2004
- Previous message: debrix/miext/rootless/safeAlpha safeAlpha.h, 1.2,
1.3 safeAlphaPicture.c, 1.2, 1.3 safeAlphaWindow.c, 1.2, 1.3
- Next message: debrix/os Imakefile, 1.2, 1.3 WaitFor.c, 1.2, 1.3 access.c, 1.2,
1.3 auth.c, 1.2, 1.3 connection.c, 1.2, 1.3 genalloca.c, 1.2,
1.3 hpsocket.c, 1.1.1.1, 1.2 io.c, 1.2, 1.3 k5auth.c, 1.2,
1.3 lbxio.c, 1.2, 1.3 log.c, 1.1.1.1, 1.2 mitauth.c, 1.2,
1.3 oscolor.c, 1.2, 1.3 osdep.h, 1.2, 1.3 osinit.c, 1.2,
1.3 rpcauth.c, 1.2, 1.3 secauth.c, 1.2, 1.3 utils.c, 1.2,
1.3 xalloc.c, 1.2, 1.3 xdmauth.c, 1.2, 1.3 xdmcp.c, 1.2, 1.3
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Committed by: daniel
Update of /cvs/xserver/debrix/miext/shadow
In directory pdx:/home/daniel/x/debrix/debrix/miext/shadow
Modified Files:
shadow.c shadow.h shalloc.c shmodule.c shpacked.c shplanar.c
shplanar8.c shrot16pack.c shrot16pack_180.c shrot16pack_270.c
shrot16pack_90.c shrot32pack.c shrot32pack_180.c
shrot32pack_270.c shrot32pack_90.c shrot8pack.c
shrot8pack_180.c shrot8pack_270.c shrot8pack_90.c shrotate.c
shrotpack.h
Log Message:
Initial import from modular sources.
Index: shadow.c
===================================================================
RCS file: /cvs/xserver/debrix/miext/shadow/shadow.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- shadow.c 23 Apr 2004 19:54:28 -0000 1.2
+++ shadow.c 10 Jun 2004 19:41:57 -0000 1.3
@@ -23,7 +23,10 @@
*/
-#include "X.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+#include <X11/X.h>
#include "scrnintstr.h"
#include "windowstr.h"
#include "font.h"
@@ -146,6 +149,14 @@
extern GCOps shadowGCOps;
+ShadowUpdateProc getShadowUpdatePacked() {
+ return shadowUpdatePacked;
+}
+
+ShadowUpdateProc getShadowUpdateRotatePacked() {
+ return shadowUpdateRotatePacked;
+}
+
static Bool
shadowCreateGC(GCPtr pGC)
{
Index: shadow.h
===================================================================
RCS file: /cvs/xserver/debrix/miext/shadow/shadow.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- shadow.h 23 Apr 2004 19:54:28 -0000 1.2
+++ shadow.h 10 Jun 2004 19:41:57 -0000 1.3
@@ -22,6 +22,9 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#ifndef _SHADOW_H_
#define _SHADOW_H_
@@ -115,6 +118,12 @@
shadowUpdatePacked (ScreenPtr pScreen,
shadowBufPtr pBuf);
+ShadowUpdateProc
+getShadowUpdatePacked (void);
+
+ShadowUpdateProc
+getShadowUpdateRotatePacked (void);
+
void
shadowUpdatePlanar4 (ScreenPtr pScreen,
shadowBufPtr pBuf);
Index: shalloc.c
===================================================================
RCS file: /cvs/xserver/debrix/miext/shadow/shalloc.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- shalloc.c 23 Apr 2004 19:54:28 -0000 1.2
+++ shalloc.c 10 Jun 2004 19:41:57 -0000 1.3
@@ -23,7 +23,10 @@
*/
-#include "X.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+#include <X11/X.h>
#include "scrnintstr.h"
#include "windowstr.h"
#include "font.h"
Index: shmodule.c
===================================================================
RCS file: /cvs/xserver/debrix/miext/shadow/shmodule.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- shmodule.c 23 Apr 2004 19:54:28 -0000 1.2
+++ shmodule.c 10 Jun 2004 19:41:57 -0000 1.3
@@ -22,10 +22,13 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#ifdef XFree86LOADER
#include "xf86Module.h"
-#include "X.h"
+#include <X11/X.h>
#include "scrnintstr.h"
#include "windowstr.h"
#include "font.h"
Index: shpacked.c
===================================================================
RCS file: /cvs/xserver/debrix/miext/shadow/shpacked.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- shpacked.c 23 Apr 2004 19:54:28 -0000 1.2
+++ shpacked.c 10 Jun 2004 19:41:57 -0000 1.3
@@ -22,7 +22,10 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
-#include "X.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+#include <X11/X.h>
#include "scrnintstr.h"
#include "windowstr.h"
#include "font.h"
Index: shplanar.c
===================================================================
RCS file: /cvs/xserver/debrix/miext/shadow/shplanar.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- shplanar.c 23 Apr 2004 19:54:28 -0000 1.2
+++ shplanar.c 10 Jun 2004 19:41:57 -0000 1.3
@@ -22,7 +22,10 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
-#include "X.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+#include <X11/X.h>
#include "scrnintstr.h"
#include "windowstr.h"
#include "font.h"
Index: shplanar8.c
===================================================================
RCS file: /cvs/xserver/debrix/miext/shadow/shplanar8.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- shplanar8.c 23 Apr 2004 19:54:28 -0000 1.2
+++ shplanar8.c 10 Jun 2004 19:41:57 -0000 1.3
@@ -22,7 +22,10 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
-#include "X.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+#include <X11/X.h>
#include "scrnintstr.h"
#include "windowstr.h"
#include "font.h"
Index: shrot16pack.c
===================================================================
RCS file: /cvs/xserver/debrix/miext/shadow/shrot16pack.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- shrot16pack.c 23 Apr 2004 19:54:28 -0000 1.2
+++ shrot16pack.c 10 Jun 2004 19:41:57 -0000 1.3
@@ -22,6 +22,9 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#define FUNC shadowUpdateRotate16
#define Data CARD16
Index: shrot16pack_180.c
===================================================================
RCS file: /cvs/xserver/debrix/miext/shadow/shrot16pack_180.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- shrot16pack_180.c 23 Apr 2004 19:54:28 -0000 1.2
+++ shrot16pack_180.c 10 Jun 2004 19:41:57 -0000 1.3
@@ -22,6 +22,9 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#define FUNC shadowUpdateRotate16_180
#define Data CARD16
#define ROTATE 180
Index: shrot16pack_270.c
===================================================================
RCS file: /cvs/xserver/debrix/miext/shadow/shrot16pack_270.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- shrot16pack_270.c 23 Apr 2004 19:54:28 -0000 1.2
+++ shrot16pack_270.c 10 Jun 2004 19:41:57 -0000 1.3
@@ -22,6 +22,9 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#define FUNC shadowUpdateRotate16_270
#define Data CARD16
#define ROTATE 270
Index: shrot16pack_90.c
===================================================================
RCS file: /cvs/xserver/debrix/miext/shadow/shrot16pack_90.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- shrot16pack_90.c 23 Apr 2004 19:54:28 -0000 1.2
+++ shrot16pack_90.c 10 Jun 2004 19:41:57 -0000 1.3
@@ -22,6 +22,9 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#define FUNC shadowUpdateRotate16_90
#define Data CARD16
#define ROTATE 90
Index: shrot32pack.c
===================================================================
RCS file: /cvs/xserver/debrix/miext/shadow/shrot32pack.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- shrot32pack.c 23 Apr 2004 19:54:28 -0000 1.2
+++ shrot32pack.c 10 Jun 2004 19:41:57 -0000 1.3
@@ -22,6 +22,9 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#define FUNC shadowUpdateRotate32
#define Data CARD32
Index: shrot32pack_180.c
===================================================================
RCS file: /cvs/xserver/debrix/miext/shadow/shrot32pack_180.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- shrot32pack_180.c 23 Apr 2004 19:54:28 -0000 1.2
+++ shrot32pack_180.c 10 Jun 2004 19:41:57 -0000 1.3
@@ -22,6 +22,9 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#define FUNC shadowUpdateRotate32_180
#define Data CARD32
#define ROTATE 180
Index: shrot32pack_270.c
===================================================================
RCS file: /cvs/xserver/debrix/miext/shadow/shrot32pack_270.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- shrot32pack_270.c 23 Apr 2004 19:54:28 -0000 1.2
+++ shrot32pack_270.c 10 Jun 2004 19:41:57 -0000 1.3
@@ -22,6 +22,9 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#define FUNC shadowUpdateRotate32_270
#define Data CARD32
#define ROTATE 270
Index: shrot32pack_90.c
===================================================================
RCS file: /cvs/xserver/debrix/miext/shadow/shrot32pack_90.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- shrot32pack_90.c 23 Apr 2004 19:54:28 -0000 1.2
+++ shrot32pack_90.c 10 Jun 2004 19:41:57 -0000 1.3
@@ -22,6 +22,9 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#define FUNC shadowUpdateRotate32_90
#define Data CARD32
#define ROTATE 90
Index: shrot8pack.c
===================================================================
RCS file: /cvs/xserver/debrix/miext/shadow/shrot8pack.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- shrot8pack.c 23 Apr 2004 19:54:28 -0000 1.2
+++ shrot8pack.c 10 Jun 2004 19:41:57 -0000 1.3
@@ -22,6 +22,9 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#define FUNC shadowUpdateRotate8
#define Data CARD8
Index: shrot8pack_180.c
===================================================================
RCS file: /cvs/xserver/debrix/miext/shadow/shrot8pack_180.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- shrot8pack_180.c 23 Apr 2004 19:54:28 -0000 1.2
+++ shrot8pack_180.c 10 Jun 2004 19:41:57 -0000 1.3
@@ -22,6 +22,9 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#define FUNC shadowUpdateRotate8_180
#define Data CARD8
#define ROTATE 180
Index: shrot8pack_270.c
===================================================================
RCS file: /cvs/xserver/debrix/miext/shadow/shrot8pack_270.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- shrot8pack_270.c 23 Apr 2004 19:54:28 -0000 1.2
+++ shrot8pack_270.c 10 Jun 2004 19:41:57 -0000 1.3
@@ -22,6 +22,9 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#define FUNC shadowUpdateRotate8_270
#define Data CARD8
#define ROTATE 270
Index: shrot8pack_90.c
===================================================================
RCS file: /cvs/xserver/debrix/miext/shadow/shrot8pack_90.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- shrot8pack_90.c 23 Apr 2004 19:54:28 -0000 1.2
+++ shrot8pack_90.c 10 Jun 2004 19:41:57 -0000 1.3
@@ -22,6 +22,9 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#define FUNC shadowUpdateRotate8_90
#define Data CARD8
#define ROTATE 90
Index: shrotate.c
===================================================================
RCS file: /cvs/xserver/debrix/miext/shadow/shrotate.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- shrotate.c 23 Apr 2004 19:54:28 -0000 1.2
+++ shrotate.c 10 Jun 2004 19:41:57 -0000 1.3
@@ -22,7 +22,10 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
-#include "X.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+#include <X11/X.h>
#include "scrnintstr.h"
#include "windowstr.h"
#include "font.h"
Index: shrotpack.h
===================================================================
RCS file: /cvs/xserver/debrix/miext/shadow/shrotpack.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- shrotpack.h 23 Apr 2004 19:54:28 -0000 1.2
+++ shrotpack.h 10 Jun 2004 19:41:57 -0000 1.3
@@ -27,7 +27,10 @@
* orientations work.
*/
-#include "X.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+#include <X11/X.h>
#include "scrnintstr.h"
#include "windowstr.h"
#include "font.h"
- Previous message: debrix/miext/rootless/safeAlpha safeAlpha.h, 1.2,
1.3 safeAlphaPicture.c, 1.2, 1.3 safeAlphaWindow.c, 1.2, 1.3
- Next message: debrix/os Imakefile, 1.2, 1.3 WaitFor.c, 1.2, 1.3 access.c, 1.2,
1.3 auth.c, 1.2, 1.3 connection.c, 1.2, 1.3 genalloca.c, 1.2,
1.3 hpsocket.c, 1.1.1.1, 1.2 io.c, 1.2, 1.3 k5auth.c, 1.2,
1.3 lbxio.c, 1.2, 1.3 log.c, 1.1.1.1, 1.2 mitauth.c, 1.2,
1.3 oscolor.c, 1.2, 1.3 osdep.h, 1.2, 1.3 osinit.c, 1.2,
1.3 rpcauth.c, 1.2, 1.3 secauth.c, 1.2, 1.3 utils.c, 1.2,
1.3 xalloc.c, 1.2, 1.3 xdmauth.c, 1.2, 1.3 xdmcp.c, 1.2, 1.3
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the xserver-commit
mailing list