include <X11/Xlib.h>
[mesa.git] / src / glx / x11 / singlepix.c
1 /* $XFree86: xc/lib/GL/glx/singlepix.c,v 1.3 2001/03/21 16:04:39 dawes Exp $ */
2 /*
3 ** License Applicability. Except to the extent portions of this file are
4 ** made subject to an alternative license as permitted in the SGI Free
5 ** Software License B, Version 1.1 (the "License"), the contents of this
6 ** file are subject only to the provisions of the License. You may not use
7 ** this file except in compliance with the License. You may obtain a copy
8 ** of the License at Silicon Graphics, Inc., attn: Legal Services, 1600
9 ** Amphitheatre Parkway, Mountain View, CA 94043-1351, or at:
10 **
11 ** http://oss.sgi.com/projects/FreeB
12 **
13 ** Note that, as provided in the License, the Software is distributed on an
14 ** "AS IS" basis, with ALL EXPRESS AND IMPLIED WARRANTIES AND CONDITIONS
15 ** DISCLAIMED, INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTIES AND
16 ** CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A
17 ** PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
18 **
19 ** Original Code. The Original Code is: OpenGL Sample Implementation,
20 ** Version 1.2.1, released January 26, 2000, developed by Silicon Graphics,
21 ** Inc. The Original Code is Copyright (c) 1991-2000 Silicon Graphics, Inc.
22 ** Copyright in any portions created by third parties is as indicated
23 ** elsewhere herein. All Rights Reserved.
24 **
25 ** Additional Notice Provisions: The application programming interfaces
26 ** established by SGI in conjunction with the Original Code are The
27 ** OpenGL(R) Graphics System: A Specification (Version 1.2.1), released
28 ** April 1, 1999; The OpenGL(R) Graphics System Utility Library (Version
29 ** 1.3), released November 4, 1998; and OpenGL(R) Graphics with the X
30 ** Window System(R) (Version 1.3), released October 19, 1998. This software
31 ** was created using the OpenGL(R) version 1.2.1 Sample Implementation
32 ** published by SGI, but has not been independently verified as being
33 ** compliant with the OpenGL(R) version 1.2.1 Specification.
34 **
35 */
36
37 #include "packsingle.h"
38 #include "indirect.h"
39 #include "dispatch.h"
40 #include "glapi.h"
41 #include "glthread.h"
42 #include "glapioffsets.h"
43 #include <GL/glxproto.h>
44
45 void __indirect_glGetSeparableFilter(GLenum target, GLenum format, GLenum type,
46 GLvoid *row, GLvoid *column, GLvoid *span)
47 {
48 __GLX_SINGLE_DECLARE_VARIABLES();
49 const __GLXattribute * state;
50 xGLXGetSeparableFilterReply reply;
51 GLubyte *rowBuf, *colBuf;
52
53 if (!dpy) return;
54 __GLX_SINGLE_LOAD_VARIABLES();
55 state = gc->client_state_private;
56
57 /* Send request */
58 __GLX_SINGLE_BEGIN(X_GLsop_GetSeparableFilter, __GLX_PAD(13));
59 __GLX_SINGLE_PUT_LONG(0,target);
60 __GLX_SINGLE_PUT_LONG(4,format);
61 __GLX_SINGLE_PUT_LONG(8,type);
62 __GLX_SINGLE_PUT_CHAR(12,state->storePack.swapEndian);
63 __GLX_SINGLE_READ_XREPLY();
64 compsize = reply.length << 2;
65
66 if (compsize != 0) {
67 GLint width, height;
68 GLint widthsize, heightsize;
69
70 width = reply.width;
71 height = reply.height;
72
73 widthsize = __glImageSize(width,1,1,format, type, 0);
74 heightsize = __glImageSize(height,1,1,format, type, 0);
75
76 /* Allocate a holding buffer to transform the data from */
77 rowBuf = (GLubyte*) Xmalloc(widthsize);
78 if (!rowBuf) {
79 /* Throw data away */
80 _XEatData(dpy, compsize);
81 __glXSetError(gc, GL_OUT_OF_MEMORY);
82 UnlockDisplay(dpy);
83 SyncHandle();
84 return;
85 } else {
86 __GLX_SINGLE_GET_CHAR_ARRAY(((char*)rowBuf),widthsize);
87 __glEmptyImage(gc, 1, width, 1, 1, format, type, rowBuf, row);
88 Xfree((char*) rowBuf);
89 }
90 colBuf = (GLubyte*) Xmalloc(heightsize);
91 if (!colBuf) {
92 /* Throw data away */
93 _XEatData(dpy, compsize - __GLX_PAD(widthsize));
94 __glXSetError(gc, GL_OUT_OF_MEMORY);
95 UnlockDisplay(dpy);
96 SyncHandle();
97 return;
98 } else {
99 __GLX_SINGLE_GET_CHAR_ARRAY(((char*)colBuf),heightsize);
100 __glEmptyImage(gc, 1, height, 1, 1, format, type, colBuf, column);
101 Xfree((char*) colBuf);
102 }
103 } else {
104 /*
105 ** don't modify user's buffer.
106 */
107 }
108 __GLX_SINGLE_END();
109
110 }
111
112
113 #define CONCAT(a,b) a ## b
114 #define NAME(o) CONCAT(gl_dispatch_stub_, o)
115
116 void NAME(_gloffset_GetSeparableFilter)(GLenum target, GLenum format, GLenum type,
117 GLvoid *row, GLvoid *column, GLvoid *span)
118 {
119 __GLXcontext * const gc = __glXGetCurrentContext();
120
121 if (gc->driContext) {
122 CALL_GetSeparableFilter(GET_DISPATCH(),
123 (target, format, type, row, column, span));
124 return;
125 }
126 else {
127 Display *const dpy = gc->currentDpy;
128 const GLuint cmdlen = __GLX_PAD(13);
129
130 if (dpy != NULL) {
131 const __GLXattribute * const state = gc->client_state_private;
132 xGLXGetSeparableFilterReply reply;
133 GLubyte const *pc =
134 __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply,
135 X_GLvop_GetSeparableFilterEXT, cmdlen);
136 unsigned compsize;
137
138
139 (void) memcpy((void *) (pc + 0), (void *) (&target), 4);
140 (void) memcpy((void *) (pc + 4), (void *) (&format), 4);
141 (void) memcpy((void *) (pc + 8), (void *) (&type), 4);
142 *(int8_t *) (pc + 12) = state->storePack.swapEndian;
143
144 (void) _XReply(dpy, (xReply *) & reply, 0, False);
145
146 compsize = reply.length << 2;
147
148 if (compsize != 0) {
149 const GLint width = reply.width;
150 const GLint height = reply.height;
151 const GLint widthsize =
152 __glImageSize(width, 1, 1, format, type, 0);
153 const GLint heightsize =
154 __glImageSize(height, 1, 1, format, type, 0);
155 GLubyte * const buf =
156 (GLubyte*) Xmalloc((widthsize > heightsize) ? widthsize : heightsize);
157
158 if (buf == NULL) {
159 /* Throw data away */
160 _XEatData(dpy, compsize);
161 __glXSetError(gc, GL_OUT_OF_MEMORY);
162
163 UnlockDisplay(dpy);
164 SyncHandle();
165 return;
166 } else {
167 int extra;
168
169 extra = 4 - (widthsize & 3);
170 _XRead(dpy, (char *)buf, widthsize);
171 if (extra < 4) {
172 _XEatData(dpy, extra);
173 }
174
175 __glEmptyImage(gc, 1, width, 1, 1, format, type, buf,
176 row);
177
178 extra = 4 - (heightsize & 3);
179 _XRead(dpy, (char *)buf, heightsize);
180 if (extra < 4) {
181 _XEatData(dpy, extra);
182 }
183
184 __glEmptyImage(gc, 1, height, 1, 1, format, type, buf,
185 column);
186
187 Xfree((char*) buf);
188 }
189 }
190 }
191 }
192 }