Home
last modified time | relevance | path

Searched refs:maxVertexAttribs (Results 1 – 21 of 21) 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.cpp102 int maxVertexAttribs = ctx.getInteger(GL_MAX_VERTEX_ATTRIBS); in vertex_attribf() local
103 ctx.glVertexAttrib1f(maxVertexAttribs, 0.0f); in vertex_attribf()
105 ctx.glVertexAttrib2f(maxVertexAttribs, 0.0f, 0.0f); in vertex_attribf()
107 ctx.glVertexAttrib3f(maxVertexAttribs, 0.0f, 0.0f, 0.0f); in vertex_attribf()
109 ctx.glVertexAttrib4f(maxVertexAttribs, 0.0f, 0.0f, 0.0f, 0.0f); in vertex_attribf()
117 int maxVertexAttribs = ctx.getInteger(GL_MAX_VERTEX_ATTRIBS); in vertex_attribfv() local
119 ctx.glVertexAttrib1fv(maxVertexAttribs, &v[0]); in vertex_attribfv()
121 ctx.glVertexAttrib2fv(maxVertexAttribs, &v[0]); in vertex_attribfv()
123 ctx.glVertexAttrib3fv(maxVertexAttribs, &v[0]); in vertex_attribfv()
125 ctx.glVertexAttrib4fv(maxVertexAttribs, &v[0]); in vertex_attribfv()
[all …]
Des31fNegativeStateApiTests.cpp1036 GLint maxVertexAttribs; in get_vertex_attribfv() local
1045 ctx.glGetIntegerv(GL_MAX_VERTEX_ATTRIBS, &maxVertexAttribs); in get_vertex_attribfv()
1046 ctx.glGetVertexAttribfv(maxVertexAttribs, GL_VERTEX_ATTRIB_ARRAY_ENABLED, &params); in get_vertex_attribfv()
1054 GLint maxVertexAttribs; in get_vertex_attribiv() local
1063 ctx.glGetIntegerv(GL_MAX_VERTEX_ATTRIBS, &maxVertexAttribs); in get_vertex_attribiv()
1064 ctx.glGetVertexAttribiv(maxVertexAttribs, GL_VERTEX_ATTRIB_ARRAY_ENABLED, &params); in get_vertex_attribiv()
1072 GLint maxVertexAttribs; in get_vertex_attribi_iv() local
1081 ctx.glGetIntegerv(GL_MAX_VERTEX_ATTRIBS, &maxVertexAttribs); in get_vertex_attribi_iv()
1082 ctx.glGetVertexAttribIiv(maxVertexAttribs, GL_VERTEX_ATTRIB_ARRAY_ENABLED, &params); in get_vertex_attribi_iv()
1090 GLint maxVertexAttribs; in get_vertex_attribi_uiv() local
[all …]
/external/angle/src/libANGLE/renderer/gl/
DRendererGL.cpp188 GLint maxVertexAttribs = 0; in RendererGL() local
189 mFunctions->getIntegerv(GL_MAX_VERTEX_ATTRIBS, &maxVertexAttribs); in RendererGL()
191 for (GLint i = 0; i < maxVertexAttribs; ++i) in RendererGL()
/external/deqp-deps/glslang/glslang/Include/
DResourceLimits.h57 int maxVertexAttribs; member
/external/angle/third_party/vulkan-deps/glslang/src/glslang/Include/
DResourceLimits.h57 int maxVertexAttribs; member
/external/deqp-deps/glslang/StandAlone/
DResourceLimits.cpp159 …<< "MaxVertexAttribs " << DefaultTBuiltInResource.maxVertexAttribs << "\n" in GetDefaultTBuiltInResourceString()
297 resources->maxVertexAttribs = value; in DecodeResourceLimits()
/external/angle/third_party/vulkan-deps/glslang/src/StandAlone/
DResourceLimits.cpp159 …<< "MaxVertexAttribs " << DefaultTBuiltInResource.maxVertexAttribs << "\n" in GetDefaultTBuiltInResourceString()
297 resources->maxVertexAttribs = value; in DecodeResourceLimits()
/external/deqp/framework/opengl/simplereference/
DsglrReferenceContext.cpp247 , maxVertexAttribs (0) in ReferenceContextLimits()
267 gl.getIntegerv(GL_MAX_VERTEX_ATTRIBS, &maxVertexAttribs); in ReferenceContextLimits()
332 , m_clientVertexArray (0, m_limits.maxVertexAttribs) in ReferenceContext()
394 , m_currentAttribs (m_limits.maxVertexAttribs, rr::GenericVec4(tcu::Vec4(0, 0, 0, 1))) in ReferenceContext()
3582 vertexArrayObject = new rc::VertexArray(array, m_limits.maxVertexAttribs); in bindVertexArray()
3623 RC_IF_ERROR(index >= (deUint32)m_limits.maxVertexAttribs, GL_INVALID_VALUE, RC_RET_VOID); in vertexAttribPointer()
3661 RC_IF_ERROR(index >= (deUint32)m_limits.maxVertexAttribs, GL_INVALID_VALUE, RC_RET_VOID); in vertexAttribIPointer()
3692 RC_IF_ERROR(index >= (deUint32)m_limits.maxVertexAttribs, GL_INVALID_VALUE, RC_RET_VOID); in enableVertexAttribArray()
3700 RC_IF_ERROR(index >= (deUint32)m_limits.maxVertexAttribs, GL_INVALID_VALUE, RC_RET_VOID); in disableVertexAttribArray()
3708 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()
582 int maxVertexAttribs; member
/external/deqp/external/openglcts/modules/common/
DglcSpirvUtils.cpp105 builtin->maxVertexAttribs = 64; in getDefaultBuiltInResources()
/external/deqp/external/vulkancts/framework/vulkan/
DvkShaderToSpirV.cpp115 builtin->maxVertexAttribs = 64; in getDefaultBuiltInResources()
/external/angle/src/tests/test_utils/third_party/
Dvulkan_command_buffer_utils.h371 Resources.maxVertexAttribs = 64; in init_resources()
/external/vulkan-validation-layers/tests/
Dvktestframework.cpp394 Resources.maxVertexAttribs = value; in ProcessConfigFile()
/external/angle/src/tests/gl_tests/
DVertexAttributeTest.cpp1628 GLint maxVertexAttribs = 0; in TEST_P() local
1629 glGetIntegerv(GL_MAX_VERTEX_ATTRIBS, &maxVertexAttribs); in TEST_P()
1631 for (GLint colorIndex = 0; colorIndex < maxVertexAttribs; ++colorIndex) in TEST_P()
/external/angle/third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/
DInitialize.cpp7144 …ltInConstant, maxSize, "const mediump int gl_MaxVertexAttribs = %d;", resources.maxVertexAttribs);
7291 …intf(builtInConstant, maxSize, "const int gl_MaxVertexAttribs = %d;", resources.maxVertexAttribs);
/external/deqp-deps/glslang/glslang/MachineIndependent/
DInitialize.cpp6840 …ltInConstant, maxSize, "const mediump int gl_MaxVertexAttribs = %d;", resources.maxVertexAttribs);
6984 …intf(builtInConstant, maxSize, "const int gl_MaxVertexAttribs = %d;", resources.maxVertexAttribs);