diff options
author | Lionel Landwerlin <[email protected]> | 2017-08-30 09:09:13 +0100 |
---|---|---|
committer | Lionel Landwerlin <[email protected]> | 2017-08-30 17:59:17 +0100 |
commit | 990c24ad8571e2c5f64dd2013b6dc7b2ac2b12d3 (patch) | |
tree | 86e8a6e6b042d518a00438206c6688e58528496a /src/mesa/drivers/dri/i965/brw_blorp.c | |
parent | 46213f676e6717931403b5936389161bb953cf77 (diff) |
i965: drop brw->is_g4x in favor of devinfo->is_g4x
Signed-off-by: Lionel Landwerlin <[email protected]>
Reviewed-by: Samuel Iglesias Gonsálvez <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_blorp.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_blorp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_blorp.c b/src/mesa/drivers/dri/i965/brw_blorp.c index 6ac5b6070b3..277ffda4fd5 100644 --- a/src/mesa/drivers/dri/i965/brw_blorp.c +++ b/src/mesa/drivers/dri/i965/brw_blorp.c @@ -74,7 +74,7 @@ brw_blorp_init(struct brw_context *brw) switch (devinfo->gen) { case 4: - if (brw->is_g4x) { + if (devinfo->is_g4x) { brw->blorp.exec = gen45_blorp_exec; } else { brw->blorp.exec = gen4_blorp_exec; |