| 7 | #endif |
| 8 | |
| 9 | typedef struct FBInfo{ |
| 10 | uint32_t width; // Resolution width |
| 11 | uint32_t height; // Resolution height |
| 12 | uint16_t bpp; // Resolution depth/bits per pixel |
| 13 | |
| 14 | uint32_t pitch; // Video mode pitch |
| 15 | } __attribute__((packed)) fb_info_t; |
| 16 | |
| 17 | volatile uint8_t* LemonMapFramebuffer(FBInfo& fbInfo); |
nothing calls this directly
no outgoing calls
no test coverage detected