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

2016-01-12 Thread Jose Fonseca
On 13/01/16 03:45, Michel Dänzer wrote: On 13.01.2016 12:23, 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 state tracker will fal

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

2016-01-12 Thread Michel Dänzer
On 13.01.2016 12:23, 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 state tracker will > fallback to mipmap generation by rende

[Mesa-dev] [PATCH v4 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