mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-26 17:10:11 +01:00
i965: Enable the accelerated ReadPixels path on gen4 along with pre-gen4.
Passes piglit pbo-read-argb8888, and doesn't otherwise regress quick.tests.
This commit is contained in:
parent
6f1db18f14
commit
dd9eb8774a
1 changed files with 1 additions and 1 deletions
|
|
@ -285,11 +285,11 @@ intelReadPixels(GLcontext * ctx,
|
|||
|
||||
intelFlush(ctx);
|
||||
|
||||
#ifdef I915
|
||||
if (do_blit_readpixels
|
||||
(ctx, x, y, width, height, format, type, pack, pixels))
|
||||
return;
|
||||
|
||||
#ifdef I915
|
||||
if (do_texture_readpixels
|
||||
(ctx, x, y, width, height, format, type, pack, pixels))
|
||||
return;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue