diff options
author | Jason Ekstrand <[email protected]> | 2016-08-09 19:27:58 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2016-08-19 03:11:29 -0700 |
commit | 16a9fcbbb688537ac2e8f952e683d63eb7c688e8 (patch) | |
tree | 5fe79901efd34bff896bbb333926d1474f8a8500 /src/mesa/drivers/dri/i965/blorp.c | |
parent | e198983c6119aa93b089d7883a9ec400ba52e7bb (diff) |
i965/blorp: Use genxml for gen8-9 state setup
Signed-off-by: Jason Ekstrand <[email protected]>
Reviewed-by: Topi Pohjolainen <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/blorp.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/blorp.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/blorp.c b/src/mesa/drivers/dri/i965/blorp.c index 87cf2c96d9e..310061566d9 100644 --- a/src/mesa/drivers/dri/i965/blorp.c +++ b/src/mesa/drivers/dri/i965/blorp.c @@ -321,9 +321,11 @@ retry: gen7_blorp_exec(brw, params); break; case 8: - case 9: gen8_blorp_exec(brw, params); break; + case 9: + gen9_blorp_exec(brw, params); + break; default: /* BLORP is not supported before Gen6. */ unreachable("not reached"); |