Bug 77412 - PBO glDrawPixels fails with MSAA
Summary: PBO glDrawPixels fails with MSAA
Status: RESOLVED MOVED
Alias: None
Product: Mesa
Classification: Unclassified
Component: Drivers/DRI/i965 (show other bugs)
Version: git
Hardware: Other All
: medium normal
Assignee: Intel 3D Bugs Mailing List
QA Contact: Intel 3D Bugs Mailing List
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-04-13 21:30 UTC by Alexander Monakov
Modified: 2019-09-25 18:51 UTC (History)
4 users (show)

See Also:
i915 platform:
i915 features:


Attachments
reproducer (1.33 KB, text/plain)
2014-04-13 21:30 UTC, Alexander Monakov
Details

Description Alexander Monakov 2014-04-13 21:30:44 UTC
Created attachment 97323 [details]
reproducer

i965 blit fastpath for PBO glDrawPixels does not work with MSAA, even though INTEL_DEBUG=pix indicates success.  The attached testcase demonstrates the problem.
Comment 1 Alexander Monakov 2014-04-18 21:13:21 UTC
On master this is "fixed" by:

commit 73c78c514f8db0605c0deb85382003d0f66b5525
Author: Kenneth Graunke <kenneth@whitecape.org>
Date:   Fri Feb 21 19:15:51 2014 -0800

    i965: Don't try to use the hardware blitter for multisampled miptrees.


Interestingly, 10.1 has this commit that "fixes" MSAA CopyPixels:

commit f416a15096c0984dce689681a004554ecb2ea728
Author: Paul Berry <stereotype441@gmail.com>
Date:   Tue Dec 3 15:41:14 2013 -0800

    i965: Don't try to use HW blitter for glCopyPixels() when multisampled.

So,

1. Code duplication between intel_pixel* is quite unfortunate; I'm guilty for increasing duplication a bit but it wasn't well-factored before me as well;

2. The first commit mentions that blorp would handle msaa; I see that blorp is used for FBO blits, but apparently not in intel_pixel_*; any reason for that?

3. Even without blorp, I find it quite strange that meta fallback would be that slow and go through float pack-unpack (even in non-msaa case).

Comments appreciated :)
Comment 2 Kenneth Graunke 2014-08-02 03:24:43 UTC
The hardware blitter doesn't understand MSAA, so we really shouldn't use it.  Our other options are Meta or BLORP.  We're generally trying to move away from BLORP, so my preferred solution would be to improve the Meta path.

(As an aside, it looks like _mesa_meta_DrawPixels doesn't think about MSAA either, and maybe it needs to...)

It looks like _mesa_meta_DrawPixels is interpreting ClampFragmentColor == GL_FIXED_ONLY stupidly, and thinking it needs to go through a float buffer when it doesn't.  Fixing that would speed this up by around 20%.
Comment 3 Alexander Monakov 2014-08-03 13:34:10 UTC
On what hardware did you get just 20%?  I'm getting about 3x overall speedup on IvyBridge (roughly 10s -> 3s run time), plus 10% faster if I change GL_BGRA to GL_RGBA in the testcase source, otherwise it performs channel swizzle for temporary texture.

As I understand to make Meta viable for this you'd need to be able to interpret PBO (linear) as a texture (normally tiled) without intermediate copying.  From what I know, such capability existed in Mesa some time ago but not anymore.
Comment 4 Kenneth Graunke 2014-08-04 05:45:44 UTC
Oh, great!  I might have had my laptop on battery or something - it doesn't clock up properly unless it's on AC.  3x sounds believable.

Although we normally allocate textures as tiled (since it's faster), there's no hardware requirement that we do so - untiled textures work just fine.  I don't see why we couldn't use a PBO as a texture source.  It'd probably just require creating a gl_texture_object wrapper object.

We have a BindRenderbufferAsTexture driver hook that for turning a gl_renderbuffer into a gl_texture_object...we might need a BindPBOAsTexture hook or something.
Comment 5 Jason Ekstrand 2015-06-04 21:08:51 UTC
(In reply to Alexander Monakov from comment #3)
> On what hardware did you get just 20%?  I'm getting about 3x overall speedup
> on IvyBridge (roughly 10s -> 3s run time), plus 10% faster if I change
> GL_BGRA to GL_RGBA in the testcase source, otherwise it performs channel
> swizzle for temporary texture.
> 
> As I understand to make Meta viable for this you'd need to be able to
> interpret PBO (linear) as a texture (normally tiled) without intermediate
> copying.  From what I know, such capability existed in Mesa some time ago
> but not anymore.

We can totally do this on Intel.  In fact, we do for doing PBO uploads today.  We just don't do it for DrawPixels.  It should be easy enough to use the exact same path for DrawPixels, I just didn't think it was an issue.
Comment 6 Alexander Monakov 2015-06-04 21:13:10 UTC
(In reply to Jason Ekstrand from comment #5)
> We can totally do this on Intel.  In fact, we do for doing PBO uploads
> today.  We just don't do it for DrawPixels.  It should be easy enough to use
> the exact same path for DrawPixels, I just didn't think it was an issue.

Nice.  Can you point me to relevant code or commits, please?
Comment 7 Kenneth Graunke 2015-06-05 19:02:51 UTC
src/mesa/drivers/common/meta_tex_subimage.c
Comment 8 GitLab Migration User 2019-09-25 18:51:15 UTC
-- GitLab Migration Automatic Message --

This bug has been migrated to freedesktop.org's GitLab instance and has been closed from further activity.

You can subscribe and participate further through the new bug through this link to our GitLab instance: https://gitlab.freedesktop.org/mesa/mesa/issues/1438.


Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.