Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
5564 serge 1
 
2
 * Mesa 3-D graphics library
3
 *
4
 * Copyright (C) 1999-2001  Brian Paul   All Rights Reserved.
5
 *
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:
12
 *
13
 * The above copyright notice and this permission notice shall be included
14
 * in all copies or substantial portions of the Software.
15
 *
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.
23
 */
24
25
 
26
 
27
#define CONVOLVE_H
28
29
 
30
 
31
32
 
33
34
 
35
_mesa_ConvolutionFilter1D(GLenum target, GLenum internalFormat, GLsizei width,
36
                          GLenum format, GLenum type, const GLvoid *image);
37
void GLAPIENTRY
38
_mesa_ConvolutionFilter2D(GLenum target, GLenum internalFormat, GLsizei width,
39
                          GLsizei height, GLenum format, GLenum type,
40
                          const GLvoid *image);
41
void GLAPIENTRY
42
_mesa_ConvolutionParameterf(GLenum target, GLenum pname, GLfloat param);
43
void GLAPIENTRY
44
_mesa_ConvolutionParameterfv(GLenum target, GLenum pname,
45
                             const GLfloat *params);
46
void GLAPIENTRY
47
_mesa_ConvolutionParameteri(GLenum target, GLenum pname, GLint param);
48
void GLAPIENTRY
49
_mesa_ConvolutionParameteriv(GLenum target, GLenum pname, const GLint *params);
50
void GLAPIENTRY
51
_mesa_CopyConvolutionFilter1D(GLenum target, GLenum internalFormat, GLint x,
52
                              GLint y, GLsizei width);
53
void GLAPIENTRY
54
_mesa_CopyConvolutionFilter2D(GLenum target, GLenum internalFormat, GLint x,
55
                              GLint y, GLsizei width, GLsizei height);
56
void GLAPIENTRY
57
_mesa_GetnConvolutionFilterARB(GLenum target, GLenum format, GLenum type,
58
                               GLsizei bufSize, GLvoid *image);
59
void GLAPIENTRY
60
_mesa_GetConvolutionFilter(GLenum target, GLenum format, GLenum type,
61
                           GLvoid *image);
62
void GLAPIENTRY
63
_mesa_GetConvolutionParameterfv(GLenum target, GLenum pname, GLfloat *params);
64
void GLAPIENTRY
65
_mesa_GetConvolutionParameteriv(GLenum target, GLenum pname, GLint *params);
66
void GLAPIENTRY
67
_mesa_GetnSeparableFilterARB(GLenum target, GLenum format, GLenum type,
68
                             GLsizei rowBufSize, GLvoid *row,
69
                             GLsizei columnBufSize,  GLvoid *column,
70
                             GLvoid *span);
71
void GLAPIENTRY
72
_mesa_GetSeparableFilter(GLenum target, GLenum format, GLenum type,
73
                         GLvoid *row, GLvoid *column, GLvoid *span);
74
void GLAPIENTRY
75
_mesa_SeparableFilter2D(GLenum target, GLenum internalFormat, GLsizei width,
76
                        GLsizei height, GLenum format, GLenum type,
77
                        const GLvoid *row, const GLvoid *column);
78
79
 
80