Re: [Paraview] [Paraview-developers] (Ordered) Compositing question.

2012-11-21 Thread Biddiscombe, John A.
JB From: paraview-boun...@paraview.org [mailto:paraview-boun...@paraview.org] On Behalf Of Biddiscombe, John A. Sent: 20 November 2012 14:10 To: Utkarsh Ayachit Cc: paraview-develop...@paraview.org; paraview@paraview.org Subject: Re: [Paraview] [Paraview-developers] (Ordered) Compositing question

Re: [Paraview] [Paraview-developers] (Ordered) Compositing question.

2012-11-21 Thread Biddiscombe, John A.
: [Paraview] [Paraview-developers] (Ordered) Compositing question. Doesn't seem to be working as expected yet. I have found some problems which I'll mention here for general reference. 1) Setting the ExtentTranslator using the function vtkPVRenderView::SetOrderedCompositingInformation(inInfo

Re: [Paraview] [Paraview-developers] (Ordered) Compositing question.

2012-11-21 Thread Utkarsh Ayachit
(closer to a billion triangles I think!) JB From: Biddiscombe, John A. Sent: 21 November 2012 09:38 To: Biddiscombe, John A.; Utkarsh Ayachit Cc: paraview-develop...@paraview.org; paraview@paraview.org Subject: RE: [Paraview] [Paraview-developers] (Ordered) Compositing question

Re: [Paraview] [Paraview-developers] (Ordered) Compositing question.

2012-11-20 Thread Biddiscombe, John A.
...@paraview.org; paraview@paraview.org Subject: Re: [Paraview] [Paraview-developers] (Ordered) Compositing question. John, Look at vtkStructuredGridVolumeRepresentation, It passes a ExtentTranslator to the view. The view uses the extent translator to build the KdTree. That's one of specifying

Re: [Paraview] [Paraview-developers] (Ordered) Compositing question.

2012-11-19 Thread Moreland, Kenneth
You are correct in that if you disable ordered composite it will disabled the distribution and the composite ordering. The problem is that the geometry distribution also creates a k-d tree structure that the compositing uses to determine the visibility order. So it would not be sufficient to

Re: [Paraview] [Paraview-developers] (Ordered) Compositing question.

2012-11-19 Thread Biddiscombe, John A.
Thanks Ken, My suspicions are confirmed. I had a poke around with the ordered compositing code (vtkOrderedCompositeDistributor et al) and saw that the BSP cuts from the D3 filter are set to match those from the PKDTree internally. I notice that in the BSPcuts code it says // Description:

Re: [Paraview] [Paraview-developers] (Ordered) Compositing question.

2012-11-19 Thread Utkarsh Ayachit
John, Look at vtkStructuredGridVolumeRepresentation, It passes a ExtentTranslator to the view. The view uses the extent translator to build the KdTree. That's one of specifying the cuts. You can indeed provide a custom extent translator or if need be, that API can be extended to pass some other

Re: [Paraview] [Paraview-developers] (Ordered) Compositing question.

2012-11-19 Thread Biddiscombe, John A.
Utkarsh Look at vtkStructuredGridVolumeRepresentation, It passes a ExtentTranslator to the view. The view uses the extent translator to build the KdTree. That's one of specifying the cuts. You can indeed provide a custom extent translator or if need be, that API can be extended to pass some