glxsingle.h revision 61cb83a8ccd1dd7f671f31fa93c9d8b7be09b4cc
bee2440354b4bc8796e1de0b6cbd60e1f68deba0Phill Cunnington/*
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster * SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008)
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster * Copyright (C) 1991-2000 Silicon Graphics, Inc. All Rights Reserved.
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster *
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster * Permission is hereby granted, free of charge, to any person obtaining a
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster * copy of this software and associated documentation files (the "Software"),
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster * to deal in the Software without restriction, including without limitation
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster * the rights to use, copy, modify, merge, publish, distribute, sublicense,
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster * and/or sell copies of the Software, and to permit persons to whom the
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster * Software is furnished to do so, subject to the following conditions:
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster *
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster * The above copyright notice including the dates of first publication and
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster * either this permission notice or a reference to
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster * http://oss.sgi.com/projects/FreeB/
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster * shall be included in all copies or substantial portions of the Software.
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster *
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster * SILICON GRAPHICS, INC. BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster * SOFTWARE.
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster *
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster * Except as contained in this notice, the name of Silicon Graphics, Inc.
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster * shall not be used in advertising or otherwise to promote the sale, use or
c9ba1a8f3afcf43e26fe5b062ac652b347b283fbJames Phillpotts * other dealings in this Software without prior written authorization from
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster * Silicon Graphics, Inc.
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster */
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster#ifndef __GLXSINGLE_H
c9ba1a8f3afcf43e26fe5b062ac652b347b283fbJames Phillpotts#define __GLXSINGLE_H
c9ba1a8f3afcf43e26fe5b062ac652b347b283fbJames Phillpotts
c9ba1a8f3afcf43e26fe5b062ac652b347b283fbJames Phillpottsextern int __glXForwardSingleReq(__GLXclientState * cl, GLbyte * pc);
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Fosterextern int __glXForwardPipe0WithReply(__GLXclientState * cl, GLbyte * pc);
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Fosterextern int __glXForwardAllWithReply(__GLXclientState * cl, GLbyte * pc);
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Fosterextern int __glXForwardSingleReqSwap(__GLXclientState * cl, GLbyte * pc);
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster
c9ba1a8f3afcf43e26fe5b062ac652b347b283fbJames Phillpottsextern int __glXForwardPipe0WithReplySwap(__GLXclientState * cl, GLbyte * pc);
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Fosterextern int __glXForwardPipe0WithReplySwapsv(__GLXclientState * cl, GLbyte * pc);
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Fosterextern int __glXForwardPipe0WithReplySwapiv(__GLXclientState * cl, GLbyte * pc);
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Fosterextern int __glXForwardPipe0WithReplySwapdv(__GLXclientState * cl, GLbyte * pc);
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Fosterextern int __glXForwardAllWithReplySwap(__GLXclientState * cl, GLbyte * pc);
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Fosterextern int __glXForwardAllWithReplySwapsv(__GLXclientState * cl, GLbyte * pc);
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Fosterextern int __glXForwardAllWithReplySwapiv(__GLXclientState * cl, GLbyte * pc);
c9ba1a8f3afcf43e26fe5b062ac652b347b283fbJames Phillpottsextern int __glXForwardAllWithReplySwapdv(__GLXclientState * cl, GLbyte * pc);
c9ba1a8f3afcf43e26fe5b062ac652b347b283fbJames Phillpotts
c9ba1a8f3afcf43e26fe5b062ac652b347b283fbJames Phillpottsextern int __glXDisp_ReadPixels(__GLXclientState * cl, GLbyte * pc);
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Fosterextern int __glXDispSwap_GetTexImage(__GLXclientState * cl, GLbyte * pc);
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Fosterextern int __glXDispSwap_GetColorTable(__GLXclientState * cl, GLbyte * pc);
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster#endif
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster