panfrost: Update MALI_EARLY_Z description

Via the ES3.1 early-z testing force, I've confirmed this bit is e-z.
I've also confirmed e-z must be disabled for global writes, as expected.

Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5300>
This commit is contained in:
Alyssa Rosenzweig 2020-06-02 14:03:58 -04:00 committed by Marge Bot
parent 7e26a02e5f
commit ee59d1ad77
1 changed files with 5 additions and 5 deletions

View File

@ -390,11 +390,11 @@ enum mali_format {
/* Should be set when the fragment shader updates the depth value. */
#define MALI_WRITES_Z (1 << 4)
/* Should the hardware perform early-Z testing? Normally should be set
* for performance reasons. Clear if you use: discard,
* alpha-to-coverage... * It's also possible this disables
* forward-pixel kill; we're not quite sure which bit is which yet.
* TODO: How does this interact with blending?*/
/* Should the hardware perform early-Z testing? Set if the shader does not use
* discard, alpha-to-coverage, shader depth writes, and if the shader has no
* side effects (writes to global memory or images) unless early-z testing is
* forced in the shader.
*/
#define MALI_EARLY_Z (1 << 6)