diff options
Diffstat (limited to '')
-rw-r--r-- | minui/graphics.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/minui/graphics.c b/minui/graphics.c index 57ca810f0..fa8e5109a 100644 --- a/minui/graphics.c +++ b/minui/graphics.c @@ -14,6 +14,7 @@ * limitations under the License. */ +#include <stdbool.h> #include <stdlib.h> #include <unistd.h> @@ -364,3 +365,12 @@ gr_pixel *gr_fb_data(void) { return (unsigned short *) gr_mem_surface.data; } + +void gr_fb_blank(bool blank) +{ + int ret; + + ret = ioctl(gr_fb_fd, FBIOBLANK, blank ? FB_BLANK_POWERDOWN : FB_BLANK_UNBLANK); + if (ret < 0) + perror("ioctl(): blank"); +} |