diff options
author | Axel Davy <[email protected]> | 2016-11-01 18:30:33 +0100 |
---|---|---|
committer | Axel Davy <[email protected]> | 2016-12-20 23:44:22 +0100 |
commit | bb666b0297cb81fc1b8192ba91efd2e0a69835c5 (patch) | |
tree | 2d842cd3caf6ccc5058931eca0d28d2f05023df9 /src/gallium/state_trackers/nine/device9.c | |
parent | f5f881fd3eac79fc2dad865bc1387bfcee40e352 (diff) |
st/nine: Back swvp in nine_context
Part of the refactor to move all gallium calls to
nine_state.c, and have all internal states required
for those calls in nine_context.
Signed-off-by: Axel Davy <[email protected]>
Diffstat (limited to 'src/gallium/state_trackers/nine/device9.c')
-rw-r--r-- | src/gallium/state_trackers/nine/device9.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/state_trackers/nine/device9.c b/src/gallium/state_trackers/nine/device9.c index 73b5888e4ec..8493e706fe8 100644 --- a/src/gallium/state_trackers/nine/device9.c +++ b/src/gallium/state_trackers/nine/device9.c @@ -173,6 +173,7 @@ NineDevice9_ctor( struct NineDevice9 *This, DBG("Application asked mixed Software Vertex Processing.\n"); This->may_swvp = true; } + This->context.swvp = This->swvp; /* TODO: check if swvp is resetted by device Resets */ if (This->may_swvp && @@ -2681,7 +2682,7 @@ NineDevice9_SetSoftwareVertexProcessing( struct NineDevice9 *This, { if (This->params.BehaviorFlags & D3DCREATE_MIXED_VERTEXPROCESSING) { This->swvp = bSoftware; - This->context.changed.group |= NINE_STATE_SWVP; + nine_context_set_swvp(This, bSoftware); return D3D_OK; } else return D3DERR_INVALIDCALL; /* msdn. TODO: check in practice */ |