Mercurial > sdl-ios-xcode
changeset 5165:e2b3f003e085
Updated for API changes
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Thu, 03 Feb 2011 02:42:50 -0800 |
parents | 1bd1e62e648d |
children | d72793305335 |
files | test/automated/render/render.c |
diffstat | 1 files changed, 1 insertions(+), 30 deletions(-) [+] |
line wrap: on
line diff
--- a/test/automated/render/render.c Thu Feb 03 01:30:28 2011 -0800 +++ b/test/automated/render/render.c Thu Feb 03 02:42:50 2011 -0800 @@ -38,7 +38,6 @@ static int render_hasTexAlpha (void); static int render_clearScreen (void); /* Testcases. */ -static int render_testReadWrite (void); static int render_testPrimitives (void); static int render_testPrimitivesBlend (void); static int render_testBlit (void); @@ -230,7 +229,7 @@ ); if (face == NULL) return 0; - tface = SDL_CreateTextureFromSurface(renderer, 0, face ); + tface = SDL_CreateTextureFromSurface(renderer, face); SDL_FreeSurface(face); return tface; @@ -347,31 +346,6 @@ /** - * @brief Test reading and writing framebuffer - */ -static int render_testReadWrite (void) -{ - int ret; - SDL_Rect rect; - - /* Write pixels. */ - rect.x = 0; - rect.y = 0; - rect.w = 80; - rect.h = 60; - ret = SDL_RenderWritePixels(renderer, &rect, SDL_PIXELFORMAT_RGB24, img_primitives.pixel_data, img_primitives.width*img_primitives.bytes_per_pixel ); - if (SDL_ATassert( "SDL_RenderWritePixels", ret==0) ) - return 1; - - /* See if it's the same. */ - if (render_compare( "Read/write output not the same.", &img_primitives, ALLOWABLE_ERROR_OPAQUE )) - return -1; - - return 0; -} - - -/** * @brief Tests the SDL primitives for rendering. */ static int render_testPrimitives (void) @@ -927,9 +901,6 @@ SDL_ATprintVerbose( 1, " Texture Alpha Mod supported\n" ); /* Software surface blitting. */ - ret = render_testReadWrite(); - if (ret) - return -1; ret = render_testPrimitives(); if (ret) return -1;