diff options
author | Marek Olšák <[email protected]> | 2018-08-06 04:20:30 -0400 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2018-08-14 21:19:02 -0400 |
commit | 0ca8294ecefe466005363c0d1dabd4f462225495 (patch) | |
tree | 967401727818641d29f4251de1ce9f96fa4bf30e /src/amd/common/sid.h | |
parent | 465e929d6a94d156e8321ebece5a45f4a60969aa (diff) |
radeonsi: implement EXT_window_rectangles
Reviewed-by: Samuel Pitoiset <[email protected]>
Diffstat (limited to 'src/amd/common/sid.h')
-rw-r--r-- | src/amd/common/sid.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/amd/common/sid.h b/src/amd/common/sid.h index 3c3bc541b4f..0671f7d3998 100644 --- a/src/amd/common/sid.h +++ b/src/amd/common/sid.h @@ -5282,6 +5282,22 @@ #define S_02820C_CLIP_RULE(x) (((unsigned)(x) & 0xFFFF) << 0) #define G_02820C_CLIP_RULE(x) (((x) >> 0) & 0xFFFF) #define C_02820C_CLIP_RULE 0xFFFF0000 +#define V_02820C_OUT 0x0001 +#define V_02820C_IN_0 0x0002 +#define V_02820C_IN_1 0x0004 +#define V_02820C_IN_10 0x0008 +#define V_02820C_IN_2 0x0010 +#define V_02820C_IN_20 0x0020 +#define V_02820C_IN_21 0x0040 +#define V_02820C_IN_210 0x0080 +#define V_02820C_IN_3 0x0100 +#define V_02820C_IN_30 0x0200 +#define V_02820C_IN_31 0x0400 +#define V_02820C_IN_310 0x0800 +#define V_02820C_IN_32 0x1000 +#define V_02820C_IN_320 0x2000 +#define V_02820C_IN_321 0x4000 +#define V_02820C_IN_3210 0x8000 #define R_028210_PA_SC_CLIPRECT_0_TL 0x028210 #define S_028210_TL_X(x) (((unsigned)(x) & 0x7FFF) << 0) #define G_028210_TL_X(x) (((x) >> 0) & 0x7FFF) |