Re: [Mesa-dev] [PATCH v3 1/3] gallium/st: add pipe_context::generate_mipmap()

2016-01-12 Thread Roland Scheidegger
Am 13.01.2016 um 01:01 schrieb Charmaine Lee: > This patch adds a new interface to support hardware mipmap generation. > PIPE_CAP_GENERATE_MIPMAP is added to allow a driver to specify > if this new interface is supported; if not supported, the state tracker will > fallback to mipmap generation by r

Re: [Mesa-dev] [PATCH v3 1/3] gallium/st: add pipe_context::generate_mipmap()

2016-01-12 Thread Brian Paul
The series looks good to me. Reviewed-by: Brian Paul On 01/12/2016 05:01 PM, Charmaine Lee wrote: This patch adds a new interface to support hardware mipmap generation. PIPE_CAP_GENERATE_MIPMAP is added to allow a driver to specify if this new interface is supported; if not supported, the sta

[Mesa-dev] [PATCH v3 1/3] gallium/st: add pipe_context::generate_mipmap()

2016-01-12 Thread Charmaine Lee
This patch adds a new interface to support hardware mipmap generation. PIPE_CAP_GENERATE_MIPMAP is added to allow a driver to specify if this new interface is supported; if not supported, the state tracker will fallback to mipmap generation by rendering/texturing. v2: add PIPE_CAP_GENERATE_MIPMAP