]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkGPUInfoList.java
Perform view direction switching via vtkCameraAndSelectorAction
[simantics/3d.git] / vtk / src / vtk / vtkGPUInfoList.java
1 // java wrapper for vtkGPUInfoList object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkGPUInfoList extends vtkObject
8 {
9
10   private native int IsTypeOf_0(String id0);
11   public int IsTypeOf(String id0)
12     { return IsTypeOf_0(id0); }
13
14   private native int IsA_1(String id0);
15   public int IsA(String id0)
16     { return IsA_1(id0); }
17
18   private native void Probe_2();
19   public void Probe()
20     { Probe_2(); }
21
22   private native boolean IsProbed_3();
23   public boolean IsProbed()
24     { return IsProbed_3(); }
25
26   private native int GetNumberOfGPUs_4();
27   public int GetNumberOfGPUs()
28     { return GetNumberOfGPUs_4(); }
29
30   private native long GetGPUInfo_5(int id0);
31   public vtkGPUInfo GetGPUInfo(int id0) {
32     long temp = GetGPUInfo_5(id0);
33
34     if (temp == 0) return null;
35     return (vtkGPUInfo)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
36 }
37
38   public vtkGPUInfoList() { super(); }
39
40   public vtkGPUInfoList(long id) { super(id); }
41   public native long   VTKInit();
42
43 }