HomeSort by relevance Sort by last modified time
    Searched defs:triNdx (Results 1 - 5 of 5) sorted by null

  /external/deqp/modules/gles2/accuracy/
es2aVaryingInterpolationTests.cpp 82 int triNdx = nx + ny >= 1.0f ? 1 : 0;
83 float triNx = triNdx ? 1.0f - nx : nx;
84 float triNy = triNdx ? 1.0f - ny : ny;
86 float r = projectedTriInterpolate(triR[triNdx], triW[triNdx], triNx, triNy) * scale[0] + bias[0];
87 float g = projectedTriInterpolate(triG[triNdx], triW[triNdx], triNx, triNy) * scale[1] + bias[1];
88 float b = projectedTriInterpolate(triB[triNdx], triW[triNdx], triNx, triNy) * scale[2] + bias[2];
  /external/deqp/modules/gles3/accuracy/
es3aVaryingInterpolationTests.cpp 85 int triNdx = nx + ny >= 1.0f ? 1 : 0;
86 float triNx = triNdx ? 1.0f - nx : nx;
87 float triNy = triNdx ? 1.0f - ny : ny;
89 float r = projectedTriInterpolate(triR[triNdx], triW[triNdx], triNx, triNy) * scale[0] + bias[0];
90 float g = projectedTriInterpolate(triG[triNdx], triW[triNdx], triNx, triNy) * scale[1] + bias[1];
91 float b = projectedTriInterpolate(triB[triNdx], triW[triNdx], triNx, triNy) * scale[2] + bias[2];
  /external/deqp/modules/gles3/functional/
es3fShaderBuiltinVarTests.cpp 829 const int triNdx = vtxNdx/3;
830 const int quadNdx = triNdx/2;
837 if (triNdx%2 == 0)
    [all...]
es3fTransformFeedbackTests.cpp 681 int triNdx = outNdx/3;
683 return (triNdx%2 != 0 && vtxNdx < 2) ? (triNdx+1-vtxNdx) : (triNdx+vtxNdx);
    [all...]
  /external/deqp/modules/glshared/
glsTextureTestUtil.cpp 457 int triNdx = xf + yf >= 1.0f ? 1 : 0; // Top left fill rule.
458 float triX = triNdx ? 1.0f-xf : xf;
459 float triY = triNdx ? 1.0f-yf : yf;
461 float s = triangleInterpolate(triS[triNdx].x(), triS[triNdx].y(), triS[triNdx].z(), triX, triY);
462 float lod = triLod[triNdx];
489 int triNdx = xf + yf >= 1.0f ? 1 : 0; // Top left fill rule.
490 float triX = triNdx ? 1.0f-xf : xf;
491 float triY = triNdx ? 1.0f-yf : yf
    [all...]

Completed in 185 milliseconds