HomeSort by relevance Sort by last modified time
    Searched defs:verts (Results 1 - 25 of 62) sorted by null

1 2 3

  /external/mesa3d/src/gallium/auxiliary/postprocess/
pp_program.c 63 static const float verts[4][2][4] = { local
83 PIPE_USAGE_STATIC, sizeof(verts));
84 pipe_buffer_write(p->pipe, p->vbuf, 0, sizeof(verts), verts);
filters.h 41 unsigned int verts; /* How many are vertex shaders */ member in struct:pp_filter_t
49 /* name inner shaders verts init run */
postprocess.h 60 unsigned int *verts; member in struct:pp_queue_t
  /external/mesa3d/src/mesa/swrast_setup/
ss_context.h 39 SWvertex *verts; member in struct:__anon17141
ss_triangle.c 118 SWvertex *verts = swsetup->verts; local
119 SWvertex *v0 = &verts[e0];
120 SWvertex *v1 = &verts[e1];
121 SWvertex *v2 = &verts[e2];
216 SWvertex *verts = SWSETUP_CONTEXT(ctx)->verts; local
222 _swrast_Point( ctx, &verts[VB->Elts[i]] );
227 _swrast_Point( ctx, &verts[i] );
233 SWvertex *verts = SWSETUP_CONTEXT(ctx)->verts local
    [all...]
ss_tritmp.h 37 SWvertex *verts = SWSETUP_CONTEXT(ctx)->verts; local
47 v[0] = &verts[e0];
48 v[1] = &verts[e1];
49 v[2] = &verts[e2];
  /cts/tests/tests/graphics/src/android/graphics/cts/
