diff options
author | Chia-I Wu <[email protected]> | 2013-06-17 12:24:17 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2013-06-17 14:37:10 +0800 |
commit | b4b3a5c6dc159dd46fecca7ce64fe90f0c6c7496 (patch) | |
tree | 7db4c9663c8954ef095b4dc2f24eca2ed337a00d /src/gallium/drivers/ilo/ilo_context.h | |
parent | 6d7abafdc86c6d8533bcb798465452c78c2694e8 (diff) |
ilo: replace util_blitter by ilo_blitter
ilo_blitter is just a wrapper for util_blitter for now. We will port BLT code
to ilo_blitter shortly.
Diffstat (limited to 'src/gallium/drivers/ilo/ilo_context.h')
-rw-r--r-- | src/gallium/drivers/ilo/ilo_context.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/ilo/ilo_context.h b/src/gallium/drivers/ilo/ilo_context.h index 02c4c0a8ec1..a37ed001b4c 100644 --- a/src/gallium/drivers/ilo/ilo_context.h +++ b/src/gallium/drivers/ilo/ilo_context.h @@ -34,10 +34,10 @@ #include "ilo_gpe.h" #include "ilo_common.h" -struct blitter_context; struct intel_winsys; struct intel_bo; struct ilo_3d; +struct ilo_blitter; struct ilo_cp; struct ilo_screen; struct ilo_shader_state; @@ -55,7 +55,7 @@ struct ilo_context { struct ilo_shader_cache *shader_cache; struct ilo_3d *hw3d; - struct blitter_context *blitter; + struct ilo_blitter *blitter; uint32_t dirty; |