diff options
author | Marek Olšák <[email protected]> | 2017-11-18 17:46:51 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2017-11-25 17:16:56 +0100 |
commit | 65433c3fd06ad2d080fb40bce139bc814cd76215 (patch) | |
tree | 7a2de527022b6e17e8eb03dfa58af648e7e3fcf7 /src/gallium/state_trackers/nine | |
parent | e20364df828d3758c570658dff780d01cab0e5ed (diff) |
gallium/hud: use cso_get_pipe_context
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/gallium/state_trackers/nine')
-rw-r--r-- | src/gallium/state_trackers/nine/device9.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/state_trackers/nine/device9.c b/src/gallium/state_trackers/nine/device9.c index 88df38c43f6..f1c50d6d208 100644 --- a/src/gallium/state_trackers/nine/device9.c +++ b/src/gallium/state_trackers/nine/device9.c @@ -205,7 +205,7 @@ NineDevice9_ctor( struct NineDevice9 *This, if (!This->cso_sw) { return E_OUTOFMEMORY; } /* Create first, it messes up our state. */ - This->hud = hud_create(This->context.pipe, This->context.cso); /* NULL result is fine */ + This->hud = hud_create(This->context.cso); /* NULL result is fine */ /* Available memory counter. Updated only for allocations with this device * instance. This is the Win 7 behavior. |