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:

committed by
Marge Bot

parent
fb477cc421
commit
f0178f516f
@@ -402,7 +402,7 @@ radv_write_event_with_dims_marker(struct radv_cmd_buffer *cmd_buffer,
|
|||||||
void
|
void
|
||||||
radv_describe_begin_cmd_buffer(struct radv_cmd_buffer *cmd_buffer)
|
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 rgp_sqtt_marker_cb_start marker = {};
|
||||||
struct radeon_cmdbuf *cs = cmd_buffer->cs;
|
struct radeon_cmdbuf *cs = cmd_buffer->cs;
|
||||||
|
|
||||||
@@ -427,7 +427,7 @@ radv_describe_begin_cmd_buffer(struct radv_cmd_buffer *cmd_buffer)
|
|||||||
void
|
void
|
||||||
radv_describe_end_cmd_buffer(struct radv_cmd_buffer *cmd_buffer)
|
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 rgp_sqtt_marker_cb_end marker = {};
|
||||||
struct radeon_cmdbuf *cs = cmd_buffer->cs;
|
struct radeon_cmdbuf *cs = cmd_buffer->cs;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user