MCPcopy Create free account
hub / github.com/OSSystems/EasySplash / enable_framebuffer_cursor

Function enable_framebuffer_cursor

src/linux_framebuffer.cpp:192–197  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

190
191
192void enable_framebuffer_cursor(bool const p_state)
193{
194 int fd = open(fbcon_path, O_WRONLY);
195 write(fd, p_state ? "1" : "0", 1);
196 close(fd);
197}
198
199
200bool is_framebuffer_cursor_enabled()

Callers 6

g2d_displayMethod · 0.85
~g2d_displayMethod · 0.85
swrender_displayMethod · 0.85
~swrender_displayMethod · 0.85
gles_displayMethod · 0.85
~gles_displayMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected