diff options
author | Vinson Lee <[email protected]> | 2010-08-25 23:04:39 -0700 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2010-08-25 23:04:39 -0700 |
commit | d2dd23e85890d697ea6d848f0a3a03fe283edb0a (patch) | |
tree | 787c37351e04ab75ec32b6b6fa4319c94eb3041d | |
parent | c7111f321ca16f2c72cc59975b728a566daae95a (diff) |
util: Include missing header in u_dirty_surfaces.h.
Include p_state.h for pipe_surface symbol.
-rw-r--r-- | src/gallium/auxiliary/util/u_dirty_surfaces.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/util/u_dirty_surfaces.h b/src/gallium/auxiliary/util/u_dirty_surfaces.h index c157300502d..fd1bbe5ffdf 100644 --- a/src/gallium/auxiliary/util/u_dirty_surfaces.h +++ b/src/gallium/auxiliary/util/u_dirty_surfaces.h @@ -27,9 +27,13 @@ #ifndef U_DIRTY_SURFACES_H_ #define U_DIRTY_SURFACES_H_ +#include "pipe/p_state.h" + #include "util/u_double_list.h" #include "util/u_math.h" +struct pipe_context; + typedef void (*util_dirty_surface_flush_t) (struct pipe_context *, struct pipe_surface *); struct util_dirty_surfaces |