diff options
author | Chad Versace <[email protected]> | 2011-09-20 13:43:17 -0700 |
---|---|---|
committer | Chad Versace <[email protected]> | 2011-10-18 11:42:54 -0700 |
commit | 7b0f748efa5af84668cc3609a0070163bfa22607 (patch) | |
tree | e6ec66bf1d1992271e1c060b77f7187340042791 /src/mesa/drivers/dri/i965/Makefile.sources | |
parent | b393fa91676aba0883d8f5260bd2910777aceb11 (diff) |
intel: Add HiZ operations to intel_context::vtbl for all drivers
Add the following to the vtbl:
hiz_resolve_depthbuffer
hiz_resolve_hizbuffer
For all drivers for which HiZ is not enabled, the methods are set to be
no-ops. If HiZ is enabled, the methods are currently to set to empty
stubs.
Reviewed-by: Eric Anholt <[email protected]>
Signed-off-by: Chad Versace <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/Makefile.sources')
-rw-r--r-- | src/mesa/drivers/dri/i965/Makefile.sources | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/Makefile.sources b/src/mesa/drivers/dri/i965/Makefile.sources index da7a952e61f..1b9ca6f2321 100644 --- a/src/mesa/drivers/dri/i965/Makefile.sources +++ b/src/mesa/drivers/dri/i965/Makefile.sources @@ -88,6 +88,7 @@ i965_C_SOURCES := \ gen6_clip_state.c \ gen6_depthstencil.c \ gen6_gs_state.c \ + gen6_hiz.c \ gen6_sampler_state.c \ gen6_scissor_state.c \ gen6_sf_state.c \ |