> I guess you could also use a ThreadLocal, also, but that's probably > more of a hack than anything else.
I think ThreadLocal is probably more appropriate in the case where you have multiple objects that need to access the same instance of the object per thread. Since I am only talking about one object (the renderer), Craig's solutions seems preferable. > -Heath Borders-Wing sean

