HomeSort by relevance Sort by last modified time
    Searched refs:vertexAttrib (Results 1 - 5 of 5) sorted by null

  /external/deqp/framework/referencerenderer/
rrVertexAttrib.hpp 109 struct VertexAttrib
118 VertexAttrib (void)
127 VertexAttrib (VertexAttribType type_, int size_, int stride_, int instanceDivisor_, const void* pointer_)
137 explicit VertexAttrib (const tcu::Vector<ScalarType, 4>& generic_)
148 bool isValidVertexAttrib (const VertexAttrib& vertexAttrib);
151 void readVertexAttrib (tcu::Vec4& dst, const VertexAttrib& vertexAttrib, const int instanceNdx, const int vertexNdx);
152 void readVertexAttrib (tcu::IVec4& dst, const VertexAttrib& vertexAttrib, const int instanceNdx, const int vertexNdx)
    [all...]
rrVertexAttrib.cpp 461 bool isValidVertexAttrib (const VertexAttrib& vertexAttrib)
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 |
    [all...]
  /external/mesa3d/src/mesa/vbo/
vbo_exec_array.c 320 for (k = 0; k < Elements(arrayObj->VertexAttrib); k++) {
321 check_array_data(ctx, &arrayObj->VertexAttrib[k], k, j);
329 for (k = 0; k < Elements(arrayObj->VertexAttrib); k++) {
330 unmap_array_buffer(ctx, &arrayObj->VertexAttrib[k]);
370 arrayObj->VertexAttrib[VERT_ATTRIB_FF(i)].Enabled,
407 struct gl_client_array *vertexAttrib = ctx->Array.ArrayObj->VertexAttrib;
420 if (vertexAttrib[VERT_ATTRIB_FF(i)].Enabled)
421 inputs[i] = &vertexAttrib[VERT_ATTRIB_FF(i)];
450 && vertexAttrib[VERT_ATTRIB_GENERIC(i)].Enabled
    [all...]
  /device/generic/goldfish-opengl/shared/OpenglCodecCommon/
GLClientState.h 564 const VertexAttribState& vertexAttrib = getState(index);
566 m_currVaoState.bufferBindings_const()[vertexAttrib.bindingindex];
571 *ptr = (T)vertexAttrib.bindingindex;
575 *ptr = (T)vertexAttrib.reloffset;
581 *ptr = (T)(vertexAttrib.enabled);
585 *ptr = (T)(vertexAttrib.isInt);
588 *ptr = (T)(vertexAttrib.size);
594 *ptr = (T)(vertexAttrib.type);
597 *ptr = (T)(vertexAttrib.normalized);
  /external/deqp/external/vulkancts/modules/vulkan/
vktRenderPassTests.cpp     [all...]

Completed in 229 milliseconds