Canvas_VertexModeTest.java 41 float[] verts = new float[10]; local
51 verts,
64 verts,
77 verts,
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_util.c 61 /* This is only used for temporary verts.
125 if (draw->pipeline.verts)
128 char *verts = draw->pipeline.verts; local
132 ((struct vertex_header *)verts)->vertex_id = UNDEFINED_VERTEX_ID;
133 verts += stride;
draw_pipe.c 178 verts + stride * (i0), \
179 verts + stride * (i1), \
180 verts + stride * (i2) ); \
187 verts + stride * (i0), \
188 verts + stride * (i1) ); \
193 do_point( draw, verts + stride * (i0) ); \
230 draw->pipeline.verts = (char *)vert_info->verts;
262 vert_info->verts,
268 draw->pipeline.verts = NULL
321 char *verts = ((char*)vert_info->verts) + local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_blit.c 407 float verts[12]; local
415 verts[0] = dst_x_offset;
416 verts[1] = dst_y_offset + reg_height;
417 verts[2] = texcoords[0];
418 verts[3] = texcoords[3];
420 verts[4] = dst_x_offset + reg_width;
421 verts[5] = dst_y_offset + reg_height;
422 verts[6] = texcoords[1];
423 verts[7] = texcoords[3];
425 verts[8] = dst_x_offset + reg_width
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_blit.c 282 float verts[12]; local
290 verts[0] = dst_x_offset;
291 verts[1] = dst_y_offset + reg_height;
292 verts[2] = texcoords[0];
293 verts[3] = texcoords[3];
295 verts[4] = dst_x_offset + reg_width;
296 verts[5] = dst_y_offset + reg_height;
297 verts[6] = texcoords[1];
298 verts[7] = texcoords[3];
300 verts[8] = dst_x_offset + reg_width
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/renderers/
Wedge.java 32 private final static int VERTS = 6;
48 ByteBuffer vbb = ByteBuffer.allocateDirect(VERTS * 6 * 4);
52 ByteBuffer tbb = ByteBuffer.allocateDirect(VERTS * 2 * 4);
56 ByteBuffer ibb = ByteBuffer.allocateDirect(VERTS * 8 * 2);
65 float[] verts = { local
74 coords = verts.clone();
76 float[] verts = { local
85 coords = verts.clone();
88 for (int i = 0; i < VERTS; i++) {
94 for (int i = 0; i < VERTS; i++)
    [all...]
  /external/mesa3d/src/mesa/tnl_dd/
t_dd_vb.c 52 GLubyte *verts = GET_VERTEX_STORE(); local
54 GLuint *dst = (GLuint *)(verts + (edst * size));
55 GLuint *src = (GLuint *)(verts + (esrc * size));
63 GLubyte *verts = GET_VERTEX_STORE(); local
65 GLuint *dst = (GLuint *)(verts + (edst * size));
66 GLuint *src = (GLuint *)(verts + (esrc * size));
73 GLubyte *verts = GET_VERTEX_STORE(); local
75 GLuint *dst = (GLuint *)(verts + (edst * size));
76 GLuint *src = (GLuint *)(verts + (esrc * size));
  /external/skia/gm/
convexpolyeffect.cpp 62 SkPoint* verts = reinterpret_cast<SkPoint*>(helper.init(batchTarget, vertexStride, 1)); variable
63 if (!verts) {
70 fGeometry.fBounds.toQuad(verts);
beziereffects.cpp 76 Vertex* verts = reinterpret_cast<Vertex*>(helper.init(batchTarget, vertexStride, 1)); variable
77 if (!verts) {
81 verts[0].fPosition.setRectFan(fGeometry.fBounds.fLeft, fGeometry.fBounds.fTop,
85 verts[v].fKLM[0] = eval_line(verts[v].fPosition, fKlmEqs + 0, fSign);
86 verts[v].fKLM[1] = eval_line(verts[v].fPosition, fKlmEqs + 3, fSign);
87 verts[v].fKLM[2] = eval_line(verts[v].fPosition, fKlmEqs + 6, 1.f);
471 Vertex* verts = reinterpret_cast<Vertex*>(helper.init(batchTarget, vertexStride, 1)) variable
    [all...]
  /external/skia/src/gpu/
GrGpu.cpp 298 const GrNonInstancedVertices* verts = iter.init(vertices); local
300 this->onDraw(args, *verts);
301 } while ((verts = iter.next()));
GrAARectRenderer.cpp 214 intptr_t verts = reinterpret_cast<intptr_t>(vertices) + offset; local
216 SkPoint* fan0Pos = reinterpret_cast<SkPoint*>(verts);
217 SkPoint* fan1Pos = reinterpret_cast<SkPoint*>(verts + 4 * vertexStride);
263 // Make verts point to vertex color and then set all the color and coverage vertex attrs
265 verts += sizeof(SkPoint);
268 *reinterpret_cast<GrColor*>(verts + i * vertexStride) = 0;
270 *reinterpret_cast<GrColor*>(verts + i * vertexStride) = color;
271 *reinterpret_cast<float*>(verts + i * vertexStride + sizeof(GrColor)) = 0;
283 verts += 4 * vertexStride;
290 *reinterpret_cast<GrColor*>(verts + i * vertexStride) = scaledColor
670 intptr_t verts = reinterpret_cast<intptr_t>(vertices) + offset; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_draw.c 395 unsigned verts = verts_per_prim(prim->mode); local
397 (brw->sol.svbi_0_max_index - brw->sol.svbi_0_starting_index) / verts;
399 brw->sol.svbi_0_starting_index += verts * primitives_written;
  /external/skia/bench/
GameBench.cpp 127 SkPoint verts[4] = { // for drawVertices path variable
204 4, verts, uvs, NULL, NULL,
  /external/skia/src/utils/
SkNinePatch.cpp 74 static void fillRow(SkPoint verts[], SkPoint texs[],
79 verts->set(vx, vy); verts++;
89 verts->set(vx, vy); verts++;
92 verts->set(bounds.fRight, vy); verts++;
188 // number of celss * 2 (tris per cell) * 3 (verts per tri)
190 // allocate 2 times, one for verts, one for texs, plus indices
193 SkPoint* verts = (SkPoint*)storage.get() local
    [all...]
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/scene/plugins/
OBJLoader.java 67 protected final ArrayList<Vector3f> verts = new ArrayList<Vector3f>(); field in class:OBJLoader
163 verts.clear();
260 vx.v = verts.get(v - 1);
357 verts.add(readVector3());
  /external/skia/samplecode/
SamplePatch.cpp 154 SkPoint* verts = vertStorage.get(); local
157 memcpy(verts, edge0, (nu + 1) * sizeof(SkPoint));
159 SkPoint* r = verts;
169 SkPoint* last = verts + nv * (nu + 1);
174 // canvas->drawPoints(verts, vertCount, paint);
185 r = verts;
  /external/skia/src/core/
SkPicturePlayback.cpp 374 const SkPoint* verts = (const SkPoint*)reader->skip(vCount * sizeof(SkPoint)); local
396 canvas->drawVertices(vmode, vCount, verts, texs, colors, xfer, indices, iCount, paint);
  /external/drm_hwcomposer/
glworker.cpp 423 const GLfloat verts[] = { local
494 glBufferData(GL_ARRAY_BUFFER, sizeof(verts), verts, GL_STATIC_DRAW);
  /external/jmonkeyengine/engine/src/core/com/jme3/util/
BufferUtils.java 343 Vector3f[] verts = new Vector3f[buff.limit() / 3]; local
344 for (int x = 0; x < verts.length; x++) {
346 verts[x] = v;
348 return verts;
548 Vector2f[] verts = new Vector2f[buff.limit() / 2]; local
549 for (int x = 0; x < verts.length; x++) {
551 verts[x] = v;
553 return verts;
    [all...]

Completed in 501 milliseconds

1 2 3