Re: [Mesa-dev] [PATCH 04/22] gallium: add util_format_stencil helper function

2012-07-10 Thread Marek Olšák
On Tue, Jul 10, 2012 at 8:29 AM, Jose Fonseca wrote: > "util_format_stencil" seems a too generic. Some sort of qualifier would be > more future proof, e.g., util_format_stencil_only. Alright, consider it done. (without re-sending the patches) Marek > > - Original Message - >> used for

Re: [Mesa-dev] [PATCH 04/22] gallium: add util_format_stencil helper function

2012-07-10 Thread Jose Fonseca
"util_format_stencil" seems a too generic. Some sort of qualifier would be more future proof, e.g., util_format_stencil_only. - Original Message - > used for stencil sampler views. > --- > src/gallium/auxiliary/util/u_format.h | 29 > + > src/mesa/state

[Mesa-dev] [PATCH 04/22] gallium: add util_format_stencil helper function

2012-07-09 Thread Marek Olšák
used for stencil sampler views. --- src/gallium/auxiliary/util/u_format.h | 29 + src/mesa/state_tracker/st_cb_drawpixels.c | 23 ++- 2 files changed, 31 insertions(+), 21 deletions(-) diff --git a/src/gallium/auxiliary/util/u_format.h b/sr