PokittoLib is the library needed for programming the Pokitto DIY game console (www.pokitto.com)

Dependents:   Sensitive

Fork of PokittoLib by Jonne Valola

Revision:
15:0bbe8f6fae32
Parent:
7:72f87b7c7400
--- a/POKITTO_CORE/PokittoDisplay.h	Wed Oct 18 14:25:12 2017 +0000
+++ b/POKITTO_CORE/PokittoDisplay.h	Wed Oct 18 14:47:54 2017 +0000
@@ -229,6 +229,8 @@
     // DIRECT DRAWING (NO BUFFERING)
     /** Direct pixel (not through display buffer) */
     static void directPixel(int16_t,int16_t,uint16_t);
+    /** Direct tile 16bit (not through display buffer) */
+	static void directTile(int16_t x, int16_t y, int16_t x2, int16_t y2, uint16_t* gfx);
     /** Direct rectangle (not through display buffer) */
     static void directRectangle(int16_t, int16_t,int16_t, int16_t, uint16_t);
     /** Set the cursor for printing to a certain screen position */