X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=src%2Fmesa%2Fmain%2Fconvolve.h;h=952285643b5d5e82bb431a0194999f2c0fa69135;hb=bf8ad170c5af58fe9f49b3ce0f92c4eda9e5d845;hp=9d5e0eee4346e93052ad5392c09a7b2ed9eeb5c2;hpb=d4b799b60c693ecebbbdcdb3fd6931a78b7a0e30;p=mesa.git diff --git a/src/mesa/main/convolve.h b/src/mesa/main/convolve.h index 9d5e0eee434..952285643b5 100644 --- a/src/mesa/main/convolve.h +++ b/src/mesa/main/convolve.h @@ -1,10 +1,9 @@ -/* $Id: convolve.h,v 1.1 2000/08/21 14:24:31 brianp Exp $ */ /* * Mesa 3-D graphics library * Version: 3.5 * - * Copyright (C) 1999-2000 Brian Paul All Rights Reserved. + * Copyright (C) 1999-2001 Brian Paul All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -29,23 +28,24 @@ #define CONVOLVE_H -#include "types.h" +#include "compiler.h" +#include "mfeatures.h" +struct _glapi_table; -extern void -_mesa_convolve_1d_image(const GLcontext *ctx, GLsizei *width, - const GLfloat *srcImage, GLfloat *dstImage); +#if FEATURE_convolve extern void -_mesa_convolve_2d_image(const GLcontext *ctx, GLsizei *width, GLsizei *height, - const GLfloat *srcImage, GLfloat *dstImage); +_mesa_init_convolve_dispatch(struct _glapi_table *disp); +#else /* FEATURE_convolve */ -extern void -_mesa_convolve_sep_image(const GLcontext *ctx, - GLsizei *width, GLsizei *height, - const GLfloat *srcImage, GLfloat *dstImage); +static inline void +_mesa_init_convolve_dispatch(struct _glapi_table *disp) +{ +} +#endif /* FEATURE_convolve */ -#endif +#endif /* CONVOLVE_H */