Searched refs:geometry (Results 1 - 25 of 60) sorted by relevance

123

/external/grub/stage2/
H A Dbios.c47 else if READ is BIOSDISK_WRITE, then write it. If an geometry error
51 biosdisk (int read, int drive, struct geometry *geometry,
56 if (geometry->flags & BIOSDISK_FLAG_LBA_EXTENSION)
67 /* XXX: Don't check the geometry by default, because some buggy
71 if (sector >= geometry->total_sectors)
91 if (geometry->flags & BIOSDISK_FLAG_CDROM)
94 geometry->flags &= ~BIOSDISK_FLAG_LBA_EXTENSION;
95 geometry->total_sectors = (geometry
49 biosdisk(int read, int drive, struct geometry *geometry, int sector, int nsec, int segment) argument
126 get_cdinfo(int drive, struct geometry *geometry) argument
184 get_diskinfo(int drive, struct geometry *geometry) argument
[all...]
H A Dshared.h585 extern struct geometry *disks;
637 /* The information for a disk geometry. The CHS information is only for
640 struct geometry struct
663 extern struct geometry buf_geom;
808 int get_diskinfo (int drive, struct geometry *geometry);
809 int biosdisk (int subfunc, int drive, struct geometry *geometry,
H A Dcommon.c260 struct geometry geom;
264 /* Get the geometry. This ensures that the drive is present. */
325 struct geometry geom;
327 /* Get the geometry. */
/external/jmonkeyengine/engine/src/core/com/jme3/collision/
H A DCollisionResult.java49 private Geometry geometry; field in class:CollisionResult
55 public CollisionResult(Geometry geometry, Vector3f contactPoint, float distance, int triangleIndex) { argument
56 this.geometry = geometry;
71 this.geometry = geom;
94 Mesh m = geometry.getMesh();
131 return geometry;
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/meshes/
H A DMeshContext.java86 * @param geometry
91 public void addUVCoordinates(Geometry geometry, VertexBuffer vertexBuffer) { argument
92 uvCoordinates.put(geometry, vertexBuffer);
98 * @param geometry
102 public VertexBuffer getUVCoordinates(Geometry geometry) { argument
103 return uvCoordinates.get(geometry);
H A DMeshHelper.java103 for (Geometry geometry : geometries) {
104 copiedGeometries.add(geometry.clone());
341 Geometry geometry = new Geometry(name + (geometries.size() + 1), mesh);
370 geometry.setMaterial(material);
372 geometry.setQueueBucket(Bucket.Transparent);
375 geometry.setMaterial(blenderContext.getDefaultMaterial());
378 geometry.setUserData("properties", properties);
380 geometries.add(geometry);
407 for (Geometry geometry : entry.getValue()) {
408 meshContext.addUVCoordinates(geometry, coord
[all...]
/external/grub/lib/
H A Ddevice.h36 extern void get_drive_geometry (struct geometry *geom, char **map, int drive);
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/util/
H A DDebugShapeFactory.java76 Geometry geometry = createDebugShape(ccollisionShape);
79 geometry.setLocalTranslation(childCollisionShape.location);
85 tempRot.set(geometry.getLocalRotation());
87 geometry.setLocalRotation(tempRot);
91 node.attachChild(geometry);
/external/jmonkeyengine/engine/src/test/jme3test/bullet/
H A DTestCollisionShapeFactory.java88 //test single geometry too
110 Geometry geometry = boxes[i];
111 geometry.setLocalTranslation((float) Math.random() * 10 -10, (float) Math.random() * 10 -10, (float) Math.random() * 10 -10);
112 geometry.setLocalRotation(new Quaternion().fromAngles((float) Math.random() * FastMath.PI, (float) Math.random() * FastMath.PI, (float) Math.random() * FastMath.PI));
113 geometry.setLocalScale((float) Math.random() * 10 -10, (float) Math.random() * 10 -10, (float) Math.random() * 10 -10);
114 geometry.setMaterial(mat);
115 node.attachChild(geometry);
/external/chromium_org/webkit/renderer/compositor_bindings/
H A Dweb_scrollbar_layer_impl.h27 blink::WebScrollbarThemeGeometry* geometry);
H A Dweb_scrollbar_layer_impl.cc31 blink::WebScrollbarThemeGeometry* geometry)
36 make_scoped_ptr(geometry))).Pass(), 0))) {}
28 WebScrollbarLayerImpl( blink::WebScrollbar* scrollbar, blink::WebScrollbarThemePainter painter, blink::WebScrollbarThemeGeometry* geometry) argument
H A Dweb_compositor_support_impl.cc82 WebScrollbarThemeGeometry* geometry) {
83 return new WebScrollbarLayerImpl(scrollbar, painter, geometry);
79 createScrollbarLayer( WebScrollbar* scrollbar, WebScrollbarThemePainter painter, WebScrollbarThemeGeometry* geometry) argument
H A Dscrollbar_impl.cc18 scoped_ptr<blink::WebScrollbarThemeGeometry> geometry)
21 geometry_(geometry.Pass()) {}
15 ScrollbarImpl( scoped_ptr<WebScrollbar> scrollbar, blink::WebScrollbarThemePainter painter, scoped_ptr<blink::WebScrollbarThemeGeometry> geometry) argument
H A Dscrollbar_impl.h24 scoped_ptr<blink::WebScrollbarThemeGeometry> geometry);
/external/jmonkeyengine/engine/src/core/com/jme3/scene/
H A DSimpleBatchNode.java44 batch.geometry.setTransformRefresh();
H A DBatchNode.java55 * 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();
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);
190 batch.geometry.removeFromParent();
200 list.add(batches.get(material).geometry);
643 Geometry geometry; field in class:BatchNode.Batch
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/mappy/
H A Dpopup.js19 var latlng = json.results[0].geometry.location;
/external/chromium_org/third_party/skia/include/core/
H A DSkDeviceProperties.h33 /** The layout of the pixel specifies its subpixel geometry.
99 static SkDeviceProperties Make(Geometry geometry, SkScalar gamma) { argument
100 SkDeviceProperties ret = { geometry, gamma };
/external/skia/include/core/
H A DSkDeviceProperties.h33 /** The layout of the pixel specifies its subpixel geometry.
99 static SkDeviceProperties Make(Geometry geometry, SkScalar gamma) { argument
100 SkDeviceProperties ret = { geometry, gamma };
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/modifiers/
H A DMirrorModifier.java154 Geometry geometry = new Geometry(null, clone);
155 geometry.setMaterial(((Geometry) spatial).getMaterial());
156 geometriesToAdd.add(geometry);
161 for (Geometry geometry : geometriesToAdd) {
162 node.attachChild(geometry);
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/util/
H A DDebugShapeFactory.java85 Geometry geometry = createDebugShape(ccollisionShape);
88 geometry.setLocalTranslation(childCollisionShape.location);
95 tempRot.set(geometry.getLocalRotation());
97 geometry.setLocalRotation(tempRot);
101 node.attachChild(geometry);
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
H A DUVCoordinatesGenerator.java187 for (Geometry geometry : geometries) {
188 mesh = geometry.getMesh();
204 for (Geometry geometry : geometries) {
205 BoundingBox bb = UVCoordinatesGenerator.getBoundingBox(geometry.getMesh());
243 for (Geometry geometry : geometries) {
244 BoundingSphere bs = UVCoordinatesGenerator.getBoundingSphere(geometry.getMesh());
315 for (Geometry geometry : geometries) {
316 BoundingTube bt = UVCoordinatesGenerator.getBoundingTube(geometry.getMesh());
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderBoxModelObject.cpp44 #include "platform/geometry/TransformState.h"
732 BackgroundImageGeometry geometry; local
733 calculateBackgroundImageGeometry(bgLayer, scrolledPaintRect, geometry, backgroundObject);
734 geometry.clip(paintInfo.rect);
735 if (!geometry.destRect().isEmpty()) {
738 RefPtr<Image> image = bgImage->image(clientForBackgroundImage, geometry.tileSize());
739 bool useLowQualityScaling = shouldPaintAtLowQuality(context, image.get(), bgLayer, geometry.tileSize());
742 context->drawTiledImage(image.get(), geometry.destRect(), geometry.relativePhase(), geometry
999 calculateBackgroundImageGeometry(const FillLayer* fillLayer, const LayoutRect& paintRect, BackgroundImageGeometry& geometry, RenderObject* backgroundObject) argument
[all...]
/external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
H A DTextureAtlas.java78 * to the atlas. You can access the information for each texture or geometry texture via helper methods.</p>
80 * <p>The TextureAtlas also allows you to change the texture coordinates of a mesh or geometry
93 * Create one geometry out of several geometries that are loaded from a j3o file:
99 * Create a texture atlas and change the texture coordinates of one geometry:
111 * //change one geometry to use atlas, apply texture coordinates and replace material.
140 * @param geometry
143 public boolean addGeometry(Geometry geometry) { argument
144 Texture diffuse = getMaterialTexture(geometry, "DiffuseMap");
145 Texture normal = getMaterialTexture(geometry, "NormalMap");
146 Texture specular = getMaterialTexture(geometry, "SpecularMa
543 getMaterialTexture(Geometry geometry, String mapName) argument
[all...]
/external/grub/grub/
H A Dasmstub.c84 struct geometry *disks = 0;
755 descriptor, not the actual geometry. */
757 get_diskinfo (int drive, struct geometry *geometry) argument
822 *geometry = disks[drive];
928 biosdisk (int subfunc, int drive, struct geometry *geometry, argument
932 int fd = geometry->flags;
934 /* Get the file pointer from the geometry, and make sure it matches. */

Completed in 724 milliseconds

123