Re: [Mesa-dev] [PATCH 1/2] gallium: Add a util_blitter path for using a custom VS and FS.

2018-03-06 Thread Marek Olšák
Reviewed-by: Marek Olšák Marek On Fri, Mar 2, 2018 at 4:51 PM, Eric Anholt wrote: > Like the r600 paths to use other custom states, we pass in a couple of > parameters to customize the innards of the blitter. It's up to the caller > to wrap other state

[Mesa-dev] [PATCH 1/2] gallium: Add a util_blitter path for using a custom VS and FS.

2018-03-02 Thread Eric Anholt
Like the r600 paths to use other custom states, we pass in a couple of parameters to customize the innards of the blitter. It's up to the caller to wrap other state necessary for its shaders (for example, constant buffers for the uniforms the shader uses). ---