diff options
author | Christian König <[email protected]> | 2012-08-12 19:16:48 +0200 |
---|---|---|
committer | Christian König <[email protected]> | 2012-08-15 22:13:19 +0200 |
commit | f2c95d93db197fe175d510436d7f4fa45aed1180 (patch) | |
tree | 1d965766a385035a5846215b4e5f1b5fbf91d9f7 /src/gallium/drivers/radeonsi/sid.h | |
parent | 4444b9d1ecddb09468d2878ffb1463a66ea0ffd3 (diff) |
radeonsi: add shader data infrastructure
With this we can embed data for the shaders (like resource
descriptors) into the PM4 stream.
Signed-off-by: Christian König <[email protected]>
Reviewed-by: Alex Deucher <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeonsi/sid.h')
-rw-r--r-- | src/gallium/drivers/radeonsi/sid.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/radeonsi/sid.h b/src/gallium/drivers/radeonsi/sid.h index 325445c97e0..d26e1946db8 100644 --- a/src/gallium/drivers/radeonsi/sid.h +++ b/src/gallium/drivers/radeonsi/sid.h @@ -93,6 +93,7 @@ #define PKT3_SET_CONFIG_REG 0x68 #define PKT3_SET_CONTEXT_REG 0x69 #define PKT3_SET_SH_REG 0x76 +#define PKT3_SET_SH_REG_OFFSET 0x77 #define PKT_TYPE_S(x) (((x) & 0x3) << 30) #define PKT_TYPE_G(x) (((x) >> 30) & 0x3) |