Home | History | Annotate | Download | only in post

Lines Matching refs:Pass

66     protected Pass defaultPass;

67 protected List<Pass> postRenderPasses;
77 * Inner class Pass
78 * Pass are like filters in filters.
81 public class Pass {
89 * init the pass called internally
123 * init the pass called internally
139 * init the pass called internally
197 * returns the default pass texture format
205 * returns the default pass depth format
231 defaultPass = new Pass();
246 for (Iterator<Pass> it = postRenderPasses.iterator(); it.hasNext();) {
247 Pass pass = it.next();
248 pass.cleanup(r);
290 * Override this method if you want to make a pre pass, before the actual rendering of the frame
307 * Override this method if you want to make a pass just after the frame has been rendered and just before the filter rendering
356 * returns the default pass frame buffer
409 protected List<Pass> getPostRenderPasses() {