Module: Mesa Branch: master Commit: 489cb0b2d1b057e0e2e64ee30435cb93b9167fdb URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=489cb0b2d1b057e0e2e64ee30435cb93b9167fdb
Author: Matt Turner <[email protected]> Date: Fri Apr 4 12:16:23 2014 -0700 i965: Mark SNB GT1 as a GT1. brw->gt only seems to be used on gen >= 7, so this shouldn't have any effect. Reviewed-by: Ian Romanick <[email protected]> --- src/mesa/drivers/dri/i965/brw_device_info.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/drivers/dri/i965/brw_device_info.c b/src/mesa/drivers/dri/i965/brw_device_info.c index 1fc8ef4..7625c74 100644 --- a/src/mesa/drivers/dri/i965/brw_device_info.c +++ b/src/mesa/drivers/dri/i965/brw_device_info.c @@ -68,7 +68,7 @@ static const struct brw_device_info brw_device_info_ilk = { static const struct brw_device_info brw_device_info_snb_gt1 = { .gen = 6, - .gt = 2, + .gt = 1, .has_hiz_and_separate_stencil = true, .has_llc = true, .has_pln = true, _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
