/* * gfx_putpixel16 — пиксель (x,y) цветом 0..15 (mode 0x82); * одиночный вызов в собственной W3-скобке. */ #include "_gfx.h" void gfx_putpixel16(int x, int y, uint8_t color) { if ((unsigned)x >= GFX_WIDTH_16 || (unsigned)y >= GFX_HEIGHT_16) return; _gfx_w3_video_begin(); _gfx_putpixel16_raw(x, y, color); _gfx_w3_video_end(); }