XQuartz: appledri: Change whitespace in appledristr.h to match mesa

Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
Reviewed-by: Jamey Sharp <jamey@minilop.net>
This commit is contained in:
Jeremy Huddleston 2011-10-20 11:35:54 -07:00
parent 83fef4235d
commit e4f257748b

View File

@ -42,209 +42,225 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#define APPLEDRINAME "Apple-DRI" #define APPLEDRINAME "Apple-DRI"
#define APPLE_DRI_MAJOR_VERSION 1 /* current version numbers */ #define APPLE_DRI_MAJOR_VERSION 1 /* current version numbers */
#define APPLE_DRI_MINOR_VERSION 0 #define APPLE_DRI_MINOR_VERSION 0
#define APPLE_DRI_PATCH_VERSION 0 #define APPLE_DRI_PATCH_VERSION 0
typedef struct _AppleDRIQueryVersion { typedef struct _AppleDRIQueryVersion
CARD8 reqType; /* always DRIReqCode */ {
CARD8 driReqType; /* always X_DRIQueryVersion */ CARD8 reqType; /* always DRIReqCode */
CARD16 length B16; CARD8 driReqType; /* always X_DRIQueryVersion */
CARD16 length B16;
} xAppleDRIQueryVersionReq; } xAppleDRIQueryVersionReq;
#define sz_xAppleDRIQueryVersionReq 4 #define sz_xAppleDRIQueryVersionReq 4
typedef struct { typedef struct
BYTE type; /* X_Reply */ {
BOOL pad1; BYTE type; /* X_Reply */
CARD16 sequenceNumber B16; BOOL pad1;
CARD32 length B32; CARD16 sequenceNumber B16;
CARD16 majorVersion B16; /* major version of DRI protocol */ CARD32 length B32;
CARD16 minorVersion B16; /* minor version of DRI protocol */ CARD16 majorVersion B16; /* major version of DRI protocol */
CARD32 patchVersion B32; /* patch version of DRI protocol */ CARD16 minorVersion B16; /* minor version of DRI protocol */
CARD32 pad3 B32; CARD32 patchVersion B32; /* patch version of DRI protocol */
CARD32 pad4 B32; CARD32 pad3 B32;
CARD32 pad5 B32; CARD32 pad4 B32;
CARD32 pad6 B32; CARD32 pad5 B32;
CARD32 pad6 B32;
} xAppleDRIQueryVersionReply; } xAppleDRIQueryVersionReply;
#define sz_xAppleDRIQueryVersionReply 32 #define sz_xAppleDRIQueryVersionReply 32
typedef struct _AppleDRIQueryDirectRenderingCapable { typedef struct _AppleDRIQueryDirectRenderingCapable
CARD8 reqType; /* always DRIReqCode */ {
CARD8 driReqType; /* X_DRIQueryDirectRenderingCapable */ CARD8 reqType; /* always DRIReqCode */
CARD16 length B16; CARD8 driReqType; /* X_DRIQueryDirectRenderingCapable */
CARD32 screen B32; CARD16 length B16;
CARD32 screen B32;
} xAppleDRIQueryDirectRenderingCapableReq; } xAppleDRIQueryDirectRenderingCapableReq;
#define sz_xAppleDRIQueryDirectRenderingCapableReq 8 #define sz_xAppleDRIQueryDirectRenderingCapableReq 8
typedef struct { typedef struct
BYTE type; /* X_Reply */ {
BOOL pad1; BYTE type; /* X_Reply */
CARD16 sequenceNumber B16; BOOL pad1;
CARD32 length B32; CARD16 sequenceNumber B16;
BOOL isCapable; CARD32 length B32;
BOOL pad2; BOOL isCapable;
BOOL pad3; BOOL pad2;
BOOL pad4; BOOL pad3;
CARD32 pad5 B32; BOOL pad4;
CARD32 pad6 B32; CARD32 pad5 B32;
CARD32 pad7 B32; CARD32 pad6 B32;
CARD32 pad8 B32; CARD32 pad7 B32;
CARD32 pad9 B32; CARD32 pad8 B32;
CARD32 pad9 B32;
} xAppleDRIQueryDirectRenderingCapableReply; } xAppleDRIQueryDirectRenderingCapableReply;
#define sz_xAppleDRIQueryDirectRenderingCapableReply 32 #define sz_xAppleDRIQueryDirectRenderingCapableReply 32
typedef struct _AppleDRIAuthConnection { typedef struct _AppleDRIAuthConnection
CARD8 reqType; /* always DRIReqCode */ {
CARD8 driReqType; /* always X_DRICloseConnection */ CARD8 reqType; /* always DRIReqCode */
CARD16 length B16; CARD8 driReqType; /* always X_DRICloseConnection */
CARD32 screen B32; CARD16 length B16;
CARD32 magic B32; CARD32 screen B32;
CARD32 magic B32;
} xAppleDRIAuthConnectionReq; } xAppleDRIAuthConnectionReq;
#define sz_xAppleDRIAuthConnectionReq 12 #define sz_xAppleDRIAuthConnectionReq 12
typedef struct { typedef struct
BYTE type; {
BOOL pad1; BYTE type;
CARD16 sequenceNumber B16; BOOL pad1;
CARD32 length B32; CARD16 sequenceNumber B16;
CARD32 authenticated B32; CARD32 length B32;
CARD32 pad2 B32; CARD32 authenticated B32;
CARD32 pad3 B32; CARD32 pad2 B32;
CARD32 pad4 B32; CARD32 pad3 B32;
CARD32 pad5 B32; CARD32 pad4 B32;
CARD32 pad6 B32; CARD32 pad5 B32;
CARD32 pad6 B32;
} xAppleDRIAuthConnectionReply; } xAppleDRIAuthConnectionReply;
#define zx_xAppleDRIAuthConnectionReply 32 #define zx_xAppleDRIAuthConnectionReply 32
typedef struct _AppleDRICreateSurface { typedef struct _AppleDRICreateSurface
CARD8 reqType; /* always DRIReqCode */ {
CARD8 driReqType; /* always X_DRICreateSurface */ CARD8 reqType; /* always DRIReqCode */
CARD16 length B16; CARD8 driReqType; /* always X_DRICreateSurface */
CARD32 screen B32; CARD16 length B16;
CARD32 drawable B32; CARD32 screen B32;
CARD32 client_id B32; CARD32 drawable B32;
CARD32 client_id B32;
} xAppleDRICreateSurfaceReq; } xAppleDRICreateSurfaceReq;
#define sz_xAppleDRICreateSurfaceReq 16 #define sz_xAppleDRICreateSurfaceReq 16
typedef struct { typedef struct
BYTE type; /* X_Reply */ {
BOOL pad1; BYTE type; /* X_Reply */
CARD16 sequenceNumber B16; BOOL pad1;
CARD32 length B32; CARD16 sequenceNumber B16;
CARD32 key_0 B32; CARD32 length B32;
CARD32 key_1 B32; CARD32 key_0 B32;
CARD32 uid B32; CARD32 key_1 B32;
CARD32 pad4 B32; CARD32 uid B32;
CARD32 pad5 B32; CARD32 pad4 B32;
CARD32 pad6 B32; CARD32 pad5 B32;
CARD32 pad6 B32;
} xAppleDRICreateSurfaceReply; } xAppleDRICreateSurfaceReply;
#define sz_xAppleDRICreateSurfaceReply 32 #define sz_xAppleDRICreateSurfaceReply 32
typedef struct _AppleDRIDestroySurface { typedef struct _AppleDRIDestroySurface
CARD8 reqType; /* always DRIReqCode */ {
CARD8 driReqType; /* always X_DRIDestroySurface */ CARD8 reqType; /* always DRIReqCode */
CARD16 length B16; CARD8 driReqType; /* always X_DRIDestroySurface */
CARD32 screen B32; CARD16 length B16;
CARD32 drawable B32; CARD32 screen B32;
CARD32 drawable B32;
} xAppleDRIDestroySurfaceReq; } xAppleDRIDestroySurfaceReq;
#define sz_xAppleDRIDestroySurfaceReq 12 #define sz_xAppleDRIDestroySurfaceReq 12
typedef struct _AppleDRINotify { typedef struct _AppleDRINotify
BYTE type; /* always eventBase + event type */ {
BYTE kind; BYTE type; /* always eventBase + event type */
CARD16 sequenceNumber B16; BYTE kind;
CARD32 time B32; /* time of change */ CARD16 sequenceNumber B16;
CARD32 pad1 B32; CARD32 time B32; /* time of change */
CARD32 arg B32; CARD32 pad1 B32;
CARD32 pad3 B32; CARD32 arg B32;
CARD32 pad4 B32; CARD32 pad3 B32;
CARD32 pad5 B32; CARD32 pad4 B32;
CARD32 pad6 B32; CARD32 pad5 B32;
CARD32 pad6 B32;
} xAppleDRINotifyEvent; } xAppleDRINotifyEvent;
#define sz_xAppleDRINotifyEvent 32 #define sz_xAppleDRINotifyEvent 32
typedef struct { typedef struct
CARD8 reqType; {
CARD8 driReqType; CARD8 reqType;
CARD16 length B16; CARD8 driReqType;
CARD32 screen B32; CARD16 length B16;
CARD32 drawable B32; CARD32 screen B32;
BOOL doubleSwap; CARD32 drawable B32;
CARD8 pad1, pad2, pad3; BOOL doubleSwap;
CARD8 pad1, pad2, pad3;
} xAppleDRICreateSharedBufferReq; } xAppleDRICreateSharedBufferReq;
#define sz_xAppleDRICreateSharedBufferReq 16 #define sz_xAppleDRICreateSharedBufferReq 16
typedef struct { typedef struct
BYTE type; {
BYTE data1; BYTE type;
CARD16 sequenceNumber B16; BYTE data1;
CARD32 length B32; CARD16 sequenceNumber B16;
CARD32 stringLength B32; /* 0 on error */ CARD32 length B32;
CARD32 width B32; CARD32 stringLength B32; /* 0 on error */
CARD32 height B32; CARD32 width B32;
CARD32 pad1 B32; CARD32 height B32;
CARD32 pad2 B32; CARD32 pad1 B32;
CARD32 pad3 B32; CARD32 pad2 B32;
CARD32 pad3 B32;
} xAppleDRICreateSharedBufferReply; } xAppleDRICreateSharedBufferReply;
#define sz_xAppleDRICreateSharedBufferReply 32 #define sz_xAppleDRICreateSharedBufferReply 32
typedef struct { typedef struct
CARD8 reqType; {
CARD8 driReqType; CARD8 reqType;
CARD16 length B16; CARD8 driReqType;
CARD32 screen B32; CARD16 length B16;
CARD32 drawable B32; CARD32 screen B32;
CARD32 drawable B32;
} xAppleDRISwapBuffersReq; } xAppleDRISwapBuffersReq;
#define sz_xAppleDRISwapBuffersReq 12 #define sz_xAppleDRISwapBuffersReq 12
typedef struct { typedef struct
CARD8 reqType; /*1*/ {
CARD8 driReqType; /*2*/ CARD8 reqType; /*1 */
CARD16 length B16; /*4*/ CARD8 driReqType; /*2 */
CARD32 screen B32; /*8*/ CARD16 length B16; /*4 */
CARD32 drawable B32; /*12*/ CARD32 screen B32; /*8 */
CARD32 drawable B32; /*12 */
} xAppleDRICreatePixmapReq; } xAppleDRICreatePixmapReq;
#define sz_xAppleDRICreatePixmapReq 12 #define sz_xAppleDRICreatePixmapReq 12
typedef struct { typedef struct
BYTE type; /*1*/ {
BOOL pad1; /*2*/ BYTE type; /*1 */
CARD16 sequenceNumber B16; /*4*/ BOOL pad1; /*2 */
CARD32 length B32; /*8*/ CARD16 sequenceNumber B16; /*4 */
CARD32 width B32; /*12*/ CARD32 length B32; /*8 */
CARD32 height B32; /*16*/ CARD32 width B32; /*12 */
CARD32 pitch B32; /*20*/ CARD32 height B32; /*16 */
CARD32 bpp B32; /*24*/ CARD32 pitch B32; /*20 */
CARD32 size B32; /*28*/ CARD32 bpp B32; /*24 */
CARD32 stringLength B32; /*32*/ CARD32 size B32; /*28 */
CARD32 stringLength B32; /*32 */
} xAppleDRICreatePixmapReply; } xAppleDRICreatePixmapReply;
#define sz_xAppleDRICreatePixmapReply 32 #define sz_xAppleDRICreatePixmapReply 32
typedef struct { typedef struct
CARD8 reqType; /*1*/ {
CARD8 driReqType; /*2*/ CARD8 reqType; /*1 */
CARD16 length B16; /*4*/ CARD8 driReqType; /*2 */
CARD32 drawable B32; /*8*/ CARD16 length B16; /*4 */
CARD32 drawable B32; /*8 */
} xAppleDRIDestroyPixmapReq; } xAppleDRIDestroyPixmapReq;
#define sz_xAppleDRIDestroyPixmapReq 8 #define sz_xAppleDRIDestroyPixmapReq 8
#ifdef _APPLEDRI_SERVER_ #ifdef _APPLEDRI_SERVER_
void AppleDRISendEvent ( void AppleDRISendEvent(
#if NeedFunctionPrototypes #if NeedFunctionPrototypes
int /* type */, int /* type */ ,
unsigned int /* mask */, unsigned int /* mask */ ,
int /* which */, int /* which */ ,
int /* arg */ int /* arg */
#endif #endif
); );
#endif /* _APPLEDRI_SERVER_ */ #endif /* _APPLEDRI_SERVER_ */
#endif /* _APPLEDRISTR_H_ */ #endif /* _APPLEDRISTR_H_ */