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

  /external/deqp/modules/gles2/functional/
es2fNegativeVertexArrayApiTests.cpp 61 int maxVertexAttribs = m_context.getContextInfo().getInt(GL_MAX_VERTEX_ATTRIBS);
62 glVertexAttrib1f(maxVertexAttribs, 0.0f);
64 glVertexAttrib2f(maxVertexAttribs, 0.0f, 0.0f);
66 glVertexAttrib3f(maxVertexAttribs, 0.0f, 0.0f, 0.0f);
68 glVertexAttrib4f(maxVertexAttribs, 0.0f, 0.0f, 0.0f, 0.0f);
75 int maxVertexAttribs = m_context.getContextInfo().getInt(GL_MAX_VERTEX_ATTRIBS);
77 glVertexAttrib1fv(maxVertexAttribs, &v[0]);
79 glVertexAttrib2fv(maxVertexAttribs, &v[0]);
81 glVertexAttrib3fv(maxVertexAttribs, &v[0]);
83 glVertexAttrib4fv(maxVertexAttribs, &v[0])
    [all...]
es2fNegativeStateApiTests.cpp 434 GLint maxVertexAttribs;
435 glGetIntegerv(GL_MAX_VERTEX_ATTRIBS, &maxVertexAttribs);
436 glGetVertexAttribfv(maxVertexAttribs, GL_VERTEX_ATTRIB_ARRAY_ENABLED, &params[0]);
452 GLint maxVertexAttribs;
453 glGetIntegerv(GL_MAX_VERTEX_ATTRIBS, &maxVertexAttribs);
454 glGetVertexAttribiv(maxVertexAttribs, GL_VERTEX_ATTRIB_ARRAY_ENABLED, &params[0]);
468 GLint maxVertexAttribs;
469 glGetIntegerv(GL_MAX_VERTEX_ATTRIBS, &maxVertexAttribs);
470 glGetVertexAttribPointerv(maxVertexAttribs, GL_VERTEX_ATTRIB_ARRAY_POINTER, &ptr[0]);
  /external/deqp/modules/gles3/functional/
es3fNegativeVertexArrayApiTests.cpp 71 int maxVertexAttribs = m_context.getContextInfo().getInt(GL_MAX_VERTEX_ATTRIBS);
72 glVertexAttrib1f(maxVertexAttribs, 0.0f);
74 glVertexAttrib2f(maxVertexAttribs, 0.0f, 0.0f);
76 glVertexAttrib3f(maxVertexAttribs, 0.0f, 0.0f, 0.0f);
78 glVertexAttrib4f(maxVertexAttribs, 0.0f, 0.0f, 0.0f, 0.0f);
85 int maxVertexAttribs = m_context.getContextInfo().getInt(GL_MAX_VERTEX_ATTRIBS);
87 glVertexAttrib1fv(maxVertexAttribs, &v[0]);
89 glVertexAttrib2fv(maxVertexAttribs, &v[0]);
91 glVertexAttrib3fv(maxVertexAttribs, &v[0]);
93 glVertexAttrib4fv(maxVertexAttribs, &v[0])
    [all...]
es3fNegativeStateApiTests.cpp 696 GLint maxVertexAttribs;
697 glGetIntegerv(GL_MAX_VERTEX_ATTRIBS, &maxVertexAttribs);
698 glGetVertexAttribfv(maxVertexAttribs, GL_VERTEX_ATTRIB_ARRAY_ENABLED, &params);
712 GLint maxVertexAttribs;
713 glGetIntegerv(GL_MAX_VERTEX_ATTRIBS, &maxVertexAttribs);
714 glGetVertexAttribiv(maxVertexAttribs, GL_VERTEX_ATTRIB_ARRAY_ENABLED, &params);
728 GLint maxVertexAttribs;
729 glGetIntegerv(GL_MAX_VERTEX_ATTRIBS, &maxVertexAttribs);
730 glGetVertexAttribIiv(maxVertexAttribs, GL_VERTEX_ATTRIB_ARRAY_ENABLED, &params);
744 GLint maxVertexAttribs;
    [all...]
es3fTransformFeedbackTests.cpp 238 int maxVertexAttribs = 0;
243 gl.getIntegerv(GL_MAX_VERTEX_ATTRIBS, &maxVertexAttribs);
256 if (totalVertexAttribs > maxVertexAttribs)
    [all...]
  /external/deqp/modules/gles31/functional/
es31fNegativeVertexArrayApiTests.cpp 65 int maxVertexAttribs = ctx.getInteger(GL_MAX_VERTEX_ATTRIBS);
66 ctx.glVertexAttrib1f(maxVertexAttribs, 0.0f);
68 ctx.glVertexAttrib2f(maxVertexAttribs, 0.0f, 0.0f);
70 ctx.glVertexAttrib3f(maxVertexAttribs, 0.0f, 0.0f, 0.0f);
72 ctx.glVertexAttrib4f(maxVertexAttribs, 0.0f, 0.0f, 0.0f, 0.0f);
80 int maxVertexAttribs = ctx.getInteger(GL_MAX_VERTEX_ATTRIBS);
82 ctx.glVertexAttrib1fv(maxVertexAttribs, &v[0]);
84 ctx.glVertexAttrib2fv(maxVertexAttribs, &v[0]);
86 ctx.glVertexAttrib3fv(maxVertexAttribs, &v[0]);
88 ctx.glVertexAttrib4fv(maxVertexAttribs, &v[0])
    [all...]
es31fNegativeStateApiTests.cpp     [all...]
  /frameworks/rs/driver/
rsdGL.h 56 int32_t maxVertexAttribs;
rsdGL.cpp 146 ALOGV("MAX Attribs %i", dc->gl.gl.maxVertexAttribs);
380 glGetIntegerv(GL_MAX_VERTEX_ATTRIBS, &dc->gl.gl.maxVertexAttribs);
409 dc->gl.vertexArrayState->init(dc->gl.gl.maxVertexAttribs);
  /external/deqp/external/vulkancts/framework/vulkan/
vkGlslToSpirV.cpp 114 builtin->maxVertexAttribs = 64;
  /external/deqp/framework/opengl/simplereference/
sglrReferenceContext.cpp 246 , maxVertexAttribs (0)
254 gl.getIntegerv(GL_MAX_VERTEX_ATTRIBS, &maxVertexAttribs);
318 , m_clientVertexArray (0, m_limits.maxVertexAttribs)
380 , m_currentAttribs (m_limits.maxVertexAttribs, rr::GenericVec4(tcu::Vec4(0, 0, 0, 1)))
    [all...]
sglrReferenceContext.hpp 437 VertexArray (deUint32 name, int maxVertexAttribs);
565 , maxVertexAttribs (16)
581 int maxVertexAttribs;
    [all...]
  /external/vulkan-validation-layers/tests/
vktestframework.cpp 249 "MaxVertexAttribs 64\n"
397 else if (strcmp(token, "MaxVertexAttribs") == 0)
398 Resources.maxVertexAttribs = value;

Completed in 173 milliseconds