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.cpp100 int maxVertexAttribs = m_context.getContextInfo().getInt(GL_MAX_VERTEX_ATTRIBS); in init()
101 glVertexAttrib1f(maxVertexAttribs, 0.0f); in init()
103 glVertexAttrib2f(maxVertexAttribs, 0.0f, 0.0f); in init()
105 glVertexAttrib3f(maxVertexAttribs, 0.0f, 0.0f, 0.0f); in init()
107 glVertexAttrib4f(maxVertexAttribs, 0.0f, 0.0f, 0.0f, 0.0f); in init()
114 int maxVertexAttribs = m_context.getContextInfo().getInt(GL_MAX_VERTEX_ATTRIBS); in init()
116 glVertexAttrib1fv(maxVertexAttribs, &v[0]); in init()
118 glVertexAttrib2fv(maxVertexAttribs, &v[0]); in init()
120 glVertexAttrib3fv(maxVertexAttribs, &v[0]); in init()
122 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.cpp196 GLint maxVertexAttribs = 0; in RendererGL() local
197 mFunctions->getIntegerv(GL_MAX_VERTEX_ATTRIBS, &maxVertexAttribs); in RendererGL()
199 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/glslang/ResourceLimits/
DResourceLimits.cpp168 …<< "MaxVertexAttribs " << DefaultTBuiltInResource.maxVertexAttribs << "\n" in GetDefaultTBuiltInResourceString()
315 resources->maxVertexAttribs = value; in DecodeResourceLimits()
/external/angle/third_party/vulkan-deps/glslang/src/glslang/ResourceLimits/
DResourceLimits.cpp168 …<< "MaxVertexAttribs " << DefaultTBuiltInResource.maxVertexAttribs << "\n" in GetDefaultTBuiltInResourceString()
315 resources->maxVertexAttribs = value; in DecodeResourceLimits()
/external/deqp/framework/opengl/simplereference/
DsglrReferenceContext.cpp249 , maxVertexAttribs (0) in ReferenceContextLimits()
269 gl.getIntegerv(GL_MAX_VERTEX_ATTRIBS, &maxVertexAttribs); in ReferenceContextLimits()
334 , m_clientVertexArray (0, m_limits.maxVertexAttribs) in ReferenceContext()
396 , m_currentAttribs (m_limits.maxVertexAttribs, rr::GenericVec4(tcu::Vec4(0, 0, 0, 1))) in ReferenceContext()
3603 vertexArrayObject = new rc::VertexArray(array, m_limits.maxVertexAttribs); in bindVertexArray()
3644 RC_IF_ERROR(index >= (deUint32)m_limits.maxVertexAttribs, GL_INVALID_VALUE, RC_RET_VOID); in vertexAttribPointer()
3682 RC_IF_ERROR(index >= (deUint32)m_limits.maxVertexAttribs, GL_INVALID_VALUE, RC_RET_VOID); in vertexAttribIPointer()
3713 RC_IF_ERROR(index >= (deUint32)m_limits.maxVertexAttribs, GL_INVALID_VALUE, RC_RET_VOID); in enableVertexAttribArray()
3721 RC_IF_ERROR(index >= (deUint32)m_limits.maxVertexAttribs, GL_INVALID_VALUE, RC_RET_VOID); in disableVertexAttribArray()
3729 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.cpp106 builtin->maxVertexAttribs = 64; in getDefaultBuiltInResources()
/external/deqp/external/vulkancts/framework/vulkan/
DvkShaderToSpirV.cpp117 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.cpp1615 GLint maxVertexAttribs = 0; in TEST_P() local
1616 glGetIntegerv(GL_MAX_VERTEX_ATTRIBS, &maxVertexAttribs); in TEST_P()
1618 for (GLint colorIndex = 0; colorIndex < maxVertexAttribs; ++colorIndex) in TEST_P()
/external/angle/third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/
DInitialize.cpp7315 …ltInConstant, maxSize, "const mediump int gl_MaxVertexAttribs = %d;", resources.maxVertexAttribs); in add2ndGenerationSamplingImaging()
7462 …intf(builtInConstant, maxSize, "const int gl_MaxVertexAttribs = %d;", resources.maxVertexAttribs); in add2ndGenerationSamplingImaging()
/external/deqp-deps/glslang/glslang/MachineIndependent/
DInitialize.cpp7227 …ltInConstant, maxSize, "const mediump int gl_MaxVertexAttribs = %d;", resources.maxVertexAttribs); in add2ndGenerationSamplingImaging()
7374 …intf(builtInConstant, maxSize, "const int gl_MaxVertexAttribs = %d;", resources.maxVertexAttribs); in add2ndGenerationSamplingImaging()