Lines Matching full:points
963 SDL_Point points[16];
978 points[i].x = newx;
979 points[i].y = newy;
994 anyEnclosedNoResult = SDL_EnclosePoints((const SDL_Point *)points, numPoints, (const SDL_Rect *)NULL, (SDL_Rect *)NULL);
1000 SDLTest_AssertCheck(refPoints[i].x==points[i].x && refPoints[i].y==points[i].y,
1002 i, refPoints[i].x, refPoints[i].y, points[i].x, points[i].y);
1006 anyEnclosed = SDL_EnclosePoints((const SDL_Point *)points, numPoints, (const SDL_Rect *)NULL, &result);
1012 SDLTest_AssertCheck(refPoints[i].x==points[i].x && refPoints[i].y==points[i].y,
1014 i, refPoints[i].x, refPoints[i].y, points[i].x, points[i].y);
1024 * \brief Test SDL_EnclosePoints() with repeated input points
1034 SDL_Point points[8];
1054 points[i].x = newx;
1055 points[i].y = newy;
1070 anyEnclosedNoResult = SDL_EnclosePoints((const SDL_Point *)points, numPoints, (const SDL_Rect *)NULL, (SDL_Rect *)NULL);
1076 SDLTest_AssertCheck(refPoints[i].x==points[i].x && refPoints[i].y==points[i].y,
1078 i, refPoints[i].x, refPoints[i].y, points[i].x, points[i].y);
1082 anyEnclosed = SDL_EnclosePoints((const SDL_Point *)points, numPoints, (const SDL_Rect *)NULL, &result);
1088 SDLTest_AssertCheck(refPoints[i].x==points[i].x && refPoints[i].y==points[i].y,
1090 i, refPoints[i].x, refPoints[i].y, points[i].x, points[i].y);
1109 SDL_Point points[16];
1132 points[i].x = newx;
1133 points[i].y = newy;
1153 anyEnclosedNoResult = SDL_EnclosePoints((const SDL_Point *)points, numPoints, (const SDL_Rect *)&clip, (SDL_Rect *)NULL);
1159 SDLTest_AssertCheck(refPoints[i].x==points[i].x && refPoints[i].y==points[i].y,
1161 i, refPoints[i].x, refPoints[i].y, points[i].x, points[i].y);
1167 anyEnclosed = SDL_EnclosePoints((const SDL_Point *)points, numPoints, (const SDL_Rect *)&clip, &result);
1173 SDLTest_AssertCheck(refPoints[i].x==points[i].x && refPoints[i].y==points[i].y,
1175 i, refPoints[i].x, refPoints[i].y, points[i].x, points[i].y);
1189 anyEnclosed = SDL_EnclosePoints((const SDL_Point *)points, numPoints, (const SDL_Rect *)&clip, &result);
1206 SDL_Point points[1];
1215 anyEnclosed = SDL_EnclosePoints((const SDL_Point *)points, 0, (const SDL_Rect *)&clip, &result);
1218 anyEnclosed = SDL_EnclosePoints((const SDL_Point *)points, count, (const SDL_Rect *)&clip, &result);