Add mouse and keyboard configuration file
[profile/ivi/xorg-x11-server.git] / glx / swap_interval.c
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
43 static int DoSwapInterval(__GLXclientState *cl, GLbyte *pc, int do_swap);
44
45 int 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     cx = __glXLookupContextByTag(cl, tag);
55
56     if ((cx == NULL) || (cx->pGlxScreen == NULL)) {
57         client->errorValue = tag;
58         return __glXError(GLXBadContext);
59     }
60     
61     if (cx->pGlxScreen->swapInterval == NULL) {
62         LogMessage(X_ERROR, "AIGLX: cx->pGlxScreen->swapInterval == NULL\n");
63         client->errorValue = tag;
64         return __glXError(GLXUnsupportedPrivateRequest);
65     }
66
67     if (cx->drawPriv == NULL) {
68         client->errorValue = tag;
69         return BadValue;
70     }
71     
72     pc += __GLX_VENDPRIV_HDR_SIZE;
73     interval = (do_swap)
74       ? bswap_32(*(int *)(pc + 0))
75       :          *(int *)(pc + 0);
76
77     if (interval <= 0)
78         return BadValue;
79
80     (void) (*cx->pGlxScreen->swapInterval)(cx->drawPriv, interval);
81     return Success;
82 }
83
84 int __glXDisp_SwapIntervalSGI(__GLXclientState *cl, GLbyte *pc)
85 {
86     return DoSwapInterval(cl, pc, 0);
87 }
88
89 int __glXDispSwap_SwapIntervalSGI(__GLXclientState *cl, GLbyte *pc)
90 {
91     return DoSwapInterval(cl, pc, 1);
92 }