diff options
author | Alex Deucher <[email protected]> | 2010-11-22 17:39:16 -0500 |
---|---|---|
committer | Alex Deucher <[email protected]> | 2010-11-22 17:39:16 -0500 |
commit | bf9c80976fdd6bcbd29c959f6313115b2b07f5df (patch) | |
tree | ae8ed136378d0ed00983f5b27bdc83cd3cc5d1ac /src/gallium/drivers | |
parent | e7c74a7dfab789496761226fe62a08f2d9fea5c7 (diff) |
r600g: fix additional EVENT_WRITE packet
Add explicit EVENT_TYPE field
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r-- | src/gallium/drivers/r600/evergreend.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/gallium/drivers/r600/evergreend.h b/src/gallium/drivers/r600/evergreend.h index a337916c098..e67254b2560 100644 --- a/src/gallium/drivers/r600/evergreend.h +++ b/src/gallium/drivers/r600/evergreend.h @@ -45,6 +45,15 @@ #define EVENT_TYPE_ZPASS_DONE 0x15 #define EVENT_TYPE_CACHE_FLUSH_AND_INV_EVENT 0x16 +#define EVENT_TYPE(x) ((x) << 0) +#define EVENT_INDEX(x) ((x) << 8) + /* 0 - any non-TS event + * 1 - ZPASS_DONE + * 2 - SAMPLE_PIPELINESTAT + * 3 - SAMPLE_STREAMOUTSTAT* + * 4 - *S_PARTIAL_FLUSH + * 5 - TS events + */ #define R600_TEXEL_PITCH_ALIGNMENT_MASK 0x7 |