mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-27 06:10:13 +01:00
pan/bi: Add clause type for gl_FragCoord.zw load
Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4883>
This commit is contained in:
parent
30f07e0d84
commit
5a415259fc
2 changed files with 2 additions and 0 deletions
|
|
@ -37,6 +37,7 @@ bi_clause_type_name(enum bifrost_clause_type T)
|
|||
case BIFROST_CLAUSE_SSBO_LOAD: return "load";
|
||||
case BIFROST_CLAUSE_SSBO_STORE: return "store";
|
||||
case BIFROST_CLAUSE_BLEND: return "blend";
|
||||
case BIFROST_CLAUSE_FRAGZ: return "fragz";
|
||||
case BIFROST_CLAUSE_ATEST: return "atest";
|
||||
case BIFROST_CLAUSE_64BIT: return "64";
|
||||
default: return "??";
|
||||
|
|
|
|||
|
|
@ -42,6 +42,7 @@ enum bifrost_clause_type {
|
|||
BIFROST_CLAUSE_SSBO_LOAD = 5,
|
||||
BIFROST_CLAUSE_SSBO_STORE = 6,
|
||||
BIFROST_CLAUSE_BLEND = 9,
|
||||
BIFROST_CLAUSE_FRAGZ = 12,
|
||||
BIFROST_CLAUSE_ATEST = 13,
|
||||
BIFROST_CLAUSE_64BIT = 15
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue