Searched refs:coords (Results 26 - 50 of 52) sorted by relevance

123

/external/skia/src/gpu/
H A DGrTesselatedPathRenderer.cpp97 virtual int combine(GLdouble coords[3], int vertexIndices[4],
111 static void combineCB(GLdouble coords[3], void* vertexData[4], argument
119 int outIndex = tess->combine(coords, vertexIndex, weight);
145 virtual int combine(GLdouble coords[3], int vertexIndices[4], argument
148 GrPoint p = GrPoint::Make(static_cast<float>(coords[0]),
149 static_cast<float>(coords[1]));
245 virtual int combine(GLdouble coords[3], int vertexIndices[4], argument
248 *fVertices.append() = GrPoint::Make(static_cast<float>(coords[0]),
249 static_cast<float>(coords[1]));
H A DGrDrawTarget.cpp22 * time. When the number of stages or tex coords is bumped or the way bits
214 // edge pts are after the pos, tex coords, and color
1062 GrPoint* coords = GrTCast<GrPoint*>(GrTCast<intptr_t>(vertices) +
1064 coords->setRectFan(srcRects[i]->fLeft, srcRects[i]->fTop,
1068 srcMatrices[i]->mapPointsWithStride(coords, vsize, 4);
/external/freetype/src/truetype/
H A Dttgxvar.c729 mmvar->namedstyle[i].coords = next_coords;
776 ns->coords[j] = FT_GET_ULONG(); /* A Fixed */
800 mmvar->namedstyle[n].coords = next_coords;
849 /* coords :: An array of num_coords, each between [-1,1]. */
857 FT_Fixed* coords )
892 if ( coords[i] < -0x00010000L || coords[i] > 0x00010000L )
918 if ( blend->normalizedcoords[i] != coords[i] )
925 /* If we don't change the blend coords then we don't need to do */
933 coords,
[all...]
H A Dttgload.c238 FT_Vector* coords,
247 coords[k].x += delta_x;
251 coords[k].y += delta_y;
237 translate_array( FT_UInt n, FT_Vector* coords, FT_Pos delta_x, FT_Pos delta_y ) argument
/external/webkit/Source/WebCore/html/
H A DHTMLAnchorElement.idl26 attribute [Reflect] DOMString coords;
/external/replicaisland/src/com/replica/replicaisland/
H A DGLErrorLogger.java1083 public void glDrawTexfvOES(FloatBuffer coords) { argument
1084 ((GL11Ext)mGL).glDrawTexfvOES(coords);
1088 public void glDrawTexfvOES(float[] coords, int offset) { argument
1089 ((GL11Ext)mGL).glDrawTexfvOES(coords, offset);
1098 public void glDrawTexivOES(IntBuffer coords) { argument
1099 ((GL11Ext)mGL).glDrawTexivOES(coords);
1105 public void glDrawTexivOES(int[] coords, int offset) { argument
1106 ((GL11Ext)mGL).glDrawTexivOES(coords, offset);
1119 public void glDrawTexsvOES(ShortBuffer coords) { argument
1120 ((GL11Ext)mGL).glDrawTexsvOES(coords);
1126 glDrawTexsvOES(short[] coords, int offset) argument
1138 glDrawTexxvOES(IntBuffer coords) argument
1145 glDrawTexxvOES(int[] coords, int offset) argument
[all...]
/external/skia/third_party/glu/libtess/
H A Dmesh.h128 GLdouble coords[3]; /* vertex location in 3D */ member in struct:GLUvertex
H A DREADME49 void gluTessVertex( GLUtesselator *tess, GLUcoord coords[3], void *data );
59 "coords" give the coordinates of the vertex in 3-space. For useful
157 void combine( GLUcoord coords[3], void *data[4], /* GLU_TESS_COMBINE */
166 "coords" gives the location of the new vertex.
175 void myCombine( GLUcoord coords[3], VERTEX *d[4],
180 new->x = coords[0];
181 new->y = coords[1];
182 new->z = coords[2];
/external/freetype/src/psaux/
H A Dpsobjs.h127 FT_Short* coords );
H A Dpsobjs.c771 /* NB: `coords' can be NULL if we just want to skip the */
778 FT_Short* coords )
821 if ( coords != NULL && count >= max_coords )
824 /* call PS_Conv_ToFixed() even if coords == NULL */
826 *( coords != NULL ? &coords[count] : &dummy ) =
902 /* call PS_Conv_ToFixed() even if coords == NULL */
1378 FT_Short* coords )
1382 max_coords, coords );
/external/webkit/Source/WebCore/platform/graphics/gpu/
H A DLoopBlinnMathUtils.cpp463 void flattenDoubleCubicYExtrema(FloatPoint coords[7])
465 coords[2].setY(coords[3].y());
466 coords[4].setY(coords[3].y());
H A DLoopBlinnPathProcessor.cpp1147 static void combineCallback(GLdouble coords[3], void* vertexData[4], argument
1156 outVertex[0] = coords[0];
1157 outVertex[1] = coords[1];
1158 outVertex[2] = coords[2];
/external/skia/src/core/
H A DSkGeometry.cpp307 static inline void flatten_double_quad_extrema(SkScalar coords[14]) argument
309 coords[2] = coords[6] = coords[4];
685 static void flatten_double_cubic_extrema(SkScalar coords[14])
687 coords[4] = coords[8] = coords[6];
/external/freetype/src/pshinter/
H A Dpshrec.c1132 FT_Fixed* coords )
1137 stems[0] = FIXED_TO_INT( coords[0] );
1138 stems[1] = FIXED_TO_INT( coords[1] );
1177 FT_Fixed* coords )
1194 y += coords[n];
/external/webkit/Source/WebCore/accessibility/gtk/
H A DAccessibilityObjectWrapperAtk.cpp1543 static IntRect textExtents(AtkText* text, gint startOffset, gint length, AtkCoordType coords) argument
1555 switch(coords) {
1568 static void webkit_accessible_text_get_character_extents(AtkText* text, gint offset, gint* x, gint* y, gint* width, gint* height, AtkCoordType coords) argument
1570 IntRect extents = textExtents(text, offset, 1, coords);
1577 static void webkit_accessible_text_get_range_extents(AtkText* text, gint startOffset, gint endOffset, AtkCoordType coords, AtkTextRectangle* rect) argument
1579 IntRect extents = textExtents(text, startOffset, endOffset - startOffset, coords);
1591 static gint webkit_accessible_text_get_offset_at_point(AtkText* text, gint x, gint y, AtkCoordType coords) argument
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DGLES2Canvas.cpp601 static void combineData(GLdouble coords[3], void* vertexData[4], argument
606 polygonData->m_vertices->append(FloatPoint(static_cast<float>(coords[0]), static_cast<float>(coords[1])));
/external/freetype/include/freetype/internal/
H A Dpsaux.h370 FT_Short* coords );
/external/qemu/distrib/sdl-1.2.15/include/
H A DSDL_opengl.h6051 typedef void (APIENTRYP PFNGLVERTEXSTREAM1SVATIPROC) (GLenum stream, const GLshort *coords);
6053 typedef void (APIENTRYP PFNGLVERTEXSTREAM1IVATIPROC) (GLenum stream, const GLint *coords);
6055 typedef void (APIENTRYP PFNGLVERTEXSTREAM1FVATIPROC) (GLenum stream, const GLfloat *coords);
6057 typedef void (APIENTRYP PFNGLVERTEXSTREAM1DVATIPROC) (GLenum stream, const GLdouble *coords);
6059 typedef void (APIENTRYP PFNGLVERTEXSTREAM2SVATIPROC) (GLenum stream, const GLshort *coords);
6061 typedef void (APIENTRYP PFNGLVERTEXSTREAM2IVATIPROC) (GLenum stream, const GLint *coords);
6063 typedef void (APIENTRYP PFNGLVERTEXSTREAM2FVATIPROC) (GLenum stream, const GLfloat *coords);
6065 typedef void (APIENTRYP PFNGLVERTEXSTREAM2DVATIPROC) (GLenum stream, const GLdouble *coords);
6067 typedef void (APIENTRYP PFNGLVERTEXSTREAM3SVATIPROC) (GLenum stream, const GLshort *coords);
6069 typedef void (APIENTRYP PFNGLVERTEXSTREAM3IVATIPROC) (GLenum stream, const GLint *coords);
[all...]
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/meshes/
H A DMeshHelper.java403 VertexBuffer coords = UVCoordinatesGenerator.generateUVCoordinates(materialContext.getUvCoordinatesType(),
408 meshContext.addUVCoordinates(geometry, coords);
/external/webkit/Source/WebKit/win/
H A DWebView.cpp1261 POINT coords = { GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam) }; local
1262 if (coords.x == -1 || coords.y == -1) {
1274 if (!::ScreenToClient(m_viewWindow, &coords))
1278 lParam = MAKELPARAM(coords.x, coords.y);
1282 IntPoint documentPoint(m_page->mainFrame()->view()->windowToContents(coords));
/external/quake/quake/src/QW/scitech/include/
H A Dmgraph.h1316 void ASMAPI MGL_getArcCoords(arc_coords_t *coords);
1416 void MGLAPI MGL_rgnGetArcCoords(arc_coords_t *coords);
/external/quake/quake/src/WinQuake/scitech/INCLUDE/
H A DMGRAPH.H1316 void ASMAPI MGL_getArcCoords(arc_coords_t *coords);
1416 void MGLAPI MGL_rgnGetArcCoords(arc_coords_t *coords);
/external/webkit/Source/WebCore/bindings/objc/
H A DPublicDOMInterfaces.h338 @property(copy) NSString *coords; variable
375 @property(copy) NSString *coords; variable
/external/webkit/Source/WebCore/css/
H A DCSSParser.cpp1051 Vector<int> coords; local
1054 coords.append(int(value->fValue));
1058 int nrcoords = coords.size();
1062 hotSpot = IntPoint(coords[0], coords[1]);
/external/quake/quake/src/QW/dxsdk/sdk/inc/
H A Dd3drmobj.h395 STDMETHOD(GetVertices)(THIS_ DWORD *vertex_count, D3DVECTOR *coords, D3DVECTOR *normals);

Completed in 579 milliseconds

123