gustavonihei commented on a change in pull request #4623: URL: https://github.com/apache/incubator-nuttx/pull/4623#discussion_r718474758
########## File path: include/nuttx/video/fb.h ########## @@ -315,11 +319,15 @@ struct fb_videoinfo_s struct fb_planeinfo_s { - FAR void *fbmem; /* Start of frame buffer memory */ - size_t fblen; /* Length of frame buffer memory in bytes */ - fb_coord_t stride; /* Length of a line in bytes */ - uint8_t display; /* Display number */ - uint8_t bpp; /* Bits per pixel */ + FAR void *fbmem; /* Start of frame buffer memory */ + size_t fblen; /* Length of frame buffer memory in bytes */ + fb_coord_t stride; /* Length of a line in bytes */ + uint8_t display; /* Display number */ + uint8_t bpp; /* Bits per pixel */ + uint32_t xres_virtual; /* Virtual Horizontal resolution in pixel columns */ + uint32_t yres_virtual; /* Virtual Vertical resolution in pixel rows */ + uint32_t xoffest; /* X offset */ Review comment: ```suggestion uint32_t xoffset; /* X offset */ ``` Typo in the struct member -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@nuttx.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org