bhyve: increase fbuf display resolution limit

This enables connecting to the VNC server at a higher resolution.

Reviewed by:	corvink, markj
Differential Revision:	https://reviews.freebsd.org/D42620
This commit is contained in:
Robert Wing 2023-11-20 16:17:53 -09:00
parent a2b560cc69
commit fb51ddb20d

View file

@ -71,10 +71,10 @@ static int fbuf_debug = 1;
#define DMEMSZ 128
#define FB_SIZE (16*MB)
#define FB_SIZE (32*MB)
#define COLS_MAX 1920
#define ROWS_MAX 1200
#define COLS_MAX 3840
#define ROWS_MAX 2160
#define COLS_DEFAULT 1024
#define ROWS_DEFAULT 768