Merge remote branch 'origin/master' into nv50-compiler
[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 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
22 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
23 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 */
25
26
27 #ifndef CONVOLVE_H
28 #define CONVOLVE_H
29
30
31 #include "main/mtypes.h"
32
33
34 #if FEATURE_convolve
35
36 #define _MESA_INIT_CONVOLVE_FUNCTIONS(driver, impl) \
37 do { \
38 (driver)->CopyConvolutionFilter1D = impl ## CopyConvolutionFilter1D; \
39 (driver)->CopyConvolutionFilter2D = impl ## CopyConvolutionFilter2D; \
40 } while (0)
41
42 extern void GLAPIENTRY
43 _mesa_ConvolutionFilter1D(GLenum target, GLenum internalformat, GLsizei width,
44 GLenum format, GLenum type, const GLvoid *image);
45
46 extern void GLAPIENTRY
47 _mesa_ConvolutionFilter2D(GLenum target, GLenum internalformat, GLsizei width,
48 GLsizei height, GLenum format, GLenum type,
49 const GLvoid *image);
50
51 extern void
52 _mesa_convolve_1d_image(const GLcontext *ctx, GLsizei *width,
53 const GLfloat *srcImage, GLfloat *dstImage);
54
55 extern void
56 _mesa_convolve_2d_image(const GLcontext *ctx, GLsizei *width, GLsizei *height,
57 const GLfloat *srcImage, GLfloat *dstImage);
58
59 extern void
60 _mesa_convolve_sep_image(const GLcontext *ctx,
61 GLsizei *width, GLsizei *height,
62 const GLfloat *srcImage, GLfloat *dstImage);
63
64 extern void
65 _mesa_adjust_image_for_convolution(const GLcontext *ctx, GLuint dimensions,
66 GLsizei *width, GLsizei *height);
67
68 extern void
69 _mesa_init_convolve_dispatch(struct _glapi_table *disp);
70
71 #else /* FEATURE_convolve */
72
73 #include "main/compiler.h"
74
75 #define _MESA_INIT_CONVOLVE_FUNCTIONS(driver, impl) do { } while (0)
76
77 static INLINE void GLAPIENTRY
78 _mesa_ConvolutionFilter1D(GLenum target, GLenum internalformat, GLsizei width,
79 GLenum format, GLenum type, const GLvoid *image)
80 {
81 ASSERT_NO_FEATURE();
82 }
83
84 static INLINE void GLAPIENTRY
85 _mesa_ConvolutionFilter2D(GLenum target, GLenum internalformat, GLsizei width,
86 GLsizei height, GLenum format, GLenum type,
87 const GLvoid *image)
88 {
89 ASSERT_NO_FEATURE();
90 }
91
92 static INLINE void
93 _mesa_convolve_1d_image(const GLcontext *ctx, GLsizei *width,
94 const GLfloat *srcImage, GLfloat *dstImage)
95 {
96 ASSERT_NO_FEATURE();
97 }
98
99 static INLINE void
100 _mesa_convolve_2d_image(const GLcontext *ctx, GLsizei *width, GLsizei *height,
101 const GLfloat *srcImage, GLfloat *dstImage)
102 {
103 ASSERT_NO_FEATURE();
104 }
105
106
107 static INLINE void
108 _mesa_convolve_sep_image(const GLcontext *ctx,
109 GLsizei *width, GLsizei *height,
110 const GLfloat *srcImage, GLfloat *dstImage)
111 {
112 ASSERT_NO_FEATURE();
113 }
114
115 static INLINE void
116 _mesa_adjust_image_for_convolution(const GLcontext *ctx, GLuint dimensions,
117 GLsizei *width, GLsizei *height)
118 {
119 }
120
121 static INLINE void
122 _mesa_init_convolve_dispatch(struct _glapi_table *disp)
123 {
124 }
125
126 #endif /* FEATURE_convolve */
127
128 #endif /* CONVOLVE_H */