Lv_display_set_offset does not work with Linux DRM driver

Description

lv_display_set_offset does not work with Linux DRM driver

What MCU/Processor/Board and compiler are you using?

Desktop Linux, x86, GCC

What LVGL version are you using?

V9.2.2

What do you want to achieve?

I want to offset the rendered lv_display to the right of my physical display.

What have you tried so far?

lv_display_t * disp = lv_linux_drm_create();
lv_linux_drm_set_file(disp, “/dev/dri/card0”, -1);
lv_display_set_resolution(disp, 640, 720);
lv_display_set_physical_resolution(disp, 1280, 720);
lv_display_set_offset(disp, 640, 0);

The offset works on SDL simulator but not DRM