core: Change type of DmaBufAttributes::{pitch,offset}
Change it to uint32_t[] to match drmModeAddFB() API.
This commit is contained in:
parent
b98f68d581
commit
f579b073c9
1 changed files with 2 additions and 2 deletions
|
@ -24,8 +24,8 @@ struct DmaBufAttributes
|
|||
uint64_t modifier = 0;
|
||||
|
||||
FileDescriptor fd[4];
|
||||
int offset[4] = {0, 0, 0, 0};
|
||||
int pitch[4] = {0, 0, 0, 0};
|
||||
uint32_t offset[4] = {0, 0, 0, 0};
|
||||
uint32_t pitch[4] = {0, 0, 0, 0};
|
||||
};
|
||||
|
||||
struct ShmAttributes
|
||||
|
|
Loading…
Reference in a new issue