diff options
author | Chia-I Wu <[email protected]> | 2014-09-20 00:59:20 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2014-09-20 10:13:53 +0800 |
commit | 3cb383c1c9174a6ca4c9135e3962723c7ddb9f78 (patch) | |
tree | f831eb0b8d00d2d28ae3e7dfdbab4f79aae1aae5 /src/gallium/drivers/ilo/ilo_screen.h | |
parent | c4ed6c730f5fab03e19bf009d1ed85da3fd966db (diff) |
ilo: make ilo_fence opaque
It is manipulated only in ilo_screen.c.
Diffstat (limited to 'src/gallium/drivers/ilo/ilo_screen.h')
-rw-r--r-- | src/gallium/drivers/ilo/ilo_screen.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/gallium/drivers/ilo/ilo_screen.h b/src/gallium/drivers/ilo/ilo_screen.h index 7e1ce72052e..ea8579e916a 100644 --- a/src/gallium/drivers/ilo/ilo_screen.h +++ b/src/gallium/drivers/ilo/ilo_screen.h @@ -29,17 +29,13 @@ #define ILO_SCREEN_H #include "pipe/p_screen.h" -#include "pipe/p_state.h" #include "ilo_common.h" struct intel_winsys; struct intel_bo; -struct ilo_fence { - struct pipe_reference reference; - struct intel_bo *bo; -}; +struct ilo_fence; struct ilo_screen { struct pipe_screen base; |