A basic graphics package for the LPC4088 Display Module.

Dependents:   lpc4088_displaymodule_demo_sphere sampleGUI sampleEmptyGUI lpc4088_displaymodule_fs_aid ... more

Fork of DMBasicGUI by EmbeddedArtists AB

Revision:
13:bff2288c2c61
Parent:
5:f4de114c31c3
Child:
14:647b1896ed84
--- a/SlideShow/Renderer.h	Thu Feb 19 14:37:29 2015 +0100
+++ b/SlideShow/Renderer.h	Mon Mar 09 10:40:55 2015 +0100
@@ -1,15 +1,29 @@
+/*
+ *  Copyright 2014 Embedded Artists AB
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License");
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License.
+ */
+ 
 #ifndef RENDERER_H
 #define RENDERER_H
 
 #include "rtos.h"
-//#include "LcdController.h"
-//#include "EaLcdBoard.h"
 #include "Display.h"
 
 class Renderer {
 public:
 
-    Renderer(/*LcdController::Config* screen, EaLcdBoard* lcdBoard*/);
+    Renderer();
     ~Renderer();
 
     /** Specifies a part of a layer
@@ -94,7 +108,6 @@
 
     image_t ImageBackBuffer[2];
 
-    //EaLcdBoard* board;
     Display* display;
 };