changeset 9:adc5e1eedb8a

does the renderer need a cache? i suggest no.
author fred@reichbier.de
date Sat, 19 Jul 2008 17:27:34 +0200
parents 156a95e4c018
children 79b534bbda65
files import/myrrdin/renderer.d
diffstat 1 files changed, 0 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/import/myrrdin/renderer.d	Sat Jul 19 17:26:41 2008 +0200
+++ b/import/myrrdin/renderer.d	Sat Jul 19 17:27:34 2008 +0200
@@ -33,15 +33,12 @@
 
 class Renderer {
     public RenderWindow app;
-    public Cache cache;
     private Consumer[] draw_consumers;
     private Consumer[] event_consumers;
     
     this(char[] title, int width, int height, int depth=32) {
 	this.app = new RenderWindow(VideoMode(width, height, depth), title);
 	this.app.setFramerateLimit(40);
-
-	this.cache = new Cache("."); // TODO
     }
 
     /* add a consumer for event handling and drawing */