MCPcopy Create free account
hub / github.com/CE-Programming/CEmu / panel_clock_pixel_hv

Function panel_clock_pixel_hv

core/panel.c:874–880  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

872}
873
874static void panel_clock_pixel_hv(uint16_t bgr565) {
875 uint32_t col = panel.col;
876 panel.col += (panel.displayMode == PANEL_DM_RGB);
877 if (likely(col < PANEL_NUM_COLS)) {
878 panel_write_pixel_rgb(panel_bgr565_epf_funcs[panel_rgb_epf()](bgr565));
879 }
880}
881
882static void panel_clock_pixel_epf0(uint16_t bgr565) {
883 panel.col += (panel.displayMode == PANEL_DM_RGB);

Callers

nothing calls this directly

Calls 2

panel_write_pixel_rgbFunction · 0.85
panel_rgb_epfFunction · 0.85

Tested by

no test coverage detected