Home
last modified time | relevance | path

Searched refs:maxPatchVertices (Results 1 – 7 of 7) sorted by relevance

/external/deqp/modules/gles31/functional/
Des31fNegativeTessellationTests.cpp321 int maxPatchVertices= 0; in tessellation_control_invalid_vertex_count() local
324 ctx.glGetIntegerv(GL_MAX_PATCH_VERTICES, &maxPatchVertices); in tessellation_control_invalid_vertex_count()
328 oss << (maxPatchVertices + 1); in tessellation_control_invalid_vertex_count()
397 int maxPatchVertices= 0; in invalid_patch_parameteri() local
398 ctx.glGetIntegerv(GL_MAX_PATCH_VERTICES, &maxPatchVertices); in invalid_patch_parameteri()
402 ctx.glPatchParameteri(GL_PATCH_VERTICES, maxPatchVertices + 1); in invalid_patch_parameteri()
Des31fProgramInterfaceQueryTestCase.cpp2120 glw::GLint maxPatchVertices = 0; in getMaxPatchVertices() local
2122 gl.getIntegerv(GL_MAX_PATCH_VERTICES, &maxPatchVertices); in getMaxPatchVertices()
2124 return maxPatchVertices; in getMaxPatchVertices()
/external/deqp/framework/opengl/
DgluShaderLibrary.hpp176 const int maxPatchVertices; // Used by tess shaders only member
183 , maxPatchVertices (maxPatchVertices_) in ProgramSpecializationParams()
/external/deqp/external/vulkancts/framework/vulkan/
DvkGlslToSpirV.cpp170 builtin->maxPatchVertices = 32; in getDefaultBuiltInResources()
/external/deqp/modules/glshared/
DglsShaderLibraryCase.cpp539 …nsert(pair<string, string>("GL_MAX_PATCH_VERTICES", de::toString(specParams.maxPatchVertices))); in generateTessControlSpecialization()
559 …sert(pair<string, string>("GL_MAX_PATCH_VERTICES", de::toString(specParams.maxPatchVertices))); in generateTessEvalSpecialization()
962 …const int maxPatchVertices = isTessellationPresent(m_spec) && isTessellationSupported(m_renderCtx,… in execute() local
967 …pecializeExtensions(m_spec.programs[progNdx].requiredExtensions, m_contextInfo), maxPatchVertices); in execute()
/external/deqp/external/vulkancts/modules/vulkan/
DvktShaderLibrary.cpp538 …nsert(pair<string, string>("GL_MAX_PATCH_VERTICES", de::toString(specParams.maxPatchVertices))); in generateTessControlSpecialization()
558 …sert(pair<string, string>("GL_MAX_PATCH_VERTICES", de::toString(specParams.maxPatchVertices))); in generateTessEvalSpecialization()
1744 const int maxPatchVertices = 4; // \todo [2015-08-05 pyry] Query in initPrograms() local
1748 …ationParams progSpecParams (m_spec, m_spec.programs[progNdx].requiredExtensions, maxPatchVertices); in initPrograms()
/external/vulkan-validation-layers/tests/
Dvktestframework.cpp487 Resources.maxPatchVertices = value; in ProcessConfigFile()