mesa: Restore 78-column wrapping of license text in C-style comments.
[mesa.git] / src / mesa / main / convolve.h
1
2 /*
3 * Mesa 3-D graphics library
4 * Version: 3.5
5 *
6 * Copyright (C) 1999-2001 Brian Paul All Rights Reserved.
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the "Software"),
10 * to deal in the Software without restriction, including without limitation
11 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12 * and/or sell copies of the Software, and to permit persons to whom the
13 * Software is furnished to do so, subject to the following conditions:
14 *
15 * The above copyright notice and this permission notice shall be included
16 * in all copies or substantial portions of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
22 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
23 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
24 * OTHER DEALINGS IN THE SOFTWARE.
25 */
26
27
28 #ifndef CONVOLVE_H
29 #define CONVOLVE_H
30
31
32 #include "compiler.h"
33
34 struct _glapi_table;
35
36 void GLAPIENTRY
37 _mesa_ConvolutionFilter1D(GLenum target, GLenum internalFormat, GLsizei width,
38 GLenum format, GLenum type, const GLvoid *image);
39 void GLAPIENTRY
40 _mesa_ConvolutionFilter2D(GLenum target, GLenum internalFormat, GLsizei width,
41 GLsizei height, GLenum format, GLenum type,
42 const GLvoid *image);
43 void GLAPIENTRY
44 _mesa_ConvolutionParameterf(GLenum target, GLenum pname, GLfloat param);
45 void GLAPIENTRY
46 _mesa_ConvolutionParameterfv(GLenum target, GLenum pname,
47 const GLfloat *params);
48 void GLAPIENTRY
49 _mesa_ConvolutionParameteri(GLenum target, GLenum pname, GLint param);
50 void GLAPIENTRY
51 _mesa_ConvolutionParameteriv(GLenum target, GLenum pname, const GLint *params);
52 void GLAPIENTRY
53 _mesa_CopyConvolutionFilter1D(GLenum target, GLenum internalFormat, GLint x,
54 GLint y, GLsizei width);
55 void GLAPIENTRY
56 _mesa_CopyConvolutionFilter2D(GLenum target, GLenum internalFormat, GLint x,
57 GLint y, GLsizei width, GLsizei height);
58 void GLAPIENTRY
59 _mesa_GetnConvolutionFilterARB(GLenum target, GLenum format, GLenum type,
60 GLsizei bufSize, GLvoid *image);
61 void GLAPIENTRY
62 _mesa_GetConvolutionFilter(GLenum target, GLenum format, GLenum type,
63 GLvoid *image);
64 void GLAPIENTRY
65 _mesa_GetConvolutionParameterfv(GLenum target, GLenum pname, GLfloat *params);
66 void GLAPIENTRY
67 _mesa_GetConvolutionParameteriv(GLenum target, GLenum pname, GLint *params);
68 void GLAPIENTRY
69 _mesa_GetnSeparableFilterARB(GLenum target, GLenum format, GLenum type,
70 GLsizei rowBufSize, GLvoid *row,
71 GLsizei columnBufSize, GLvoid *column,
72 GLvoid *span);
73 void GLAPIENTRY
74 _mesa_GetSeparableFilter(GLenum target, GLenum format, GLenum type,
75 GLvoid *row, GLvoid *column, GLvoid *span);
76 void GLAPIENTRY
77 _mesa_SeparableFilter2D(GLenum target, GLenum internalFormat, GLsizei width,
78 GLsizei height, GLenum format, GLenum type,
79 const GLvoid *row, const GLvoid *column);
80
81 #endif /* CONVOLVE_H */