xf86dri.h revision 677833bc953b6cb418c701facbdcf4aa18d6c44e
325N/A/* $XFree86: xc/lib/GL/dri/xf86dri.h,v 1.8 2002/10/30 12:51:25 alanh Exp $ */
325N/A/**************************************************************************
325N/A
325N/ACopyright 1998-1999 Precision Insight, Inc., Cedar Park, Texas.
325N/ACopyright 2000 VA Linux Systems, Inc.
325N/AAll Rights Reserved.
325N/A
325N/APermission is hereby granted, free of charge, to any person obtaining a
325N/Acopy of this software and associated documentation files (the
325N/A"Software"), to deal in the Software without restriction, including
325N/Awithout limitation the rights to use, copy, modify, merge, publish,
325N/Adistribute, sub license, and/or sell copies of the Software, and to
325N/Apermit persons to whom the Software is furnished to do so, subject to
325N/Athe following conditions:
325N/A
325N/AThe above copyright notice and this permission notice (including the
325N/Anext paragraph) shall be included in all copies or substantial portions
325N/Aof the Software.
325N/A
325N/ATHE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
325N/AOR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
325N/AMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
325N/AIN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
325N/AANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
325N/ATORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
325N/ASOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
325N/A
325N/A**************************************************************************/
325N/A
325N/A/**
325N/A * \file xf86dri.h
325N/A * Protocol numbers and function prototypes for DRI X protocol.
325N/A *
325N/A * \author Kevin E. Martin <martin@valinux.com>
325N/A * \author Jens Owen <jens@tungstengraphics.com>
325N/A * \author Rickard E. (Rik) Faith <faith@valinux.com>
325N/A */
325N/A
325N/A#ifndef _XF86DRI_H_
325N/A#define _XF86DRI_H_
325N/A
325N/A#include <X11/Xfuncproto.h>
325N/A#include <xf86drm.h>
325N/A
325N/A#define X_XF86DRIQueryVersion 0
325N/A#define X_XF86DRIQueryDirectRenderingCapable 1
325N/A#define X_XF86DRIOpenConnection 2
325N/A#define X_XF86DRICloseConnection 3
325N/A#define X_XF86DRIGetClientDriverName 4
325N/A#define X_XF86DRICreateContext 5
325N/A#define X_XF86DRIDestroyContext 6
325N/A#define X_XF86DRICreateDrawable 7
#define X_XF86DRIDestroyDrawable 8
#define X_XF86DRIGetDrawableInfo 9
#define X_XF86DRIGetDeviceInfo 10
#define X_XF86DRIAuthConnection 11
#define X_XF86DRIOpenFullScreen 12 /* Deprecated */
#define X_XF86DRICloseFullScreen 13 /* Deprecated */
#define XF86DRINumberEvents 0
#define XF86DRIClientNotLocal 0
#define XF86DRIOperationNotSupported 1
#define XF86DRINumberErrors (XF86DRIOperationNotSupported + 1)
#ifndef _XF86DRI_SERVER_
#include <GL/internal/dri_interface.h>
_XFUNCPROTOBEGIN
Bool XF86DRIQueryExtension( Display *dpy, int *event_base, int *error_base );
Bool XF86DRIQueryVersion( Display *dpy, int *majorVersion, int *minorVersion,
int *patchVersion );
Bool XF86DRIQueryDirectRenderingCapable( Display *dpy, int screen,
Bool *isCapable );
Bool XF86DRIOpenConnection( Display *dpy, int screen, drm_handle_t *hSAREA,
char **busIDString );
Bool XF86DRIAuthConnection( Display *dpy, int screen, drm_magic_t magic );
Bool XF86DRICloseConnection( Display *dpy, int screen );
Bool XF86DRIGetClientDriverName( Display *dpy, int screen,
int *ddxDriverMajorVersion, int *ddxDriverMinorVersion,
int *ddxDriverPatchVersion, char **clientDriverName );
Bool XF86DRICreateContext( Display *dpy, int screen, Visual *visual,
XID *ptr_to_returned_context_id, drm_context_t *hHWContext );
Bool XF86DRICreateContextWithConfig( Display *dpy, int screen, int configID,
XID *ptr_to_returned_context_id, drm_context_t *hHWContext );
extern GLboolean XF86DRIDestroyContext( __DRInativeDisplay *dpy, int screen,
__DRIid context_id );
extern GLboolean XF86DRICreateDrawable( __DRInativeDisplay *dpy, int screen,
__DRIid drawable, drm_drawable_t *hHWDrawable );
extern GLboolean XF86DRIDestroyDrawable( __DRInativeDisplay *dpy, int screen,
__DRIid drawable);
Bool XF86DRIGetDrawableInfo( Display *dpy, int screen, Drawable drawable,
unsigned int *index, unsigned int *stamp,
int *X, int *Y, int *W, int *H,
int *numClipRects, drm_clip_rect_t ** pClipRects,
int *backX, int *backY,
int *numBackClipRects, drm_clip_rect_t **pBackClipRects );
Bool XF86DRIGetDeviceInfo( Display *dpy, int screen,
drm_handle_t *hFrameBuffer, int *fbOrigin, int *fbSize,
int *fbStride, int *devPrivateSize, void **pDevPrivate );
_XFUNCPROTOEND
#endif /* _XF86DRI_SERVER_ */
#endif /* _XF86DRI_H_ */