/frameworks/base/media/mca/filterfw/java/android/filterfw/geometry/ |
package-info.java | 4 package android.filterfw.geometry;
|
/external/jmonkeyengine/engine/src/core/com/jme3/collision/ |
CollisionResult.java | 37 import com.jme3.scene.Geometry; 49 private Geometry geometry; field in class:CollisionResult 55 public CollisionResult(Geometry geometry, Vector3f contactPoint, float distance, int triangleIndex) { 56 this.geometry = geometry; 70 public void setGeometry(Geometry geom){ 71 this.geometry = geom; 94 Mesh m = geometry.getMesh() [all...] |
/external/skia/src/gpu/ |
GrRectBatch.cpp | 42 struct Geometry { 52 static GrBatch* Create(const Geometry& geometry) { 53 return SkNEW_ARGS(RectBatch, (geometry)); 59 // When this is called on a batch, there is only one geometry bundle 130 const Geometry& geom = fGeoData[i]; 161 SkSTArray<1, Geometry, true>* geoData() { return &fGeoData; } 164 RectBatch(const Geometry& geometry) { 166 fGeoData.push_back(geometry); 228 RectBatch::Geometry geometry; local [all...] |
GrOvalRenderer.cpp | 65 * vec2f : position in device space of the bounding geometry vertices 650 struct Geometry { 659 static GrBatch* Create(const Geometry& geometry) { return SkNEW_ARGS(CircleBatch, (geometry)); } 664 // When this is called on a batch, there is only one geometry bundle 694 // Setup geometry processor 722 Geometry& geom = fGeoData[i]; 756 SkSTArray<1, Geometry, true>* geoData() { return &fGeoData; } 759 CircleBatch(const Geometry& geometry) 843 CircleBatch::Geometry geometry; local 1107 EllipseBatch::Geometry geometry; local 1358 DIEllipseBatch::Geometry geometry; local 1961 RRectCircleRendererBatch::Geometry geometry; local 2009 RRectEllipseRendererBatch::Geometry geometry; local [all...] |
GrAARectRenderer.cpp | 50 struct Geometry { 57 static GrBatch* Create(const Geometry& geometry) { 58 return SkNEW_ARGS(AAFillRectBatch, (geometry)); 64 // When this is called on a batch, there is only one geometry bundle 130 const Geometry& args = fGeoData[i]; 144 SkSTArray<1, Geometry, true>* geoData() { return &fGeoData; } 147 AAFillRectBatch(const Geometry& geometry) { 149 fGeoData.push_back(geometry); 325 AAFillRectBatch::Geometry geometry; local 794 AAStrokeRectBatch::Geometry geometry; local [all...] |
/external/apache-commons-math/src/main/java/org/apache/commons/math/geometry/ |
CardanEulerSingularityException.java | 18 package org.apache.commons.math.geometry;
|
NotARotationMatrixException.java | 18 package org.apache.commons.math.geometry;
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/meshes/ |
MeshContext.java | 4 import com.jme3.scene.Geometry;
17 private List<Geometry> mesh;
23 private Map<Geometry, VertexBuffer> uvCoordinates = new HashMap<Geometry, VertexBuffer>();
30 public List<Geometry> getMesh() {
40 public void setMesh(List<Geometry> mesh) {
86 * @param geometry
91 public void addUVCoordinates(Geometry geometry, VertexBuffer vertexBuffer) {
92 uvCoordinates.put(geometry, vertexBuffer); [all...] |
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/util/ |
DebugShapeFactory.java | 38 import com.jme3.scene.Geometry; 76 Geometry geometry = createDebugShape(ccollisionShape); local 79 geometry.setLocalTranslation(childCollisionShape.location); 85 tempRot.set(geometry.getLocalRotation()); 87 geometry.setLocalRotation(tempRot); 91 node.attachChild(geometry); 104 private static Geometry createDebugShape(CollisionShape shape) { 105 Geometry geom = new Geometry(); [all...] |
/external/jmonkeyengine/engine/src/test/jme3test/bullet/ |
TestCollisionShapeFactory.java | 42 import com.jme3.scene.Geometry; 88 //test single geometry too 89 Geometry myGeom = new Geometry("cylinder", new Cylinder(16, 16, 0.5f, 1)); 101 Geometry[] boxes = new Geometry[]{ 102 new Geometry("box1", box), 103 new Geometry("box2", box), 104 new Geometry("box3", box), 105 new Geometry("torus1", torus) 110 Geometry geometry = boxes[i]; local [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/scene/ |
SimpleBatchNode.java | 31 if (!(child instanceof Geometry)) { 32 throw new UnsupportedOperationException("BatchNode is BatchMode.Simple only support child of type Geometry, use BatchMode.Complex to use a complex structure"); 44 batch.geometry.setTransformRefresh(); 48 protected Transform getTransforms(Geometry geom){
|
BatchNode.java | 55 * There is one geometry per different material in the sub tree. 59 * all the geometry that have been batched are set to {@link CullHint#Always} to not render them. 73 * the map of geometry holding the batched meshes 122 batch.geometry.getMesh().updateBound(); 123 batch.geometry.updateWorldBound(); 139 protected Transform getTransforms(Geometry geom) { 143 protected void updateSubBatch(Geometry bg) { 146 Mesh mesh = batch.geometry.getMesh(); 172 * every geometry of the sub scene graph of this node will be batched into a single mesh that will be rendered in one call 178 batch.geometry.setIgnoreTransform(true) 643 Geometry geometry; field in class:BatchNode.Batch [all...] |
/development/ndk/platforms/android-21/include/linux/ |
virtio_blk.h | 50 } geometry; member in struct:virtio_blk_config
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/ |
GeometryMathUtils.java | 47 // Holder class for Geometry data. 253 public static GeometryHolder unpackGeometry(Collection<FilterRepresentation> geometry) { 255 unpackGeometry(holder, geometry); 260 Collection<FilterRepresentation> geometry) { 262 // Get geometry data from filters 263 for (FilterRepresentation r : geometry) { 280 public static void replaceInstances(Collection<FilterRepresentation> geometry, 282 Iterator<FilterRepresentation> iter = geometry.iterator(); 290 geometry.add(rep); 296 Collection<FilterRepresentation> geometry = MasterImage.getImage().getPreset( local [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/ |
virtio_blk.h | 13 #define VIRTIO_BLK_F_GEOMETRY 4 /* Legacy geometry available */ 26 /* geometry the device (if VIRTIO_BLK_F_GEOMETRY) */ 31 } geometry; member in struct:virtio_blk_config
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/ |
virtio_blk.h | 36 #define VIRTIO_BLK_F_GEOMETRY 4 /* Legacy geometry available */ 52 /* geometry the device (if VIRTIO_BLK_F_GEOMETRY) */ 57 } geometry; member in struct:virtio_blk_config
|
/prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/linux/ |
virtio_blk.h | 50 } geometry; member in struct:virtio_blk_config
|
/prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/linux/ |
virtio_blk.h | 50 } geometry; member in struct:virtio_blk_config
|
/prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/linux/ |
virtio_blk.h | 50 } geometry; member in struct:virtio_blk_config
|
/prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/linux/ |
virtio_blk.h | 50 } geometry; member in struct:virtio_blk_config
|
/prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/linux/ |
virtio_blk.h | 50 } geometry; member in struct:virtio_blk_config
|
/prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/linux/ |
virtio_blk.h | 50 } geometry; member in struct:virtio_blk_config
|
/external/skia/gm/ |
convexpolyeffect.cpp | 32 struct Geometry : public GrTestBatch::Geometry { 38 static GrBatch* Create(const GrGeometryProcessor* gp, const Geometry& geo) { 43 ConvexPolyTestBatch(const GrGeometryProcessor* gp, const Geometry& geo) 48 Geometry* geoData(int index) override { 53 const Geometry* geoData(int index) const override { 68 // conservative bounding geometry. 75 Geometry fGeometry; 191 ConvexPolyTestBatch::Geometry geometry; variable 240 ConvexPolyTestBatch::Geometry geometry; variable [all...] |
/packages/apps/Gallery2/jni/ |
Android.mk | 37 filters/geometry.c \
|
/external/gptfdisk/ |
diskio-unix.cc | 185 struct hd_geometry geometry; local 191 if (!ioctl(fd, HDIO_GETGEO, &geometry)) 192 numHeads = (uint32_t) geometry.heads; 203 struct hd_geometry geometry; local 209 if (!ioctl(fd, HDIO_GETGEO, &geometry)) 210 numSecs = (uint32_t) geometry.sectors;
|