libkms: All current BO_TYPE are 32bpp
... so request a 32bpp dumb buffer rather than a 16bpp. Fixes modetest and friends. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>main
parent
ba11501bb9
commit
61be94018a
|
@ -95,7 +95,8 @@ dumb_bo_create(struct kms_driver *kms,
|
|||
|
||||
memset(&arg, 0, sizeof(arg));
|
||||
|
||||
arg.bpp = 16;
|
||||
/* All BO_TYPE currently are 32bpp formats */
|
||||
arg.bpp = 32;
|
||||
arg.width = width;
|
||||
arg.height = height;
|
||||
|
||||
|
|
Loading…
Reference in New Issue