Module: Mesa Branch: master Commit: 71493b320d2f7e5f5d9fa86134c40a58aba18a57 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=71493b320d2f7e5f5d9fa86134c40a58aba18a57
Author: Lionel Landwerlin <[email protected]> Date: Wed Aug 30 09:32:45 2017 +0100 i965: drop unused brw->has_compr4 Signed-off-by: Lionel Landwerlin <[email protected]> Reviewed-by: Samuel Iglesias Gonsálvez <[email protected]> Reviewed-by: Emil Velikov <[email protected]> --- src/mesa/drivers/dri/i965/brw_context.c | 1 - src/mesa/drivers/dri/i965/brw_context.h | 1 - 2 files changed, 2 deletions(-) diff --git a/src/mesa/drivers/dri/i965/brw_context.c b/src/mesa/drivers/dri/i965/brw_context.c index 2cd05b49ad..8648da79f4 100644 --- a/src/mesa/drivers/dri/i965/brw_context.c +++ b/src/mesa/drivers/dri/i965/brw_context.c @@ -861,7 +861,6 @@ brwCreateContext(gl_api api, brw->has_hiz = devinfo->has_hiz_and_separate_stencil; brw->has_separate_stencil = devinfo->has_hiz_and_separate_stencil; brw->has_pln = devinfo->has_pln; - brw->has_compr4 = devinfo->has_compr4; brw->has_surface_tile_offset = devinfo->has_surface_tile_offset; brw->has_negative_rhw_bug = devinfo->has_negative_rhw_bug; brw->needs_unlit_centroid_workaround = diff --git a/src/mesa/drivers/dri/i965/brw_context.h b/src/mesa/drivers/dri/i965/brw_context.h index 7e2673ece3..2b848ae968 100644 --- a/src/mesa/drivers/dri/i965/brw_context.h +++ b/src/mesa/drivers/dri/i965/brw_context.h @@ -751,7 +751,6 @@ struct brw_context bool must_use_separate_stencil; bool has_swizzling; bool has_surface_tile_offset; - bool has_compr4; bool has_negative_rhw_bug; bool has_pln; bool no_simd8; _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
