Home
last modified time | relevance | path

Searched refs:tessLevel (Results 1 – 9 of 9) sorted by relevance

/external/deqp/modules/gles31/stress/
Des31sTessellationGeometryInteractionTests.cpp83 std::string getTessellationControlSource (int tessLevel);
84 std::string getTessellationEvaluationSource (int tessLevel);
444 std::string GridRenderCase::getTessellationControlSource (int tessLevel) in getTessellationControlSource() argument
455 " gl_TessLevelOuter[0] = " << tessLevel << ".0;\n" in getTessellationControlSource()
456 " gl_TessLevelOuter[1] = " << tessLevel << ".0;\n" in getTessellationControlSource()
457 " gl_TessLevelOuter[2] = " << tessLevel << ".0;\n" in getTessellationControlSource()
458 " gl_TessLevelOuter[3] = " << tessLevel << ".0;\n" in getTessellationControlSource()
459 " gl_TessLevelInner[0] = " << tessLevel << ".0;\n" in getTessellationControlSource()
460 " gl_TessLevelInner[1] = " << tessLevel << ".0;\n" in getTessellationControlSource()
466 std::string GridRenderCase::getTessellationEvaluationSource (int tessLevel) in getTessellationEvaluationSource() argument
[all …]
/external/deqp/external/vulkancts/modules/vulkan/tessellation/
DvktTessellationFractionalSpacingTests.cpp94 float tessLevel; member
98 …LineData (float lev, float len, int loc) : tessLevel(lev), additionalSegmentLength(len), additiona… in LineData()
131 const float tessLevel, in verifyFractionalSpacingSingle() argument
138 const float clampedLevel = getClampedTessLevel(spacingMode, tessLevel); in verifyFractionalSpacingSingle()
141 …std::string failNote = "Note: tessellation level is " + de::toString(tessLevel) + "\nNote: so… in verifyFractionalSpacingSingle()
287 …<LineData> lineDatasSortedByLevel = sorted(lineDatas, memberPred<std::less>(&LineData::tessLevel)); in verifyFractionalSpacingMultiple()
299 …f (getClampedTessLevel(spacingMode, curData.tessLevel) == getClampedTessLevel(spacingMode, prevDat… in verifyFractionalSpacingMultiple()
303 …::Message << "Note: tessellation levels are " << curData.tessLevel << " and " << prevData.tessLevel in verifyFractionalSpacingMultiple()
304 << " (clamped level " << getClampedTessLevel(spacingMode, curData.tessLevel) << ")" in verifyFractionalSpacingMultiple()
321 const float curClampedLevel = getClampedTessLevel(spacingMode, curData.tessLevel); in verifyFractionalSpacingMultiple()
[all …]
DvktTessellationUtil.cpp565 float getClampedTessLevel (const SpacingMode mode, const float tessLevel) in getClampedTessLevel() argument
569 case SPACINGMODE_EQUAL: return de::max(1.0f, tessLevel); in getClampedTessLevel()
570 case SPACINGMODE_FRACTIONAL_ODD: return de::max(1.0f, tessLevel); in getClampedTessLevel()
571 case SPACINGMODE_FRACTIONAL_EVEN: return de::max(2.0f, tessLevel); in getClampedTessLevel()
598 int getClampedRoundedTessLevel (const SpacingMode mode, const float tessLevel) in getClampedRoundedTessLevel() argument
600 return getRoundedTessLevel(mode, getClampedTessLevel(mode, tessLevel)); in getClampedRoundedTessLevel()
DvktTessellationUtil.hpp224 float getClampedTessLevel (const SpacingMode mode, const float tessLevel);
226 int getClampedRoundedTessLevel (const SpacingMode mode, const float tessLevel);
DvktTessellationInvarianceTests.cpp520 void logOuterTessellationLevel (tcu::TestLog& log, const float tessLevel, const OuterEdgeDescriptio… in logOuterTessellationLevel() argument
523 …<< "Testing with outer tessellation level " << tessLevel << " for the " << edgeDesc.description() … in logOuterTessellationLevel()
/external/deqp/modules/gles31/functional/
Des31fTessellationGeometryInteractionTests.cpp2133 std::string getTessellationControlSource (int tessLevel);
2134 std::string getTessellationEvaluationSource (int tessLevel);
2135 std::string getGeometryShaderSource (int numPrimitives, int numInstances, int tessLevel);
2582 std::string GridRenderCase::getTessellationControlSource (int tessLevel) in getTessellationControlSource() argument
2593 " gl_TessLevelOuter[0] = " << tessLevel << ".0;\n" in getTessellationControlSource()
2594 " gl_TessLevelOuter[1] = " << tessLevel << ".0;\n" in getTessellationControlSource()
2595 " gl_TessLevelOuter[2] = " << tessLevel << ".0;\n" in getTessellationControlSource()
2596 " gl_TessLevelOuter[3] = " << tessLevel << ".0;\n" in getTessellationControlSource()
2597 " gl_TessLevelInner[0] = " << tessLevel << ".0;\n" in getTessellationControlSource()
2598 " gl_TessLevelInner[1] = " << tessLevel << ".0;\n" in getTessellationControlSource()
[all …]
Des31fTessellationTests.cpp564 static inline float getClampedTessLevel (SpacingMode mode, float tessLevel) in getClampedTessLevel() argument
568 case SPACINGMODE_EQUAL: return de::max(1.0f, tessLevel); in getClampedTessLevel()
569 case SPACINGMODE_FRACTIONAL_ODD: return de::max(1.0f, tessLevel); in getClampedTessLevel()
570 case SPACINGMODE_FRACTIONAL_EVEN: return de::max(2.0f, tessLevel); in getClampedTessLevel()
594 static int getClampedRoundedTessLevel (SpacingMode mode, float tessLevel) in getClampedRoundedTessLevel() argument
596 return getRoundedTessLevel(mode, getClampedTessLevel(mode, tessLevel)); in getClampedRoundedTessLevel()
1227 static bool verifyFractionalSpacingSingle (TestLog& log, SpacingMode spacingMode, float tessLevel, … in verifyFractionalSpacingSingle() argument
1233 const float clampedLevel = getClampedTessLevel(spacingMode, tessLevel); in verifyFractionalSpacingSingle()
1236 …string failNote = "Note: tessellation level is " + de::toString(tessLevel) + "\nNote: sorted … in verifyFractionalSpacingSingle()
1365 float tessLevel; member
[all …]
Des31fPrimitiveBoundingBoxTests.cpp1293 const glw::GLfloat tessLevel = 2.8f; // will be rounded up in renderTestPattern() local
1297 …m_testCtx.getLog() << tcu::TestLog::Message << "u_tessellationLevel = " << tessLevel << tcu::TestL… in renderTestPattern()
1299 gl.uniform1f(tessLevelPos, tessLevel); in renderTestPattern()
1804 const glw::GLfloat tessLevel = 2.8f; // will be rounded up in renderTestPattern() local
1808 …m_testCtx.getLog() << tcu::TestLog::Message << "u_tessellationLevel = " << tessLevel << tcu::TestL… in renderTestPattern()
1810 gl.uniform1f(tessLevelPos, tessLevel); in renderTestPattern()
2802 const glw::GLfloat tessLevel = 0.8f; // will be rounded up in renderTestPattern() local
2806 …m_testCtx.getLog() << tcu::TestLog::Message << "u_tessellationLevel = " << tessLevel << tcu::TestL… in renderTestPattern()
2808 gl.uniform1f(tessLevelPos, tessLevel); in renderTestPattern()
/external/deqp/external/vulkancts/modules/vulkan/device_group/
DvktDeviceGroupRendering.cpp371 const float tessLevel = 16.0f; in iterate() local
702 (VkDeviceSize)sizeof(tessLevel), // size in iterate()
713 deMemcpy(sboBufPtr, &tessLevel, sizeof(tessLevel)); in iterate()
723 (VkDeviceSize)sizeof(tessLevel), // size in iterate()
908 (VkDeviceSize)sizeof(tessLevel) in iterate()
1281 sizeof(tessLevel) // VkDeviceSize size; in iterate()
1294 sizeof(tessLevel) // VkDeviceSize size; in iterate()
1298 VkBufferCopy sboBufferCopy = { 0u, 0u, sizeof(tessLevel) }; in iterate()