Re: [Mesa-dev] [PATCH 4/4] meta: Use internal functions to set texture parameters

2016-01-20 Thread Jason Ekstrand
On Jan 20, 2016 6:18 PM, "Ian Romanick" wrote: > > From: Ian Romanick > > _mesa_texture_parameteriv is used because (the more obvious) > _mesa_texture_parameteri just stuffs the parameter in an array and calls > _mesa_texture_parameteriv. This just cuts out the middleman. > > As a side bonus we

[Mesa-dev] [PATCH 4/4] meta: Use internal functions to set texture parameters

2016-01-20 Thread Ian Romanick
From: Ian Romanick _mesa_texture_parameteriv is used because (the more obvious) _mesa_texture_parameteri just stuffs the parameter in an array and calls _mesa_texture_parameteriv. This just cuts out the middleman. As a side bonus we no longer need check that ARB_stencil_texturing is supported.