mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2024-11-21 16:46:41 -08:00
vkd3d: Use size_t instead of SIZE_T for GPU VA sizes.
This also fixes a format specifier warning in an ERR for the 32-bit Linux build. Signed-off-by: Hans-Kristian Arntzen <post@arntzen-software.no> Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
736dd8203d
commit
54d2a15aa6
@ -205,13 +205,13 @@ HRESULT vkd3d_fence_worker_stop(struct vkd3d_fence_worker *worker,
|
||||
struct vkd3d_gpu_va_allocation
|
||||
{
|
||||
D3D12_GPU_VIRTUAL_ADDRESS base;
|
||||
SIZE_T size;
|
||||
size_t size;
|
||||
void *ptr;
|
||||
};
|
||||
|
||||
struct vkd3d_gpu_va_slab
|
||||
{
|
||||
SIZE_T size;
|
||||
size_t size;
|
||||
void *ptr;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user