Hugo Lefeuvre <[email protected]> writes: > Sure ? To me it looked like three entries are provided, but the fourth > (td->td_transferfunction[3]) isn't.
I was about to write justification for how I was absolutely sure of this. Then I realized the loop is: for (i = 1; i < td->td_samplesperpixel; i++) i.e. it starts at index 1, not index 0 as I had expected. Oops. So the third iteration is actually referencing the 4th item. Out by one error. Sorry. -- Brian May <[email protected]>
