Home | History | Annotate | Download | only in test

Lines Matching defs:currentY

941   int currentX, currentY;
994 currentY = desiredY + 1;
995 SDL_GetWindowPosition(window, &currentX, &currentY);
998 SDLTest_AssertCheck(desiredY == currentY, "Verify returned Y position; expected: %d, got: %d", desiredY, currentY);
1007 currentY = desiredY + 1;
1008 SDL_GetWindowPosition(window, NULL, &currentY);
1010 SDLTest_AssertCheck(desiredY == currentY, "Verify returned Y position; expected: %d, got: %d", desiredY, currentY);
1025 currentY = referenceY;
1032 SDL_GetWindowPosition(NULL, &currentX, &currentY);
1035 currentX == referenceX && currentY == referenceY,
1038 currentY);