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 661 vector<Vec3> tessCoords;
667 tessCoords.push_back(Vec3(1.0f, 0.0f, 0.0f));
668 tessCoords.push_back(Vec3(0.0f, 1.0f, 0.0f));
669 tessCoords.push_back(Vec3(0.0f, 0.0f, 1.0f));
670 return tessCoords;
678 for (int i = 0; i < outer0; i++) { const float v = (float)i / (float)outer0; tessCoords.push_back(Vec3( 0.0f, v, 1.0f - v)); }
679 for (int i = 0; i < outer1; i++) { const float v = (float)i / (float)outer1; tessCoords.push_back(Vec3(1.0f - v, 0.0f, v)); }
680 for (int i = 0; i < outer2; i++) { const float v = (float)i / (float)outer2; tessCoords.push_back(Vec3( v, 1.0f - v, 0.0f)); }
688 tessCoords.push_back(Vec3(1.0f/3.0f));
704 tessCoords.push_back((1.0f - f)*corners[j] + f*corners[(j+1)%3])
    [all...]

Completed in 722 milliseconds