diff options
author | Marek Olšák <[email protected]> | 2018-08-15 21:17:06 -0400 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2019-04-23 11:28:56 -0400 |
commit | 437d032b7d4f2439f251f93ec03462034ee2219b (patch) | |
tree | c09e7f48d4d33ce046ffbb6409be987765f30760 /src/gallium/drivers/radeon | |
parent | 2313176817957517b1244e639dd2430a97ce816b (diff) |
winsys/amdgpu: make IBs writable and expose their address
Tested-by: Dieter Nützel <[email protected]>
Acked-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeon')
-rw-r--r-- | src/gallium/drivers/radeon/radeon_winsys.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/radeon/radeon_winsys.h b/src/gallium/drivers/radeon/radeon_winsys.h index 2d86c7f905b..0c71b59ae04 100644 --- a/src/gallium/drivers/radeon/radeon_winsys.h +++ b/src/gallium/drivers/radeon/radeon_winsys.h @@ -193,6 +193,7 @@ struct radeon_cmdbuf { /* Memory usage of the buffer list. These are always 0 for preamble IBs. */ uint64_t used_vram; uint64_t used_gart; + uint64_t gpu_address; }; /* Tiling info for display code, DRI sharing, and other data. */ |