mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-01 14:38:06 +02:00
radv/ac: add geom shader sendmsg defines.
This just adds some defines needed for geom shaders. Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl> Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
parent
583cf8efd4
commit
374e978438
1 changed files with 8 additions and 0 deletions
|
|
@ -43,6 +43,14 @@ enum radeon_llvm_calling_convention {
|
|||
#define RADEON_LLVM_MAX_INPUTS (VARYING_SLOT_VAR31 + 1)
|
||||
#define RADEON_LLVM_MAX_OUTPUTS (VARYING_SLOT_VAR31 + 1)
|
||||
|
||||
#define SENDMSG_GS 2
|
||||
#define SENDMSG_GS_DONE 3
|
||||
|
||||
#define SENDMSG_GS_OP_NOP (0 << 4)
|
||||
#define SENDMSG_GS_OP_CUT (1 << 4)
|
||||
#define SENDMSG_GS_OP_EMIT (2 << 4)
|
||||
#define SENDMSG_GS_OP_EMIT_CUT (3 << 4)
|
||||
|
||||
enum desc_type {
|
||||
DESC_IMAGE,
|
||||
DESC_FMASK,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue