diff options
author | Anuj Phogat <[email protected]> | 2015-04-13 10:20:29 -0700 |
---|---|---|
committer | Anuj Phogat <[email protected]> | 2015-04-17 11:48:38 -0700 |
commit | c6b0922c31983c76f1b2b9df66ae50b25b966bee (patch) | |
tree | aef581c70b540f85e68339382a5ff69f069cc12c /src/mesa | |
parent | 4dacb212fdcc82def02b8c9233f94caa5a8a3000 (diff) |
i965: Update the comment about platforms supporting blorp
Signed-off-by: Anuj Phogat <[email protected]>
Reviewed-by: Chad Versace <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_blorp_blit.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_blorp_blit.cpp b/src/mesa/drivers/dri/i965/brw_blorp_blit.cpp index d25e2017b87..1561b593969 100644 --- a/src/mesa/drivers/dri/i965/brw_blorp_blit.cpp +++ b/src/mesa/drivers/dri/i965/brw_blorp_blit.cpp @@ -223,8 +223,8 @@ brw_blorp_copytexsubimage(struct brw_context *brw, struct intel_mipmap_tree *src_mt = src_irb->mt; struct intel_mipmap_tree *dst_mt = intel_image->mt; - /* BLORP is not supported before Gen6. */ - if (brw->gen < 6 || brw->gen >= 8) + /* BLORP is only supported for Gen6-7. */ + if (brw->gen < 6 || brw->gen > 7) return false; if (_mesa_get_format_base_format(src_rb->Format) != |