mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 15:38:09 +02:00
radv: fix 32-bits build (again)
Fixes: dcfc08f5b8 ("radv/sqtt: describe begin/end command buffers with user markers")
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4044>
This commit is contained in:
parent
fb477cc421
commit
f0178f516f
1 changed files with 2 additions and 2 deletions
|
|
@ -402,7 +402,7 @@ radv_write_event_with_dims_marker(struct radv_cmd_buffer *cmd_buffer,
|
|||
void
|
||||
radv_describe_begin_cmd_buffer(struct radv_cmd_buffer *cmd_buffer)
|
||||
{
|
||||
uint64_t device_id = (uint64_t)cmd_buffer->device;
|
||||
uint64_t device_id = (uintptr_t)cmd_buffer->device;
|
||||
struct rgp_sqtt_marker_cb_start marker = {};
|
||||
struct radeon_cmdbuf *cs = cmd_buffer->cs;
|
||||
|
||||
|
|
@ -427,7 +427,7 @@ radv_describe_begin_cmd_buffer(struct radv_cmd_buffer *cmd_buffer)
|
|||
void
|
||||
radv_describe_end_cmd_buffer(struct radv_cmd_buffer *cmd_buffer)
|
||||
{
|
||||
uint64_t device_id = (uint64_t)cmd_buffer->device;
|
||||
uint64_t device_id = (uintptr_t)cmd_buffer->device;
|
||||
struct rgp_sqtt_marker_cb_end marker = {};
|
||||
struct radeon_cmdbuf *cs = cmd_buffer->cs;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue