Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
include standard_definitions.mk

all:
cd libXau; make
cd libICE; make
Expand Down Expand Up @@ -42,6 +44,7 @@ clean:
cd libXfixes; make clean
cd libXcursor; make clean
install:
mkdir -p $(DESTDIR)$(LIBDIR) $(DESTDIR)$(INCDIR) $(DESTDIR)$(KEYSYMDB)
cd libXau; make install
cd libtinyX11; make install
cd libICE; make install
Expand Down
4 changes: 4 additions & 0 deletions include/X11/extensions/render.h
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,10 @@ typedef unsigned long PictFormat;
#define X_RenderCompositeGlyphs16 24
#define X_RenderCompositeGlyphs32 25
#define X_RenderFillRectangles 26
/* 0.5 */
#define X_RenderCreateCursor 27
/* 0.8 */
#define X_RenderCreateAnimCursor 31

#define BadPictFormat 0
#define BadPicture 1
Expand Down
50 changes: 50 additions & 0 deletions include/X11/extensions/renderproto.h
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,8 @@ typedef struct {

#define sz_xTriangle 24

#define sz_xTrapezoid 40

typedef struct {
CARD16 width B16;
CARD16 height B16;
Expand Down Expand Up @@ -309,6 +311,22 @@ typedef struct {

#define sz_xRenderScaleReq 32

typedef struct {
CARD8 reqType;
CARD8 renderReqType;
CARD16 length B16;
CARD8 op;
CARD8 pad1;
CARD16 pad2 B16;
Picture src B32;
Picture dst B32;
PictFormat maskFormat B32;
INT16 xSrc B16;
INT16 ySrc B16;
} xRenderTrapezoidsReq;

#define sz_xRenderTrapezoidsReq 24

typedef struct {
CARD8 reqType;
CARD8 renderReqType;
Expand Down Expand Up @@ -404,6 +422,38 @@ typedef struct {

#define sz_xRenderFillRectanglesReq 20

/* 0.5 and higher */

typedef struct {
CARD8 reqType;
CARD8 renderReqType;
CARD16 length B16;
Cursor cid B32;
Picture src B32;
CARD16 x B16;
CARD16 y B16;
} xRenderCreateCursorReq;

#define sz_xRenderCreateCursorReq 16

/* 0.8 and higher */

typedef struct {
Cursor cursor B32;
CARD32 delay B32;
} xAnimCursorElt;

#define sz_xAnimCursorElt 8

typedef struct {
CARD8 reqType;
CARD8 renderReqType;
CARD16 length B16;
Cursor cid B32;
} xRenderCreateAnimCursorReq;

#define sz_xRenderCreateAnimCursorReq 8

#undef Window
#undef Drawable
#undef Font
Expand Down
32 changes: 3 additions & 29 deletions include/X11/keysym.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
/* $Xorg: keysym.h,v 1.4 2001/02/09 02:03:23 xorgcvs Exp $ */

/***********************************************************

Copyright 1987, 1998 The Open Group
Expand Down Expand Up @@ -46,7 +44,6 @@ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
SOFTWARE.

******************************************************************/
/* $XFree86: xc/include/keysym.h,v 1.4 2001/12/14 19:53:26 dawes Exp $ */

/* default keysyms */
#define XK_MISCELLANY
Expand All @@ -69,32 +66,9 @@ SOFTWARE.
#define XK_GEORGIAN
#define XK_VIETNAMESE
#define XK_CURRENCY



#undef XK_LATIN2
#undef XK_LATIN3
#undef XK_LATIN4
#undef XK_LATIN8
#undef XK_LATIN9
#undef XK_KATAKANA
#undef XK_ARABIC
#undef XK_CYRILLIC
#undef XK_GREEK
#undef XK_TECHNICAL
#undef XK_SPECIAL
#undef XK_PUBLISHING
#undef XK_APL
#undef XK_HEBREW
#undef XK_THAI
#undef XK_KOREAN
#undef XK_ARMENIAN
#undef XK_GEORGIAN
#undef XK_CAUCASUS
#undef XK_VIETNAMESE
#undef XK_CURRENCY


#define XK_MATHEMATICAL
#define XK_BRAILLE
#define XK_SINHALA

#include "keysymdef.h"

Loading