2 * Mesa 3-D graphics library
4 * Copyright (C) 1999-2006 Brian Paul All Rights Reserved.
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included
14 * in all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
17 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22 * OTHER DEALINGS IN THE SOFTWARE.
27 * Image convolution functions.
29 * Notes: filter kernel elements are indexed by <n> and <m> as in
40 _mesa_ConvolutionFilter1D(GLenum target
, GLenum internalFormat
, GLsizei width
, GLenum format
, GLenum type
, const GLvoid
*image
)
42 GET_CURRENT_CONTEXT(ctx
);
44 _mesa_error(ctx
, GL_INVALID_OPERATION
, "glConvolutionFilter1D");
48 _mesa_ConvolutionFilter2D(GLenum target
, GLenum internalFormat
, GLsizei width
, GLsizei height
, GLenum format
, GLenum type
, const GLvoid
*image
)
50 GET_CURRENT_CONTEXT(ctx
);
52 _mesa_error(ctx
, GL_INVALID_OPERATION
, "glConvolutionFilter2D");
57 _mesa_ConvolutionParameterf(GLenum target
, GLenum pname
, GLfloat param
)
59 GET_CURRENT_CONTEXT(ctx
);
61 _mesa_error(ctx
, GL_INVALID_OPERATION
, "glConvolutionParameterf");
66 _mesa_ConvolutionParameterfv(GLenum target
, GLenum pname
, const GLfloat
*params
)
68 GET_CURRENT_CONTEXT(ctx
);
70 _mesa_error(ctx
, GL_INVALID_OPERATION
, "glConvolutionParameterfv");
75 _mesa_ConvolutionParameteri(GLenum target
, GLenum pname
, GLint param
)
77 GET_CURRENT_CONTEXT(ctx
);
79 _mesa_error(ctx
, GL_INVALID_OPERATION
, "glConvolutionParameteri");
84 _mesa_ConvolutionParameteriv(GLenum target
, GLenum pname
, const GLint
*params
)
86 GET_CURRENT_CONTEXT(ctx
);
88 _mesa_error(ctx
, GL_INVALID_OPERATION
, "glConvolutionParameteriv");
93 _mesa_CopyConvolutionFilter1D(GLenum target
, GLenum internalFormat
, GLint x
, GLint y
, GLsizei width
)
95 GET_CURRENT_CONTEXT(ctx
);
97 _mesa_error(ctx
, GL_INVALID_OPERATION
, "glCopyConvolutionFilter1D");
102 _mesa_CopyConvolutionFilter2D(GLenum target
, GLenum internalFormat
, GLint x
, GLint y
, GLsizei width
, GLsizei height
)
104 GET_CURRENT_CONTEXT(ctx
);
106 _mesa_error(ctx
, GL_INVALID_OPERATION
, "glCopyConvolutionFilter2D");
111 _mesa_GetnConvolutionFilterARB(GLenum target
, GLenum format
, GLenum type
,
112 GLsizei bufSize
, GLvoid
*image
)
114 GET_CURRENT_CONTEXT(ctx
);
116 _mesa_error(ctx
, GL_INVALID_OPERATION
, "glGetConvolutionFilter");
121 _mesa_GetConvolutionFilter(GLenum target
, GLenum format
, GLenum type
,
124 _mesa_GetnConvolutionFilterARB(target
, format
, type
, INT_MAX
, image
);
129 _mesa_GetConvolutionParameterfv(GLenum target
, GLenum pname
, GLfloat
*params
)
131 GET_CURRENT_CONTEXT(ctx
);
133 _mesa_error(ctx
, GL_INVALID_OPERATION
, "glGetConvolutionParameterfv");
138 _mesa_GetConvolutionParameteriv(GLenum target
, GLenum pname
, GLint
*params
)
140 GET_CURRENT_CONTEXT(ctx
);
142 _mesa_error(ctx
, GL_INVALID_OPERATION
, "glGetConvolutionParameteriv");
147 _mesa_GetnSeparableFilterARB(GLenum target
, GLenum format
, GLenum type
,
148 GLsizei rowBufSize
, GLvoid
*row
,
149 GLsizei columnBufSize
, GLvoid
*column
,
152 GET_CURRENT_CONTEXT(ctx
);
154 _mesa_error(ctx
, GL_INVALID_OPERATION
, "glGetSeparableFilter");
159 _mesa_GetSeparableFilter(GLenum target
, GLenum format
, GLenum type
,
160 GLvoid
*row
, GLvoid
*column
, GLvoid
*span
)
162 _mesa_GetnSeparableFilterARB(target
, format
, type
, INT_MAX
, row
,
163 INT_MAX
, column
, span
);
168 _mesa_SeparableFilter2D(GLenum target
, GLenum internalFormat
, GLsizei width
, GLsizei height
, GLenum format
, GLenum type
, const GLvoid
*row
, const GLvoid
*column
)
170 GET_CURRENT_CONTEXT(ctx
);
172 _mesa_error(ctx
, GL_INVALID_OPERATION
, "glSeparableFilter2D");