PokittoLib with changes to lcd refresh etc.

Dependents:   Pokittris

Fork of Pokitto by Pokitto Community Team

This is a fork by user @Spinal, and is used in Pokittris for testing. Do not import this to your own program.

Revision:
9:570fdd653f1d
Parent:
2:968589ca3484
Child:
10:8cde5d0bafad
--- a/POKITTO_CORE/PokittoDisplay.h	Sat Oct 07 21:34:27 2017 +0000
+++ b/POKITTO_CORE/PokittoDisplay.h	Sun Oct 15 16:13:07 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 */