HomeSort by relevance Sort by last modified time
    Searched refs:vtx (Results 76 - 100 of 123) sorted by null

1 2 34 5

  /external/mesa3d/src/gallium/drivers/r600/sb/
sb_bc_dump.cpp 472 unsigned vtx = n.bc.op_ptr->flags & FF_VTX; local
473 unsigned num_src_comp = gds ? 3 : vtx ? ctx.is_cayman() ? 2 : 1 : 4;
478 if (vtx && n.bc.offset[0]) {
487 } else if (vtx) {
  /external/opencv/cvaux/src/
cvlcm.cpp 601 pLCMEdge->vtx[0] = pLCMEdge->vtx[1] = NULL;
620 LCMEdge->vtx[i] = (CvGraphVtx*)LCMNode;
625 LCMEdge_prev->next[(LCMEdge_prev->vtx[0] != (CvGraphVtx*)LCMNode)] = (CvGraphEdge*)LCMEdge;
  /external/mesa3d/src/gallium/drivers/freedreno/a5xx/
fd5_draw.c 122 .vtx = &ctx->vtx,
fd5_emit.c 356 const struct fd_vertex_state *vtx = emit->vtx; local
363 struct pipe_vertex_element *elem = &vtx->vtx->pipe[i];
365 &vtx->vertexbuf.vb[elem->vertex_buffer_index];
  /frameworks/native/opengl/tests/gl_perf/
fill_common.cpp 159 static const float vtx[] = { local
185 glVertexAttribPointer(A_POS, 2, GL_FLOAT, false, 8, vtx);
  /frameworks/rs/
rsMesh.cpp 267 RsAllocation * vtx, size_t vtxCount,
275 sm->setVertexBuffer((Allocation*)vtx[i], i);
  /external/deqp/modules/gles3/functional/
es3fFragmentOutputTests.cpp 171 std::ostringstream vtx; local
174 vtx << "#version 300 es\n"
193 vtx << "in " << interpPrec << " " << typeName << " in" << outNdx << "_" << elemNdx << ";\n"
201 vtx << "in " << interpPrec << " " << typeName << " in" << outNdx << ";\n"
208 vtx << "\nvoid main()\n{\n";
211 vtx << " gl_Position = a_position;\n";
223 vtx << "\tvar" << outNdx << "_" << elemNdx << " = in" << outNdx << "_" << elemNdx << ";\n";
229 vtx << "\tvar" << outNdx << " = in" << outNdx << ";\n";
234 vtx << "}\n";
237 return new glu::ShaderProgram(context, glu::makeVtxFragSources(vtx.str(), frag.str()))
    [all...]
es3fShaderMatrixTests.cpp 1403 std::ostringstream vtx; local
    [all...]
es3fTransformFeedbackTests.cpp 327 std::ostringstream vtx; local
331 vtx << "#version 300 es\n"
339 vtx << "in highp float a_pointSize;\n";
352 vtx << "in " << glu::declare(attribType, attribName.c_str()) << ";\n";
360 std::ostringstream& str = ndx ? frag : vtx;
374 vtx << "\nvoid main (void)\n{\n"
380 vtx << "\tgl_PointSize = a_pointSize;\n";
382 vtx << "\tgl_PointSize = 1.0;\n";
398 vtx << "\t" << name << vecIter << " = " << attribName << ";\n";
415 vtx << "}\n"
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_state_init.c 656 ALLOC_STATE( vtx, always, VTX_STATE_SIZE, "VTX/vertex", 0 );
    [all...]
r200_context.h 486 struct radeon_state_atom vtx; member in struct:r200_hw_state
r200_texstate.c 948 R200_STATECHANGE( rmesa, vtx );
949 rmesa->hw.vtx.cmd[VTX_TCL_OUTPUT_VTXFMT_1] &= ~(7 << (unit * 3));
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderrender/
vktShaderRenderMatrixTests.cpp 1665 std::ostringstream vtx; local
    [all...]
  /external/mesa3d/src/gallium/drivers/freedreno/a3xx/
fd3_emit.c 365 const struct fd_vertex_state *vtx = emit->vtx; local
393 } else if (i < vtx->vtx->num_elements) {
401 struct pipe_vertex_element *elem = &vtx->vtx->pipe[i];
403 &vtx->vertexbuf.vb[elem->vertex_buffer_index];
    [all...]
  /external/opencv/cxcore/include/
cxcore.h 1241 CvGraphVtx* vtx; \/* current graph vertex (or current edge origin) *\/ member in struct:CvGraphScanner
    [all...]
cxtypes.h     [all...]
  /external/mesa3d/src/gallium/drivers/freedreno/a2xx/
instr-a2xx.h 378 instr_fetch_vtx_t vtx; member in union:PACKED
  /external/mesa3d/src/gallium/drivers/vc4/
vc4_blit.c 168 util_blitter_save_vertex_elements(vc4->blitter, vc4->vtx);
vc4_context.h 366 struct vc4_vertex_stateobj *vtx; member in struct:vc4_context
  /external/mesa3d/src/gallium/drivers/freedreno/
freedreno_resource.c 70 for (i = 0; i < ctx->vtx.vertexbuf.count && !(ctx->dirty & FD_DIRTY_VTXBUF); i++) {
71 if (ctx->vtx.vertexbuf.vb[i].buffer == prsc)
1066 util_blitter_save_vertex_buffer_slot(ctx->blitter, ctx->vtx.vertexbuf.vb);
1067 util_blitter_save_vertex_elements(ctx->blitter, ctx->vtx.vtx);
    [all...]
  /external/opencv/cv/src/
cvstereogc.cpp 134 static int64 icvGCMaxFlow( GCVtx* vtx, int nvtx, GCEdge* edges, GCVtx**& _orphans, int& _maxOrphans )
148 GCVtx* v = vtx + i;
612 static inline int icvAddTWeights( GCVtx* vtx, int sourceWeight, int sinkWeight )
614 int w = vtx->weight;
619 vtx->weight = (short)(sourceWeight - sinkWeight);
  /external/deqp/modules/gles2/functional/
es2fShaderOperatorTests.cpp 428 ostringstream vtx; local
430 ostringstream& op = isVertexCase ? vtx : frag;
443 vtx << "attribute highp vec4 a_position;\n";
445 vtx << "attribute " << inputPrecision[i] << " vec4 a_in" << i << ";\n";
449 vtx << "varying mediump vec4 v_color;\n";
456 vtx << "varying " << inputPrecision[i] << " vec4 v_in" << i << ";\n";
461 vtx << "\n";
462 vtx << "void main()\n";
463 vtx << "{\n";
464 vtx << " gl_Position = a_position;\n"
    [all...]
  /frameworks/rs/driver/
rsdGL.cpp 546 float vtx[] = {x1,y1,z1, x2,y2,z2, x3,y3,z3, x4,y4,z4};
551 attribs[0].set(GL_FLOAT, 3, 12, false, (size_t)vtx, "ATTRIB_position");
  /external/deqp/modules/gles31/functional/
es31fTessellationTests.cpp     [all...]
  /external/opencv/cxcore/src/
cxdrawing.cpp 944 CvSeq vtx;
952 v, count, &vtx, &block ));
954 CV_CALL( icvCollectPolyEdges( img, &vtx, edges, color, line_type, XY_SHIFT ));
    [all...]

Completed in 1026 milliseconds

1 2 34 5