HomeSort by relevance Sort by last modified time
    Searched refs:vertexAttrib (Results 1 - 6 of 6) 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...]
  /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/mesa3d/src/mesa/vbo/
vbo_exec_array.c 54 const struct gl_array_attributes *array = &vao->VertexAttrib[attrib];
104 const struct gl_array_attributes *array = &vao->VertexAttrib[attrib];
196 const struct gl_array_attributes *array = &vao->VertexAttrib[i];
245 const struct gl_array_attributes *array = ctx->Array.VAO->VertexAttrib;
246 struct gl_vertex_array *vertexAttrib = ctx->Array.VAO->_VertexAttrib;
260 inputs[i] = &vertexAttrib[VERT_ATTRIB_FF(i)];
301 inputs[0] = &vertexAttrib[VERT_ATTRIB_GENERIC0];
303 inputs[0] = &vertexAttrib[VERT_ATTRIB_POS];
311 inputs[i] = &vertexAttrib[VERT_ATTRIB_FF(i)];
321 &vertexAttrib[VERT_ATTRIB_GENERIC(i)]
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/
vktDrawUtil.cpp 340 const rr::VertexAttrib vertexAttrib[] =
342 rr::VertexAttrib(rr::VERTEXATTRIBTYPE_FLOAT, 4, sizeof(tcu::Vec4), 0, &m_drawCallData.vertices[0])
348 DE_LENGTH_OF_ARRAY(vertexAttrib),
349 &vertexAttrib[0],
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/renderpass/
vktRenderPassTests.cpp     [all...]

Completed in 148 milliseconds