mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-04 22:49:13 +02:00
i965: Add #defines for the MI_LOAD_REGISTER_MEM command.
This command reads a value from memory and writes it to a register (the opposite of MI_STORE_REGISTER_MEM). It's only available on Gen7+. Signed-off-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Paul Berry <stereotype441@gmail.com>
This commit is contained in:
parent
c047ad000b
commit
0f7a15a247
1 changed files with 4 additions and 0 deletions
|
|
@ -44,6 +44,10 @@
|
|||
#define MI_STORE_REGISTER_MEM (CMD_MI | (0x24 << 23))
|
||||
# define MI_STORE_REGISTER_MEM_USE_GGTT (1 << 22)
|
||||
|
||||
/* Load a value from memory into a register. Only available on Gen7+. */
|
||||
#define GEN7_MI_LOAD_REGISTER_MEM (CMD_MI | (0x29 << 23))
|
||||
# define MI_LOAD_REGISTER_MEM_USE_GGTT (1 << 22)
|
||||
|
||||
/** @{
|
||||
*
|
||||
* PIPE_CONTROL operation, a combination MI_FLUSH and register write with
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue