From: Brian Paul Date: Tue, 10 Aug 2004 15:32:25 +0000 (+0000) Subject: query/print max convolution filter size X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f2afdcae9a706c1a3b426da47935f0c4f2128a54;p=mesa.git query/print max convolution filter size --- diff --git a/progs/xdemos/glxinfo.c b/progs/xdemos/glxinfo.c index 0e9a731dc86..46311bd645f 100644 --- a/progs/xdemos/glxinfo.c +++ b/progs/xdemos/glxinfo.c @@ -204,6 +204,13 @@ print_limits(void) printf(" %s = %d, %d\n", limits[i].name, max[0], max[1]); } } + /* these don't fit into the above mechanism, unfortunately */ + glGetConvolutionParameteriv(GL_CONVOLUTION_2D, GL_MAX_CONVOLUTION_WIDTH, max); + glGetConvolutionParameteriv(GL_CONVOLUTION_2D, GL_MAX_CONVOLUTION_HEIGHT, max+1); + if (glGetError() == GL_NONE) { + printf(" GL_MAX_CONVOLUTION_WIDTH/HEIGHT = %d, %d\n", max[0], max[1]); + } + }