Searched defs:geometry (Results 1 - 18 of 18) sorted by relevance

/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DQtFallbackWebPopup.h53 QRect geometry() const { return m_geometry; } function in class:WebCore::QtFallbackWebPopup
/external/webkit/Source/WebCore/platform/gtk/
H A DPlatformScreenGtk.cpp105 GdkRectangle geometry; local
106 gdk_screen_get_monitor_geometry(screen, monitor, &geometry);
108 return FloatRect(geometry.x, geometry.y, geometry.width, geometry.height);
/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);
/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/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,
/external/jmonkeyengine/engine/src/core/com/jme3/scene/
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/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/webkit/Source/WebCore/platform/graphics/android/rendering/
H A DDrawQuadData.h51 const SkRect* geometry = 0,
57 , m_geometry(geometry)
80 const SkRect* geometry() const { return m_geometry; } function in class:WebCore::DrawQuadData
113 const SkRect* geometry = 0,
116 : DrawQuadData(type, drawMatrix, geometry, opacity, forceBlending)
143 const SkRect* geometry = 0,
148 : DrawQuadData(type, drawMatrix, geometry, opacity, forceBlending, fillPortion)
H A DShaderProgram.cpp743 // Calculate the matrix given the geometry.
751 const SkRect* geometry = data->geometry(); local
760 // Note the geometry contains the tile zoom scale, so visually we will see
765 modifiedDrawMatrix.translate(geometry->fLeft + geometry->width() * fillPortion.x(),
766 geometry->fTop + geometry->height() * fillPortion.y());
767 modifiedDrawMatrix.scale3d(geometry->width() * fillPortion.width(),
768 geometry
817 drawVideoLayerQuad(const TransformationMatrix& drawMatrix, float* textureMatrix, SkRect& geometry, int textureId) argument
[all...]
/external/chromium/chrome/browser/renderer_host/
H A Drender_widget_host_view_gtk.cc941 GdkRectangle geometry; local
942 gdk_screen_get_monitor_geometry(screen, monitor, &geometry);
943 drag_monitor_size.SetSize(geometry.width, geometry.height);
/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. */
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebelement.cpp549 Returns the geometry of this element, relative to its containing frame.
553 QRect QWebElement::geometry() const function in class:QWebElement
563 \sa geometry()
H A Dqwebframe.cpp1140 Returns the geometry for the scrollbar with orientation \a orientation.
1333 Return the geometry of the frame relative to it's parent frame.
1335 QRect QWebFrame::geometry() const function in class:QWebFrame
/external/webkit/Tools/EWebLauncher/
H A Dmain.c118 ('g', "geometry", "geometry to use in x:y:w:h form.", "X:Y:W:H",
164 static int browserCreate(const char *url, const char *theme, const char *userAgent, Eina_Rectangle geometry, const char *engine, const char *backingStore, unsigned char isFlattening, unsigned char isFullscreen, const char *databasePath);
588 Eina_Rectangle geometry = {0, 0, 0, 0}; local
590 app->theme, app->userAgent, geometry, app-> backingStore,
655 browserCreate(const char *url, const char *theme, const char *userAgent, Eina_Rectangle geometry, const char *engine, const char *backingStore, unsigned char isFlattening, unsigned char isFullscreen, const char *databasePath) argument
657 if ((geometry.w <= 0) && (geometry.h <= 0)) {
658 geometry.w = DEFAULT_WIDTH;
659 geometry
816 Eina_Rectangle geometry = {0, 0, 0, 0}; local
[all...]
/external/webkit/Source/WebKit/efl/ewk/
H A Dewk_tiled_backing_store.c59 } geometry; member in struct:_Ewk_Tiled_Backing_Store_Item
204 it->geometry.x = x;
205 it->geometry.y = y;
213 it->geometry.w = w;
214 it->geometry.h = h;
227 evas_object_move(it->tile->image, it->geometry.x, it->geometry.y);
228 evas_object_resize(it->tile->image, it->geometry.w, it->geometry.h);
230 (it->tile->image, 0, 0, it->geometry
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.pde.core_3.6.1.v20100902_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 460 milliseconds