panfrost: Add MALI_PER_SAMPLE bit
For gl_SampleID reads. Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5929>
This commit is contained in:
committed by
Marge Bot
parent
adacf1f511
commit
5c65a27adc
@@ -92,6 +92,10 @@ enum mali_func {
|
||||
/* Flags apply to unknown2_3? */
|
||||
|
||||
#define MALI_HAS_MSAA (1 << 0)
|
||||
|
||||
/* Execute fragment shader per-sample if set (e.g. to implement gl_SampleID
|
||||
* reads) */
|
||||
#define MALI_PER_SAMPLE (1 << 2)
|
||||
#define MALI_CAN_DISCARD (1 << 5)
|
||||
|
||||
/* Applies on SFBD systems, specifying that programmable blending is in use */
|
||||
|
||||
@@ -223,6 +223,7 @@ static const struct pandecode_flag_info mask_flag_info[] = {
|
||||
#define FLAG_INFO(flag) { MALI_##flag, "MALI_" #flag }
|
||||
static const struct pandecode_flag_info u3_flag_info[] = {
|
||||
FLAG_INFO(HAS_MSAA),
|
||||
FLAG_INFO(PER_SAMPLE),
|
||||
FLAG_INFO(CAN_DISCARD),
|
||||
FLAG_INFO(HAS_BLEND_SHADER),
|
||||
FLAG_INFO(DEPTH_WRITEMASK),
|
||||
|
||||
Reference in New Issue
Block a user