HomeSort by relevance Sort by last modified time
    Searched defs:testSurface (Results 1 - 3 of 3) sorted by null

  /prebuilts/misc/windows/sdl2/test/
testautomation_render.c 953 SDL_Surface *testSurface;
969 testSurface = SDL_CreateRGBSurfaceFrom(pixels, TESTRENDER_SCREEN_W, TESTRENDER_SCREEN_H, 32, TESTRENDER_SCREEN_W*4,
971 SDLTest_AssertCheck(testSurface != NULL, "Verify result from SDL_CreateRGBSurfaceFrom is not NULL");
974 result = SDLTest_CompareSurfaces( testSurface, referenceSurface, allowable_error );
979 SDL_FreeSurface(testSurface);
    [all...]
testautomation_surface.c 21 static SDL_Surface *testSurface = NULL;
25 #define TEST_SURFACE_WIDTH testSurface->w
26 #define TEST_SURFACE_HEIGHT testSurface->h
51 testSurface = SDL_CreateRGBSurface(SDL_SWSURFACE, referenceSurface->w, referenceSurface->h, 32, rmask, gmask, bmask, amask);
52 SDLTest_AssertCheck(testSurface != NULL, "Check that testSurface is not NULL");
53 if (testSurface != NULL) {
55 result = SDL_SetSurfaceBlendMode(testSurface, blendMode);
57 result = SDL_GetSurfaceBlendMode(testSurface, &currentBlendMode);
68 SDL_FreeSurface(testSurface);
    [all...]
  /cts/tests/camera/src/android/hardware/camera2/cts/
ExtendedCameraCharacteristicsTest.java     [all...]

Completed in 112 milliseconds