Home
last modified time | relevance | path

Searched refs:canonizedCoords (Results 1 – 1 of 1) sorted by relevance

/external/deqp/framework/common/
DtcuTexture.cpp2812 IVec3 canonizedCoords; in remapCubeEdgeCoords() local
2818 case CUBEFACE_NEGATIVE_X: canonizedCoords = IVec3(0, size-1-coords.y(), coords.x()); break; in remapCubeEdgeCoords()
2819 …case CUBEFACE_POSITIVE_X: canonizedCoords = IVec3(size-1, size-1-coords.y(), size-1-coords.x())… in remapCubeEdgeCoords()
2820 case CUBEFACE_NEGATIVE_Y: canonizedCoords = IVec3(coords.x(), 0, size-1-coords.y()); break; in remapCubeEdgeCoords()
2821 case CUBEFACE_POSITIVE_Y: canonizedCoords = IVec3(coords.x(), size-1, coords.y()); break; in remapCubeEdgeCoords()
2822 …case CUBEFACE_NEGATIVE_Z: canonizedCoords = IVec3(size-1-coords.x(), size-1-coords.y(), 0); b… in remapCubeEdgeCoords()
2823 …case CUBEFACE_POSITIVE_Z: canonizedCoords = IVec3(coords.x(), size-1-coords.y(), size-1); bre… in remapCubeEdgeCoords()
2829 if (canonizedCoords.x() == -1) in remapCubeEdgeCoords()
2830 …return CubeFaceIntCoords(CUBEFACE_NEGATIVE_X, IVec2(canonizedCoords.z(), size-1-canonizedCoords.y(… in remapCubeEdgeCoords()
2832 if (canonizedCoords.x() == size) in remapCubeEdgeCoords()
[all …]