modetest: use sized integers in struct bo
Use the same size types as the kernel. Signed-off-by: Simon Ser <contact@emersion.fr>main
parent
fc6bc66c64
commit
ce22377778
|
@ -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…
Reference in New Issue