diff options
author | Jason Ekstrand <[email protected]> | 2015-04-27 17:41:27 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2015-05-08 17:16:13 -0700 |
commit | 7a30668ad665f3315106e1a959c6186dea79a24a (patch) | |
tree | 0741c8d2ce9ff59e04c756c331419c79f5242dc4 /src/gallium/state_trackers/nine/nine_state.h | |
parent | 258b4194c8314ffc57ff676ad2528b741b47031e (diff) |
util: Move gallium's linked list to util
The linked list in gallium is pretty much the kernel list and we would like
to have a C-based linked list for all of mesa. Let's not duplicate and
just steal the gallium one.
Acked-by: Connor Abbott <[email protected]>
Reviewed-by: Rob Clark <[email protected]>
Diffstat (limited to 'src/gallium/state_trackers/nine/nine_state.h')
-rw-r--r-- | src/gallium/state_trackers/nine/nine_state.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/state_trackers/nine/nine_state.h b/src/gallium/state_trackers/nine/nine_state.h index 19169595338..2bf3f637f93 100644 --- a/src/gallium/state_trackers/nine/nine_state.h +++ b/src/gallium/state_trackers/nine/nine_state.h @@ -26,7 +26,7 @@ #include "d3d9.h" #include "nine_defines.h" #include "pipe/p_state.h" -#include "util/u_double_list.h" +#include "util/list.h" #define NINED3DSAMP_MINLOD (D3DSAMP_DMAPOFFSET + 1) #define NINED3DSAMP_SHADOW (D3DSAMP_DMAPOFFSET + 2) |