g3dvl: Use sobel filter for chroma interpolation
[mesa/nouveau-pmpeg.git] / src / glx / clientattrib.c
blob7792fa31f9d41233f040431f58b87b8f9e9fc719
1 /*
2 * SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008)
3 * Copyright (C) 1991-2000 Silicon Graphics, Inc. All Rights Reserved.
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 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
12 * The above copyright notice including the dates of first publication and
13 * either this permission notice or a reference to
14 * http://oss.sgi.com/projects/FreeB/
15 * shall be included in all copies or substantial portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * SILICON GRAPHICS, INC. BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
21 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
22 * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 * SOFTWARE.
25 * Except as contained in this notice, the name of Silicon Graphics, Inc.
26 * shall not be used in advertising or otherwise to promote the sale, use or
27 * other dealings in this Software without prior written authorization from
28 * Silicon Graphics, Inc.
31 #include <assert.h>
32 #include "glxclient.h"
33 #include "indirect.h"
34 #include "indirect_vertex_array.h"
36 /*****************************************************************************/
38 #ifndef GLX_USE_APPLEGL
39 static void
40 do_enable_disable(GLenum array, GLboolean val)
42 struct glx_context *gc = __glXGetCurrentContext();
43 __GLXattribute *state = (__GLXattribute *) (gc->client_state_private);
44 unsigned index = 0;
46 if (array == GL_TEXTURE_COORD_ARRAY) {
47 index = __glXGetActiveTextureUnit(state);
50 if (!__glXSetArrayEnable(state, array, index, val)) {
51 __glXSetError(gc, GL_INVALID_ENUM);
55 void
56 __indirect_glEnableClientState(GLenum array)
58 do_enable_disable(array, GL_TRUE);
61 void
62 __indirect_glDisableClientState(GLenum array)
64 do_enable_disable(array, GL_FALSE);
67 /************************************************************************/
69 void
70 __indirect_glPushClientAttrib(GLuint mask)
72 struct glx_context *gc = __glXGetCurrentContext();
73 __GLXattribute *state = (__GLXattribute *) (gc->client_state_private);
74 __GLXattribute **spp = gc->attributes.stackPointer, *sp;
76 if (spp < &gc->attributes.stack[__GL_CLIENT_ATTRIB_STACK_DEPTH]) {
77 if (!(sp = *spp)) {
78 sp = (__GLXattribute *) Xmalloc(sizeof(__GLXattribute));
79 *spp = sp;
81 sp->mask = mask;
82 gc->attributes.stackPointer = spp + 1;
83 if (mask & GL_CLIENT_PIXEL_STORE_BIT) {
84 sp->storePack = state->storePack;
85 sp->storeUnpack = state->storeUnpack;
87 if (mask & GL_CLIENT_VERTEX_ARRAY_BIT) {
88 __glXPushArrayState(state);
91 else {
92 __glXSetError(gc, GL_STACK_OVERFLOW);
93 return;
97 void
98 __indirect_glPopClientAttrib(void)
100 struct glx_context *gc = __glXGetCurrentContext();
101 __GLXattribute *state = (__GLXattribute *) (gc->client_state_private);
102 __GLXattribute **spp = gc->attributes.stackPointer, *sp;
103 GLuint mask;
105 if (spp > &gc->attributes.stack[0]) {
106 --spp;
107 sp = *spp;
108 assert(sp != 0);
109 mask = sp->mask;
110 gc->attributes.stackPointer = spp;
112 if (mask & GL_CLIENT_PIXEL_STORE_BIT) {
113 state->storePack = sp->storePack;
114 state->storeUnpack = sp->storeUnpack;
116 if (mask & GL_CLIENT_VERTEX_ARRAY_BIT) {
117 __glXPopArrayState(state);
120 sp->mask = 0;
122 else {
123 __glXSetError(gc, GL_STACK_UNDERFLOW);
124 return;
127 #endif
129 void
130 __glFreeAttributeState(struct glx_context * gc)
132 __GLXattribute *sp, **spp;
134 for (spp = &gc->attributes.stack[0];
135 spp < &gc->attributes.stack[__GL_CLIENT_ATTRIB_STACK_DEPTH]; spp++) {
136 sp = *spp;
137 if (sp) {
138 XFree((char *) sp);
140 else {
141 break;