mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2026-05-05 13:38:04 +02:00
tests/modeprint: Output masks as hex numbers
This commit is contained in:
parent
1776246785
commit
51c6ae4c3a
1 changed files with 2 additions and 2 deletions
|
|
@ -193,8 +193,8 @@ int printEncoder(int fd, drmModeResPtr res, drmModeEncoderPtr encoder, uint32_t
|
|||
printf("\tid :%i\n", id);
|
||||
printf("\tcrtc_id :%d\n", encoder->crtc_id);
|
||||
printf("\ttype :%d\n", encoder->encoder_type);
|
||||
printf("\tpossible_crtcs :%d\n", encoder->possible_crtcs);
|
||||
printf("\tpossible_clones :%d\n", encoder->possible_clones);
|
||||
printf("\tpossible_crtcs :0x%x\n", encoder->possible_crtcs);
|
||||
printf("\tpossible_clones :0x%x\n", encoder->possible_clones);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue