diff options
author | Samuel Pitoiset <[email protected]> | 2018-10-05 18:04:56 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2018-10-29 17:10:58 +0100 |
commit | b4eb029062a944c428d6214447a852318e36016e (patch) | |
tree | 0096be7e19668ba5f5463beb51fb69a93f75ba98 /src/amd/common | |
parent | f8d0337299f7d8ca8c74f7d5e9b5425efb8c40af (diff) |
radv: implement VK_EXT_transform_feedback
This implementation should work and potential bugs can be
fixed during the release candidates window anyway.
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/amd/common')
-rw-r--r-- | src/amd/common/sid.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/amd/common/sid.h b/src/amd/common/sid.h index 69b532177ac..d88ecf55806 100644 --- a/src/amd/common/sid.h +++ b/src/amd/common/sid.h @@ -119,6 +119,7 @@ #define STRMOUT_OFFSET_FROM_VGT_FILLED_SIZE 1 #define STRMOUT_OFFSET_FROM_MEM 2 #define STRMOUT_OFFSET_NONE 3 +#define STRMOUT_DATA_TYPE(x) (((unsigned)(x) & 0x1) << 7) #define STRMOUT_SELECT_BUFFER(x) (((unsigned)(x) & 0x3) << 8) #define PKT3_DRAW_INDEX_OFFSET_2 0x35 #define PKT3_WRITE_DATA 0x37 |