mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 04:38:03 +02:00
intel: Remove pointless software fallback for glBitmap on Gen6.
We already have a meta path below that works just fine; no apparent
regressions in oglconform.
NOTE: This is a candidate for the 8.0 branch.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=46834
Reviewed-by: Chad Versace <chad.versace@linux.intel.com>
(cherry picked from commit 3cd7bee48f)
This commit is contained in:
parent
4d9ff6af59
commit
6b9363a316
1 changed files with 0 additions and 4 deletions
|
|
@ -337,9 +337,5 @@ intelBitmap(struct gl_context * ctx,
|
|||
unpack, pixels))
|
||||
return;
|
||||
|
||||
/* FIXME */
|
||||
if (intel->gen == 6)
|
||||
return _swrast_Bitmap(ctx, x, y, width, height, unpack, pixels);
|
||||
|
||||
_mesa_meta_Bitmap(ctx, x, y, width, height, unpack, pixels);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue