Lines Matching refs:bothOutOfBoundsNdx
2607 int bothOutOfBoundsNdx = -1; in getCubeLinearSamples() local
2612 DE_ASSERT(bothOutOfBoundsNdx < 0); // Only one sample can be out of bounds in both u and v. in getCubeLinearSamples()
2613 bothOutOfBoundsNdx = i; in getCubeLinearSamples()
2616 if (bothOutOfBoundsNdx != -1) in getCubeLinearSamples()
2618 sampleColors[bothOutOfBoundsNdx] = Vec4(0.0f); in getCubeLinearSamples()
2620 if (i != bothOutOfBoundsNdx) in getCubeLinearSamples()
2621 sampleColors[bothOutOfBoundsNdx] += sampleColors[i]; in getCubeLinearSamples()
2623 sampleColors[bothOutOfBoundsNdx] = sampleColors[bothOutOfBoundsNdx] * (1.0f/3.0f); in getCubeLinearSamples()
2802 int bothOutOfBoundsNdx = -1; in sampleCubeSeamlessLinearCompare() local
2807 DE_ASSERT(bothOutOfBoundsNdx < 0); // Only one sample can be out of bounds in both u and v. in sampleCubeSeamlessLinearCompare()
2808 bothOutOfBoundsNdx = i; in sampleCubeSeamlessLinearCompare()
2811 if (bothOutOfBoundsNdx != -1) in sampleCubeSeamlessLinearCompare()
2813 sampleRes[bothOutOfBoundsNdx] = 0.0f; in sampleCubeSeamlessLinearCompare()
2815 if (i != bothOutOfBoundsNdx) in sampleCubeSeamlessLinearCompare()
2816 sampleRes[bothOutOfBoundsNdx] += sampleRes[i]; in sampleCubeSeamlessLinearCompare()
2818 sampleRes[bothOutOfBoundsNdx] = sampleRes[bothOutOfBoundsNdx] * (1.0f/3.0f); in sampleCubeSeamlessLinearCompare()