Home | History | Annotate | Download | only in light

Lines Matching defs:tlist

49     private Light[] list, tlist;
183 if (tlist != null)
184 Arrays.fill(tlist, null);
203 if (tlist == null || tlist.length != list.length) {
204 tlist = list.clone();
206 System.arraycopy(list, 0, tlist, 0, list.length);
216 // now merge sort tlist into list
217 SortUtil.msort(tlist, list, 0, listSize - 1, c);
298 clone.tlist = null; // list used for sorting only