Searched refs:canonizedCoords (Results 1 – 1 of 1) sorted by relevance
/external/deqp/framework/common/ |
D | tcuTexture.cpp | 2534 IVec3 canonizedCoords; in remapCubeEdgeCoords() local 2540 case CUBEFACE_NEGATIVE_X: canonizedCoords = IVec3(0, size-1-coords.y(), coords.x()); break; in remapCubeEdgeCoords() 2541 …case CUBEFACE_POSITIVE_X: canonizedCoords = IVec3(size-1, size-1-coords.y(), size-1-coords.x())… in remapCubeEdgeCoords() 2542 case CUBEFACE_NEGATIVE_Y: canonizedCoords = IVec3(coords.x(), 0, size-1-coords.y()); break; in remapCubeEdgeCoords() 2543 case CUBEFACE_POSITIVE_Y: canonizedCoords = IVec3(coords.x(), size-1, coords.y()); break; in remapCubeEdgeCoords() 2544 …case CUBEFACE_NEGATIVE_Z: canonizedCoords = IVec3(size-1-coords.x(), size-1-coords.y(), 0); b… in remapCubeEdgeCoords() 2545 …case CUBEFACE_POSITIVE_Z: canonizedCoords = IVec3(coords.x(), size-1-coords.y(), size-1); bre… in remapCubeEdgeCoords() 2551 if (canonizedCoords.x() == -1) in remapCubeEdgeCoords() 2552 …return CubeFaceIntCoords(CUBEFACE_NEGATIVE_X, IVec2(canonizedCoords.z(), size-1-canonizedCoords.y(… in remapCubeEdgeCoords() 2554 if (canonizedCoords.x() == size) in remapCubeEdgeCoords() [all …]
|