mesa: Provide an alternative to get_vp_mode()
authorMathias Fröhlich <mathias.froehlich@web.de>
Fri, 2 Feb 2018 20:31:27 +0000 (21:31 +0100)
committerMathias Fröhlich <mathias.froehlich@web.de>
Fri, 23 Feb 2018 04:33:30 +0000 (05:33 +0100)
commit92d76a169127a6b8b4e2027a95425b592d0ca3db
tree59bda0fe66dd075475717cf249fa9c797fff2b9e
parentd73f1f2ad879d0c6712931b75f2bfb995c2c9fcb
mesa: Provide an alternative to get_vp_mode()

To get equivalent information than get_vp_mode(), track the vertex
processing mode in a per context variable at
gl_vertex_program_state::_VPMode.
This aims to replace get_vp_mode() as seen in the vbo module.
But instead of the get_vp_mode() implementation which only gives correct
answers past calling _mesa_update_state() this context variable is
immediately tracked when the vertex processing state is modified. The
correctness of this value is asserted on state validation.

With this in place we should be able to untangle the dependency with
varying_vp_inputs and state invalidation.

Signed-off-by: Mathias Fröhlich <Mathias.Froehlich@web.de>
Reviewed-by: Brian Paul <brianp@vmware.com>
src/mesa/drivers/common/meta.c
src/mesa/main/arbprogram.c
src/mesa/main/context.c
src/mesa/main/enable.c
src/mesa/main/mtypes.h
src/mesa/main/pipelineobj.c
src/mesa/main/shaderapi.c
src/mesa/main/state.c
src/mesa/main/state.h
src/mesa/program/program.c