Searched refs:vertexAttrib (Results 1 - 7 of 7) sorted by relevance

/external/deqp/framework/referencerenderer/
H A DrrVertexAttrib.hpp128 bool isValidVertexAttrib (const VertexAttrib& vertexAttrib);
131 void readVertexAttrib (tcu::Vec4& dst, const VertexAttrib& vertexAttrib, const int instanceNdx, const int vertexNdx);
132 void readVertexAttrib (tcu::IVec4& dst, const VertexAttrib& vertexAttrib, const int instanceNdx, const int vertexNdx);
133 void readVertexAttrib (tcu::UVec4& dst, const VertexAttrib& vertexAttrib, const int instanceNdx, const int vertexNdx);
137 inline tcu::Vec4 readVertexAttribFloat (const VertexAttrib& vertexAttrib, const int instanceNdx, const int vertexNdx) argument
140 readVertexAttrib(v, vertexAttrib, instanceNdx, vertexNdx);
144 inline tcu::IVec4 readVertexAttribInt (const VertexAttrib& vertexAttrib, const int instanceNdx, const int vertexNdx) argument
147 readVertexAttrib(v, vertexAttrib, instanceNdx, vertexNdx);
151 inline tcu::UVec4 readVertexAttribUint (const VertexAttrib& vertexAttrib, const int instanceNdx, const int vertexNdx) argument
154 readVertexAttrib(v, vertexAttrib, instanceNd
[all...]
H A DrrVertexAttrib.cpp461 bool isValidVertexAttrib (const VertexAttrib& vertexAttrib) argument
464 if (!de::inBounds<int>(vertexAttrib.type, 0, VERTEXATTRIBTYPE_LAST) ||
465 !de::inRange(vertexAttrib.size, 0, 4) ||
466 vertexAttrib.instanceDivisor < 0)
470 if (!vertexAttrib.pointer && vertexAttrib.type != VERTEXATTRIBTYPE_DONT_CARE)
474 if ((vertexAttrib.type == VERTEXATTRIBTYPE_NONPURE_INT_2_10_10_10_REV ||
475 vertexAttrib.type == VERTEXATTRIBTYPE_NONPURE_UINT_2_10_10_10_REV ||
476 vertexAttrib.type == VERTEXATTRIBTYPE_NONPURE_UNORM_2_10_10_10_REV ||
477 vertexAttrib
488 readVertexAttrib(tcu::Vec4& dst, const VertexAttrib& vertexAttrib, const int instanceNdx, const int vertexNdx) argument
508 readVertexAttrib(tcu::IVec4& dst, const VertexAttrib& vertexAttrib, const int instanceNdx, const int vertexNdx) argument
528 readVertexAttrib(tcu::UVec4& dst, const VertexAttrib& vertexAttrib, const int instanceNdx, const int vertexNdx) argument
[all...]
/external/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGpuGL_program.cpp353 const GrVertexAttrib* vertexAttrib = optState->getVertexAttribs(); local
356 ++vertexAttribIndex, ++vertexAttrib) {
358 GrVertexAttribType attribType = vertexAttrib->fType;
367 vertexOffsetInBytes + vertexAttrib->fOffset));
/external/skia/src/gpu/gl/
H A DGrGpuGL_program.cpp351 const GrVertexAttrib* vertexAttrib = this->getDrawState().getVertexAttribs(); local
354 ++vertexAttribIndex, ++vertexAttrib) {
357 GrVertexAttribType attribType = vertexAttrib->fType;
366 vertexOffsetInBytes + vertexAttrib->fOffset));
/external/chromium_org/third_party/mesa/src/src/mesa/vbo/
H A Dvbo_exec_array.c407 struct gl_client_array *vertexAttrib = ctx->Array.ArrayObj->VertexAttrib; local
420 if (vertexAttrib[VERT_ATTRIB_FF(i)].Enabled)
421 inputs[i] = &vertexAttrib[VERT_ATTRIB_FF(i)];
450 && vertexAttrib[VERT_ATTRIB_GENERIC(i)].Enabled)
451 inputs[i] = &vertexAttrib[VERT_ATTRIB_GENERIC(i)];
452 else if (vertexAttrib[VERT_ATTRIB_FF(i)].Enabled)
453 inputs[i] = &vertexAttrib[VERT_ATTRIB_FF(i)];
477 if (vertexAttrib[VERT_ATTRIB_GENERIC0].Enabled)
478 inputs[0] = &vertexAttrib[VERT_ATTRIB_GENERIC0];
479 else if (vertexAttrib[VERT_ATTRIB_PO
[all...]
/external/mesa3d/src/mesa/vbo/
H A Dvbo_exec_array.c407 struct gl_client_array *vertexAttrib = ctx->Array.ArrayObj->VertexAttrib; local
420 if (vertexAttrib[VERT_ATTRIB_FF(i)].Enabled)
421 inputs[i] = &vertexAttrib[VERT_ATTRIB_FF(i)];
450 && vertexAttrib[VERT_ATTRIB_GENERIC(i)].Enabled)
451 inputs[i] = &vertexAttrib[VERT_ATTRIB_GENERIC(i)];
452 else if (vertexAttrib[VERT_ATTRIB_FF(i)].Enabled)
453 inputs[i] = &vertexAttrib[VERT_ATTRIB_FF(i)];
477 if (vertexAttrib[VERT_ATTRIB_GENERIC0].Enabled)
478 inputs[0] = &vertexAttrib[VERT_ATTRIB_GENERIC0];
479 else if (vertexAttrib[VERT_ATTRIB_PO
[all...]
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DState.cpp1438 const gl::VertexAttribute &vertexAttrib = getVertexAttribState(attribIndex);
1439 gl::Buffer *boundBuffer = vertexAttrib.buffer.get();
1440 if (vertexAttrib.enabled && boundBuffer && boundBuffer->isMapped())

Completed in 217 milliseconds