Re: [Mesa-dev] [PATCH] vbo: process buffer binding state changes on draw when recording

2017-02-02 Thread Brian Paul
Looks OK to me too. Reviewed-by: Brian Paul On 02/02/2017 01:42 AM, Marek Olšák wrote: Reviewed-by: Marek Olšák mailto:marek.ol...@amd.com>> On Feb 1, 2017 10:11 PM, "Ilia Mirkin" mailto:imir...@alum.mit.edu>> wrote: The VBO module keeps track of any vbo buffers. It updates this list wh

Re: [Mesa-dev] [PATCH] vbo: process buffer binding state changes on draw when recording

2017-02-02 Thread Marek Olšák
Reviewed-by: Marek Olšák On Feb 1, 2017 10:11 PM, "Ilia Mirkin" wrote: > The VBO module keeps track of any vbo buffers. It updates this list when > receiving an InvalidateState call, however this never happens when > recording draws right now. Make sure that we do all the usual state > updates

[Mesa-dev] [PATCH] vbo: process buffer binding state changes on draw when recording

2017-02-01 Thread Ilia Mirkin
The VBO module keeps track of any vbo buffers. It updates this list when receiving an InvalidateState call, however this never happens when recording draws right now. Make sure that we do all the usual state updates when recording draws so that the VBO list may be kept up to date. Signed-off-by: I