[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Gzz] Re: [Gzz-commits] gzz/gzz gfx/gl/GLVobCoorder.java modules/pp/PPV.
From: |
Matti Katila |
Subject: |
[Gzz] Re: [Gzz-commits] gzz/gzz gfx/gl/GLVobCoorder.java modules/pp/PPV... |
Date: |
Sat, 8 Feb 2003 17:51:47 +0200 (EET) |
On Sat, 8 Feb 2003, Tuomas Lukka wrote:
>> + /** Next generation of PP doens't set accursed when drawing the paper
>> + */
>> + public void render(VobScene vs, int into, ViewContext context, int
>> cullCS, Cell accursed) {
>> + // push
>> + Cell temp = context.getAccursed();
>> + ((AbstractViewContext)context).setAccursed(accursed);
>> +
>> + // render
>> + render(vs, into, context, cullCS);
>> +
>> + // pop
>> + ((AbstractViewContext)context).setAccursed(temp);
>> + }
>
> Why does it not? The zzNodes classes do, and these could as well. Putting this
> in coordinateplaneview is ugly.
You are probably right. I though it as a memory issue because another
AbstractViewContext is needed when only Cell object is enough.
And of course needed to provide the old PP accessibility.
I fix it somewhere else..
-Matti