diff options
author | Axel Davy <[email protected]> | 2016-10-28 19:03:59 +0200 |
---|---|---|
committer | Axel Davy <[email protected]> | 2016-12-20 23:44:22 +0100 |
commit | b95205b1f28ba23d88bc24bbb663b1e4938bbb48 (patch) | |
tree | 674411e9919c102d24737110f30cacf9d0273f89 /src/gallium/state_trackers/nine/nine_state.h | |
parent | 66ad5b1592bb050269216bc64aa7916056cca466 (diff) |
st/nine: Move pipe and cso to 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/nine_state.h')
-rw-r--r-- | src/gallium/state_trackers/nine/nine_state.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/state_trackers/nine/nine_state.h b/src/gallium/state_trackers/nine/nine_state.h index 921074df1bb..091902518bd 100644 --- a/src/gallium/state_trackers/nine/nine_state.h +++ b/src/gallium/state_trackers/nine/nine_state.h @@ -241,6 +241,9 @@ struct nine_context { void *ps; } cso_shader; + struct pipe_context *pipe; + struct cso_context *cso; + uint8_t rt_mask; D3DVIEWPORT9 viewport; |