diff options
author | Chia-I Wu <olv@lunarg.com> | 2012-12-13 05:15:10 +0800 |
---|---|---|
committer | Chia-I Wu <olvaffe@gmail.com> | 2013-04-26 16:16:42 +0800 |
commit | 0754ff33e3b500d756a2065b601e8dd68252c81e (patch) | |
tree | 1a0f63f0c8ca390a864422dc2f880afafeb7b8ab /src/gallium/drivers/ilo/ilo_context.h | |
parent | 89d1702b9b31488ae95a4364b4161b9186d5220b (diff) | |
download | external_mesa3d-0754ff33e3b500d756a2065b601e8dd68252c81e.zip external_mesa3d-0754ff33e3b500d756a2065b601e8dd68252c81e.tar.gz external_mesa3d-0754ff33e3b500d756a2065b601e8dd68252c81e.tar.bz2 |
ilo: hook up pipe context blit functions
Diffstat (limited to 'src/gallium/drivers/ilo/ilo_context.h')
-rw-r--r-- | src/gallium/drivers/ilo/ilo_context.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/ilo/ilo_context.h b/src/gallium/drivers/ilo/ilo_context.h index 107961d..58fee1f 100644 --- a/src/gallium/drivers/ilo/ilo_context.h +++ b/src/gallium/drivers/ilo/ilo_context.h @@ -54,6 +54,7 @@ #define ILO_WM_CONST_SURFACE(i) (ILO_MAX_DRAW_BUFFERS + i) #define ILO_WM_TEXTURE_SURFACE(i) (ILO_MAX_DRAW_BUFFERS + ILO_MAX_CONST_BUFFERS + i) +struct blitter_context; struct intel_winsys; struct intel_bo; struct ilo_cp; @@ -86,6 +87,7 @@ struct ilo_context { struct intel_bo *last_cp_bo; struct ilo_shader_cache *shader_cache; + struct blitter_context *blitter; uint32_t dirty; |