HomeSort by relevance Sort by last modified time
    Searched refs:tessCoords (Results 1 - 2 of 2) sorted by null

  /external/deqp/external/vulkancts/modules/vulkan/tessellation/
vktTessellationUtil.cpp     [all...]
  /external/deqp/modules/gles31/functional/
es31fTessellationTests.cpp 663 vector<Vec3> tessCoords;
669 tessCoords.push_back(Vec3(1.0f, 0.0f, 0.0f));
670 tessCoords.push_back(Vec3(0.0f, 1.0f, 0.0f));
671 tessCoords.push_back(Vec3(0.0f, 0.0f, 1.0f));
672 return tessCoords;
680 for (int i = 0; i < outer0; i++) { const float v = (float)i / (float)outer0; tessCoords.push_back(Vec3( 0.0f, v, 1.0f - v)); }
681 for (int i = 0; i < outer1; i++) { const float v = (float)i / (float)outer1; tessCoords.push_back(Vec3(1.0f - v, 0.0f, v)); }
682 for (int i = 0; i < outer2; i++) { const float v = (float)i / (float)outer2; tessCoords.push_back(Vec3( v, 1.0f - v, 0.0f)); }
690 tessCoords.push_back(Vec3(1.0f/3.0f));
706 tessCoords.push_back((1.0f - f)*corners[j] + f*corners[(j+1)%3])
    [all...]

Completed in 147 milliseconds