Home
last modified time | relevance | path

Searched refs:maxVertexAttribs (Results 1 – 11 of 11) sorted by relevance

/external/deqp/modules/gles2/functional/
Des2fNegativeVertexArrayApiTests.cpp61 int maxVertexAttribs = m_context.getContextInfo().getInt(GL_MAX_VERTEX_ATTRIBS); in init()
62 glVertexAttrib1f(maxVertexAttribs, 0.0f); in init()
64 glVertexAttrib2f(maxVertexAttribs, 0.0f, 0.0f); in init()
66 glVertexAttrib3f(maxVertexAttribs, 0.0f, 0.0f, 0.0f); in init()
68 glVertexAttrib4f(maxVertexAttribs, 0.0f, 0.0f, 0.0f, 0.0f); in init()
75 int maxVertexAttribs = m_context.getContextInfo().getInt(GL_MAX_VERTEX_ATTRIBS); in init()
77 glVertexAttrib1fv(maxVertexAttribs, &v[0]); in init()
79 glVertexAttrib2fv(maxVertexAttribs, &v[0]); in init()
81 glVertexAttrib3fv(maxVertexAttribs, &v[0]); in init()
83 glVertexAttrib4fv(maxVertexAttribs, &v[0]); in init()
[all …]
Des2fNegativeStateApiTests.cpp434 GLint maxVertexAttribs; in init()
435 glGetIntegerv(GL_MAX_VERTEX_ATTRIBS, &maxVertexAttribs); in init()
436 glGetVertexAttribfv(maxVertexAttribs, GL_VERTEX_ATTRIB_ARRAY_ENABLED, &params[0]); in init()
452 GLint maxVertexAttribs; in init()
453 glGetIntegerv(GL_MAX_VERTEX_ATTRIBS, &maxVertexAttribs); in init()
454 glGetVertexAttribiv(maxVertexAttribs, GL_VERTEX_ATTRIB_ARRAY_ENABLED, &params[0]); in init()
468 GLint maxVertexAttribs; in init()
469 glGetIntegerv(GL_MAX_VERTEX_ATTRIBS, &maxVertexAttribs); in init()
470 glGetVertexAttribPointerv(maxVertexAttribs, GL_VERTEX_ATTRIB_ARRAY_POINTER, &ptr[0]); in init()
/external/deqp/modules/gles3/functional/
Des3fNegativeVertexArrayApiTests.cpp71 int maxVertexAttribs = m_context.getContextInfo().getInt(GL_MAX_VERTEX_ATTRIBS); in init()
72 glVertexAttrib1f(maxVertexAttribs, 0.0f); in init()
74 glVertexAttrib2f(maxVertexAttribs, 0.0f, 0.0f); in init()
76 glVertexAttrib3f(maxVertexAttribs, 0.0f, 0.0f, 0.0f); in init()
78 glVertexAttrib4f(maxVertexAttribs, 0.0f, 0.0f, 0.0f, 0.0f); in init()
85 int maxVertexAttribs = m_context.getContextInfo().getInt(GL_MAX_VERTEX_ATTRIBS); in init()
87 glVertexAttrib1fv(maxVertexAttribs, &v[0]); in init()
89 glVertexAttrib2fv(maxVertexAttribs, &v[0]); in init()
91 glVertexAttrib3fv(maxVertexAttribs, &v[0]); in init()
93 glVertexAttrib4fv(maxVertexAttribs, &v[0]); in init()
[all …]
Des3fNegativeStateApiTests.cpp696 GLint maxVertexAttribs; in init()
697 glGetIntegerv(GL_MAX_VERTEX_ATTRIBS, &maxVertexAttribs); in init()
698 glGetVertexAttribfv(maxVertexAttribs, GL_VERTEX_ATTRIB_ARRAY_ENABLED, &params); in init()
712 GLint maxVertexAttribs; in init()
713 glGetIntegerv(GL_MAX_VERTEX_ATTRIBS, &maxVertexAttribs); in init()
714 glGetVertexAttribiv(maxVertexAttribs, GL_VERTEX_ATTRIB_ARRAY_ENABLED, &params); in init()
728 GLint maxVertexAttribs; in init()
729 glGetIntegerv(GL_MAX_VERTEX_ATTRIBS, &maxVertexAttribs); in init()
730 glGetVertexAttribIiv(maxVertexAttribs, GL_VERTEX_ATTRIB_ARRAY_ENABLED, &params); in init()
744 GLint maxVertexAttribs; in init()
[all …]
Des3fTransformFeedbackTests.cpp238 int maxVertexAttribs = 0; in isProgramSupported() local
243 gl.getIntegerv(GL_MAX_VERTEX_ATTRIBS, &maxVertexAttribs); in isProgramSupported()
256 if (totalVertexAttribs > maxVertexAttribs) in isProgramSupported()
/external/deqp/modules/gles31/functional/
Des31fNegativeVertexArrayApiTests.cpp72 int maxVertexAttribs = ctx.getInteger(GL_MAX_VERTEX_ATTRIBS); in vertex_attribf() local
73 ctx.glVertexAttrib1f(maxVertexAttribs, 0.0f); in vertex_attribf()
75 ctx.glVertexAttrib2f(maxVertexAttribs, 0.0f, 0.0f); in vertex_attribf()
77 ctx.glVertexAttrib3f(maxVertexAttribs, 0.0f, 0.0f, 0.0f); in vertex_attribf()
79 ctx.glVertexAttrib4f(maxVertexAttribs, 0.0f, 0.0f, 0.0f, 0.0f); in vertex_attribf()
87 int maxVertexAttribs = ctx.getInteger(GL_MAX_VERTEX_ATTRIBS); in vertex_attribfv() local
89 ctx.glVertexAttrib1fv(maxVertexAttribs, &v[0]); in vertex_attribfv()
91 ctx.glVertexAttrib2fv(maxVertexAttribs, &v[0]); in vertex_attribfv()
93 ctx.glVertexAttrib3fv(maxVertexAttribs, &v[0]); in vertex_attribfv()
95 ctx.glVertexAttrib4fv(maxVertexAttribs, &v[0]); in vertex_attribfv()
[all …]
Des31fNegativeStateApiTests.cpp1001 GLint maxVertexAttribs; in get_vertex_attribfv() local
1009 ctx.glGetIntegerv(GL_MAX_VERTEX_ATTRIBS, &maxVertexAttribs); in get_vertex_attribfv()
1010 ctx.glGetVertexAttribfv(maxVertexAttribs, GL_VERTEX_ATTRIB_ARRAY_ENABLED, &params); in get_vertex_attribfv()
1018 GLint maxVertexAttribs; in get_vertex_attribiv() local
1026 ctx.glGetIntegerv(GL_MAX_VERTEX_ATTRIBS, &maxVertexAttribs); in get_vertex_attribiv()
1027 ctx.glGetVertexAttribiv(maxVertexAttribs, GL_VERTEX_ATTRIB_ARRAY_ENABLED, &params); in get_vertex_attribiv()
1035 GLint maxVertexAttribs; in get_vertex_attribi_iv() local
1043 ctx.glGetIntegerv(GL_MAX_VERTEX_ATTRIBS, &maxVertexAttribs); in get_vertex_attribi_iv()
1044 ctx.glGetVertexAttribIiv(maxVertexAttribs, GL_VERTEX_ATTRIB_ARRAY_ENABLED, &params); in get_vertex_attribi_iv()
1052 GLint maxVertexAttribs; in get_vertex_attribi_uiv() local
[all …]
/external/deqp/framework/opengl/simplereference/
DsglrReferenceContext.cpp246 , maxVertexAttribs (0) in ReferenceContextLimits()
254 gl.getIntegerv(GL_MAX_VERTEX_ATTRIBS, &maxVertexAttribs); in ReferenceContextLimits()
318 , m_clientVertexArray (0, m_limits.maxVertexAttribs) in ReferenceContext()
380 , m_currentAttribs (m_limits.maxVertexAttribs, rr::GenericVec4(tcu::Vec4(0, 0, 0, 1))) in ReferenceContext()
3564 vertexArrayObject = new rc::VertexArray(array, m_limits.maxVertexAttribs); in bindVertexArray()
3605 RC_IF_ERROR(index >= (deUint32)m_limits.maxVertexAttribs, GL_INVALID_VALUE, RC_RET_VOID); in vertexAttribPointer()
3643 RC_IF_ERROR(index >= (deUint32)m_limits.maxVertexAttribs, GL_INVALID_VALUE, RC_RET_VOID); in vertexAttribIPointer()
3674 RC_IF_ERROR(index >= (deUint32)m_limits.maxVertexAttribs, GL_INVALID_VALUE, RC_RET_VOID); in enableVertexAttribArray()
3682 RC_IF_ERROR(index >= (deUint32)m_limits.maxVertexAttribs, GL_INVALID_VALUE, RC_RET_VOID); in disableVertexAttribArray()
3690 RC_IF_ERROR(index >= (deUint32)m_limits.maxVertexAttribs, GL_INVALID_VALUE, RC_RET_VOID); in vertexAttribDivisor()
[all …]
DsglrReferenceContext.hpp437 VertexArray (deUint32 name, int maxVertexAttribs);
565 , maxVertexAttribs (16) in ReferenceContextLimits()
581 int maxVertexAttribs; member
/external/deqp/external/vulkancts/framework/vulkan/
DvkGlslToSpirV.cpp113 builtin->maxVertexAttribs = 64; in getDefaultBuiltInResources()
/external/vulkan-validation-layers/tests/
Dvktestframework.cpp373 Resources.maxVertexAttribs = value; in ProcessConfigFile()