1/* 2 * (C) Copyright IBM Corporation 2006 3 * All Rights Reserved. 4 * 5 * Permission is hereby granted, free of charge, to any person obtaining a 6 * copy of this software and associated documentation files (the "Software"), 7 * to deal in the Software without restriction, including without limitation 8 * on the rights to use, copy, modify, merge, publish, distribute, sub 9 * license, and/or sell copies of the Software, and to permit persons to whom 10 * the Software is furnished to do so, subject to the following conditions: 11 * 12 * The above copyright notice and this permission notice (including the next 13 * paragraph) shall be included in all copies or substantial portions of the 14 * Software. 15 * 16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL 19 * THE COPYRIGHT HOLDERS AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM, 20 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR 21 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE 22 * USE OR OTHER DEALINGS IN THE SOFTWARE. 23 */ 24 25#ifdef HAVE_DIX_CONFIG_H 26#include <dix-config.h> 27#endif 28 29#include "glxserver.h" 30#include "glxutil.h" 31#include "glxext.h" 32#include "singlesize.h" 33#include "unpack.h" 34#include "indirect_size_get.h" 35#include "indirect_dispatch.h" 36#include "glapitable.h" 37#include "glapi.h" 38#include "glthread.h" 39#include "dispatch.h" 40#include "glapioffsets.h" 41#include "glxbyteorder.h" 42 43static int DoSwapInterval(__GLXclientState *cl, GLbyte *pc, int do_swap); 44 45int DoSwapInterval(__GLXclientState *cl, GLbyte *pc, int do_swap) 46{ 47 xGLXVendorPrivateReq * const req = (xGLXVendorPrivateReq *) pc; 48 ClientPtr client = cl->client; 49 const GLXContextTag tag = req->contextTag; 50 __GLXcontext *cx; 51 GLint interval; 52 53 54 REQUEST_FIXED_SIZE(xGLXVendorPrivateReq, 4); 55 56 cx = __glXLookupContextByTag(cl, tag); 57 58 if ((cx == NULL) || (cx->pGlxScreen == NULL)) { 59 client->errorValue = tag; 60 return __glXError(GLXBadContext); 61 } 62 63 if (cx->pGlxScreen->swapInterval == NULL) { 64 LogMessage(X_ERROR, "AIGLX: cx->pGlxScreen->swapInterval == NULL\n"); 65 client->errorValue = tag; 66 return __glXError(GLXUnsupportedPrivateRequest); 67 } 68 69 if (cx->drawPriv == NULL) { 70 client->errorValue = tag; 71 return BadValue; 72 } 73 74 pc += __GLX_VENDPRIV_HDR_SIZE; 75 interval = (do_swap) 76 ? bswap_32(*(int *)(pc + 0)) 77 : *(int *)(pc + 0); 78 79 if (interval <= 0) 80 return BadValue; 81 82 (void) (*cx->pGlxScreen->swapInterval)(cx->drawPriv, interval); 83 return Success; 84} 85 86int __glXDisp_SwapIntervalSGI(__GLXclientState *cl, GLbyte *pc) 87{ 88 return DoSwapInterval(cl, pc, 0); 89} 90 91int __glXDispSwap_SwapIntervalSGI(__GLXclientState *cl, GLbyte *pc) 92{ 93 return DoSwapInterval(cl, pc, 1); 94} 95