mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2025-12-20 08:10:11 +01:00
modetest: use sized integers in struct bo
Use the same size types as the kernel. Signed-off-by: Simon Ser <contact@emersion.fr>
This commit is contained in:
parent
fc6bc66c64
commit
ce22377778
1 changed files with 3 additions and 3 deletions
|
|
@ -44,9 +44,9 @@ struct bo
|
|||
{
|
||||
int fd;
|
||||
void *ptr;
|
||||
size_t size;
|
||||
size_t pitch;
|
||||
unsigned handle;
|
||||
uint64_t size;
|
||||
uint32_t pitch;
|
||||
uint32_t handle;
|
||||
};
|
||||
|
||||
/* -----------------------------------------------------------------------------
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue