diff options
author | Matt Turner <[email protected]> | 2014-04-04 12:16:23 -0700 |
---|---|---|
committer | Matt Turner <[email protected]> | 2014-04-04 15:07:41 -0700 |
commit | 489cb0b2d1b057e0e2e64ee30435cb93b9167fdb (patch) | |
tree | 3b9bb10c2e3d4e947494ca1f17d749ef690046f8 /src/mesa | |
parent | 78f754b739e80a1a45b87cd22466e447da53b19e (diff) |
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]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_device_info.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_device_info.c b/src/mesa/drivers/dri/i965/brw_device_info.c index 1fc8ef40266..7625c742faa 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, |