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 83 int triNdx = nx + ny >= 1.0f ? 1 : 0;
84 float triNx = triNdx ? 1.0f - nx : nx;
85 float triNy = triNdx ? 1.0f - ny : ny;
87 float r = projectedTriInterpolate(triR[triNdx], triW[triNdx], triNx, triNy) * scale[0] + bias[0];
88 float g = projectedTriInterpolate(triG[triNdx], triW[triNdx], triNx, triNy) * scale[1] + bias[1];
89 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 694 int triNdx = outNdx/3;
696 return (triNdx%2 != 0 && vtxNdx < 2) ? (triNdx+1-vtxNdx) : (triNdx+vtxNdx);
    [all...]
  /external/deqp/framework/opengl/
gluTextureTestUtil.cpp 415 int triNdx = xf + yf >= 1.0f ? 1 : 0; // Top left fill rule.
416 float triX = triNdx ? 1.0f-xf : xf;
417 float triY = triNdx ? 1.0f-yf : yf;
419 float s = triangleInterpolate(triS[triNdx].x(), triS[triNdx].y(), triS[triNdx].z(), triX, triY);
420 float lod = triLod[triNdx];
451 int triNdx = xf + yf >= 1.0f ? 1 : 0; // Top left fill rule.
452 float triX = triNdx ? 1.0f-xf : xf;
453 float triY = triNdx ? 1.0f-yf : yf
    [all...]

Completed in 1383 milliseconds