Merge branch 'drm-gem'
[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 "glheader.h"
38 #include "packsingle.h"
39 #include "indirect.h"
40 #include "dispatch.h"
41 #include "glapi.h"
42 #include "glthread.h"
43 #include "glapioffsets.h"
44 #include <GL/glxproto.h>
45
46 void __indirect_glGetSeparableFilter(GLenum target, GLenum format, GLenum type,
47 GLvoid *row, GLvoid *column, GLvoid *span)
48 {
49 __GLX_SINGLE_DECLARE_VARIABLES();
50 const __GLXattribute * state;
51 xGLXGetSeparableFilterReply reply;
52 GLubyte *rowBuf, *colBuf;
53
54 if (!dpy) return;
55 __GLX_SINGLE_LOAD_VARIABLES();
56 state = gc->client_state_private;
57
58 /* Send request */
59 __GLX_SINGLE_BEGIN(X_GLsop_GetSeparableFilter, __GLX_PAD(13));
60 __GLX_SINGLE_PUT_LONG(0,target);
61 __GLX_SINGLE_PUT_LONG(4,format);
62 __GLX_SINGLE_PUT_LONG(8,type);
63 __GLX_SINGLE_PUT_CHAR(12,state->storePack.swapEndian);
64 __GLX_SINGLE_READ_XREPLY();
65 compsize = reply.length << 2;
66
67 if (compsize != 0) {
68 GLint width, height;
69 GLint widthsize, heightsize;
70
71 width = reply.width;
72 height = reply.height;
73
74 widthsize = __glImageSize(width,1,1,format, type, 0);
75 heightsize = __glImageSize(height,1,1,format, type, 0);
76
77 /* Allocate a holding buffer to transform the data from */
78 rowBuf = (GLubyte*) Xmalloc(widthsize);
79 if (!rowBuf) {
80 /* Throw data away */
81 _XEatData(dpy, compsize);
82 __glXSetError(gc, GL_OUT_OF_MEMORY);
83 UnlockDisplay(dpy);
84 SyncHandle();
85 return;
86 } else {
87 __GLX_SINGLE_GET_CHAR_ARRAY(((char*)rowBuf),widthsize);
88 __glEmptyImage(gc, 1, width, 1, 1, format, type, rowBuf, row);
89 Xfree((char*) rowBuf);
90 }
91 colBuf = (GLubyte*) Xmalloc(heightsize);
92 if (!colBuf) {
93 /* Throw data away */
94 _XEatData(dpy, compsize - __GLX_PAD(widthsize));
95 __glXSetError(gc, GL_OUT_OF_MEMORY);
96 UnlockDisplay(dpy);
97 SyncHandle();
98 return;
99 } else {
100 __GLX_SINGLE_GET_CHAR_ARRAY(((char*)colBuf),heightsize);
101 __glEmptyImage(gc, 1, height, 1, 1, format, type, colBuf, column);
102 Xfree((char*) colBuf);
103 }
104 } else {
105 /*
106 ** don't modify user's buffer.
107 */
108 }
109 __GLX_SINGLE_END();
110
111 }
112
113
114 #define CONCAT(a,b) a ## b
115 #define NAME(o) CONCAT(gl_dispatch_stub_, o)
116
117 void NAME(_gloffset_GetSeparableFilter)(GLenum target, GLenum format, GLenum type,
118 GLvoid *row, GLvoid *column, GLvoid *span)
119 {
120 __GLXcontext * const gc = __glXGetCurrentContext();
121
122 #ifdef GLX_DIRECT_RENDERING
123 if (gc->driContext) {
124 CALL_GetSeparableFilter(GET_DISPATCH(),
125 (target, format, type, row, column, span));
126 return;
127 } else
128 #endif
129 {
130 Display *const dpy = gc->currentDpy;
131 const GLuint cmdlen = __GLX_PAD(13);
132
133 if (dpy != NULL) {
134 const __GLXattribute * const state = gc->client_state_private;
135 xGLXGetSeparableFilterReply reply;
136 GLubyte const *pc =
137 __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply,
138 X_GLvop_GetSeparableFilterEXT, cmdlen);
139 unsigned compsize;
140
141
142 (void) memcpy((void *) (pc + 0), (void *) (&target), 4);
143 (void) memcpy((void *) (pc + 4), (void *) (&format), 4);
144 (void) memcpy((void *) (pc + 8), (void *) (&type), 4);
145 *(int8_t *) (pc + 12) = state->storePack.swapEndian;
146
147 (void) _XReply(dpy, (xReply *) & reply, 0, False);
148
149 compsize = reply.length << 2;
150
151 if (compsize != 0) {
152 const GLint width = reply.width;
153 const GLint height = reply.height;
154 const GLint widthsize =
155 __glImageSize(width, 1, 1, format, type, 0);
156 const GLint heightsize =
157 __glImageSize(height, 1, 1, format, type, 0);
158 GLubyte * const buf =
159 (GLubyte*) Xmalloc((widthsize > heightsize) ? widthsize : heightsize);
160
161 if (buf == NULL) {
162 /* Throw data away */
163 _XEatData(dpy, compsize);
164 __glXSetError(gc, GL_OUT_OF_MEMORY);
165
166 UnlockDisplay(dpy);
167 SyncHandle();
168 return;
169 } else {
170 int extra;
171
172 extra = 4 - (widthsize & 3);
173 _XRead(dpy, (char *)buf, widthsize);
174 if (extra < 4) {
175 _XEatData(dpy, extra);
176 }
177
178 __glEmptyImage(gc, 1, width, 1, 1, format, type, buf,
179 row);
180
181 extra = 4 - (heightsize & 3);
182 _XRead(dpy, (char *)buf, heightsize);
183 if (extra < 4) {
184 _XEatData(dpy, extra);
185 }
186
187 __glEmptyImage(gc, 1, height, 1, 1, format, type, buf,
188 column);
189
190 Xfree((char*) buf);
191 }
192 }
193 }
194 }
195 }