Breaking tests in surface to several smaller tests.
This commit is contained in:
parent
6d3454e153
commit
022eceb59a
2 changed files with 335 additions and 76 deletions
|
@ -88,7 +88,7 @@ TearDown(void *arg)
|
||||||
void
|
void
|
||||||
dummycase1(void *arg)
|
dummycase1(void *arg)
|
||||||
{
|
{
|
||||||
AssertEquals(5, 5, "Assert message");
|
//AssertEquals(5, 5, "Assert message");
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
|
@ -8,6 +8,8 @@
|
||||||
|
|
||||||
#include "../SDL_test.h"
|
#include "../SDL_test.h"
|
||||||
|
|
||||||
|
#include <sys/stat.h>
|
||||||
|
|
||||||
/* Test case references */
|
/* Test case references */
|
||||||
static const TestCaseReference test1 =
|
static const TestCaseReference test1 =
|
||||||
(TestCaseReference){ "surface_testLoad", "Tests sprite loading.", TEST_ENABLED, 0, 0};
|
(TestCaseReference){ "surface_testLoad", "Tests sprite loading.", TEST_ENABLED, 0, 0};
|
||||||
|
@ -16,15 +18,36 @@ static const TestCaseReference test2 =
|
||||||
(TestCaseReference){ "surface_testBlit", "Tests some blitting routines.", TEST_ENABLED, 0, 0};
|
(TestCaseReference){ "surface_testBlit", "Tests some blitting routines.", TEST_ENABLED, 0, 0};
|
||||||
|
|
||||||
static const TestCaseReference test3 =
|
static const TestCaseReference test3 =
|
||||||
(TestCaseReference){ "surface_testBlitBlend", "Tests some more blitting routines.", TEST_ENABLED, 0, 0};
|
(TestCaseReference){ "surface_testBlitBlendNone", "Tests some more blitting routines.", TEST_ENABLED, 0, 0};
|
||||||
|
|
||||||
static const TestCaseReference test4 =
|
static const TestCaseReference test4 =
|
||||||
(TestCaseReference){ "surface_testLoadFailure", "Tests sprite loading. A failure case.", TEST_ENABLED, 0, 0};
|
(TestCaseReference){ "surface_testLoadFailure", "Tests sprite loading. A failure case.", TEST_ENABLED, 0, 0};
|
||||||
|
|
||||||
|
static const TestCaseReference test5 =
|
||||||
|
(TestCaseReference){ "surface_testConversion", "Tests sprite conversion.", TEST_ENABLED, 0, 0};
|
||||||
|
|
||||||
|
static const TestCaseReference test6 =
|
||||||
|
(TestCaseReference){ "surface_testBlitColorMod", "Tests some blitting routines with color mod.", TEST_ENABLED, 0, 0};
|
||||||
|
|
||||||
|
static const TestCaseReference test7 =
|
||||||
|
(TestCaseReference){ "surface_testBlitAlphaMod", "Tests some blitting routines with alpha mod.", TEST_ENABLED, 0, 0};
|
||||||
|
|
||||||
|
static const TestCaseReference test8 =
|
||||||
|
(TestCaseReference){ "surface_testBlitBlendLoop", "Test blittin routines with blending", TEST_ENABLED, 0, 0};
|
||||||
|
|
||||||
|
static const TestCaseReference test9 =
|
||||||
|
(TestCaseReference){ "surface_testBlitBlendBlend", "Tests some more blitting routines.", TEST_ENABLED, 0, 0};
|
||||||
|
|
||||||
|
static const TestCaseReference test10 =
|
||||||
|
(TestCaseReference){ "surface_testBlitBlendAdd", "Tests some more blitting routines.", TEST_ENABLED, 0, 0};
|
||||||
|
|
||||||
|
static const TestCaseReference test11 =
|
||||||
|
(TestCaseReference){ "surface_testBlitBlendMod", "Tests some more blitting routines.", TEST_ENABLED, 0, 0};
|
||||||
|
|
||||||
/* Test suite */
|
/* Test suite */
|
||||||
extern const TestCaseReference *testSuite[] = {
|
extern const TestCaseReference *testSuite[] = {
|
||||||
&test1, &test2, &test3, &test4, NULL
|
&test1, &test2, &test3, &test4, &test5,
|
||||||
|
&test6, &test7, &test8, &test9, &test10, &test11, NULL
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -91,6 +114,34 @@ _CreateTestSurface()
|
||||||
return testsur;
|
return testsur;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*!
|
||||||
|
* Create test surface from in-memory image
|
||||||
|
*/
|
||||||
|
SDL_Surface *
|
||||||
|
_createTestSurfaceFromMemory()
|
||||||
|
{
|
||||||
|
SDL_Surface *face = NULL;
|
||||||
|
|
||||||
|
/* Create face surface. */
|
||||||
|
face = SDL_CreateRGBSurfaceFrom( (void*)img_face.pixel_data,
|
||||||
|
img_face.width, img_face.height, 32, img_face.width*4,
|
||||||
|
#if (SDL_BYTEORDER == SDL_BIG_ENDIAN)
|
||||||
|
0xff000000, /* Red bit mask. */
|
||||||
|
0x00ff0000, /* Green bit mask. */
|
||||||
|
0x0000ff00, /* Blue bit mask. */
|
||||||
|
0x000000ff /* Alpha bit mask. */
|
||||||
|
#else
|
||||||
|
0x000000ff, /* Red bit mask. */
|
||||||
|
0x0000ff00, /* Green bit mask. */
|
||||||
|
0x00ff0000, /* Blue bit mask. */
|
||||||
|
0xff000000 /* Alpha bit mask. */
|
||||||
|
#endif
|
||||||
|
);
|
||||||
|
AssertTrue(face != NULL, "SDL_CreateRGBSurfaceFrom");
|
||||||
|
|
||||||
|
return face;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Tests a blend mode.
|
* @brief Tests a blend mode.
|
||||||
*/
|
*/
|
||||||
|
@ -132,9 +183,18 @@ void _testBlitBlendMode(SDL_Surface *testsur, SDL_Surface *face, int mode)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
_AssertFileExist(const char *filename)
|
||||||
|
{
|
||||||
|
struct stat st;
|
||||||
|
int ret = stat(filename, &st);
|
||||||
|
|
||||||
|
AssertTrue(ret == 0, "Does file %s exist", filename);
|
||||||
|
}
|
||||||
|
|
||||||
/* Test case functions */
|
/* Test case functions */
|
||||||
/**
|
/**
|
||||||
* @brief Tests sprite loading.
|
* @brief Tests sprite loading
|
||||||
*/
|
*/
|
||||||
void surface_testLoad(void *arg)
|
void surface_testLoad(void *arg)
|
||||||
{
|
{
|
||||||
|
@ -142,17 +202,35 @@ void surface_testLoad(void *arg)
|
||||||
SDL_Surface *face, *rface;
|
SDL_Surface *face, *rface;
|
||||||
|
|
||||||
/* Clear surface. */
|
/* Clear surface. */
|
||||||
|
/*
|
||||||
ret = SDL_FillRect( testsur, NULL,
|
ret = SDL_FillRect( testsur, NULL,
|
||||||
SDL_MapRGB( testsur->format, 0, 0, 0 ) );
|
SDL_MapRGB( testsur->format, 0, 0, 0 ) );
|
||||||
AssertTrue(ret == 0, "SDL_FillRect");
|
AssertTrue(ret == 0, "SDL_FillRect");
|
||||||
|
*/
|
||||||
|
|
||||||
/* Create the blit surface. */
|
/* Create the blit surface. */
|
||||||
#ifdef __APPLE__
|
const char *filename = "icon.bmp";
|
||||||
face = SDL_LoadBMP("icon.bmp");
|
_AssertFileExist(filename);
|
||||||
#else
|
|
||||||
face = SDL_LoadBMP("../icon.bmp");
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
face = SDL_LoadBMP(filename);
|
||||||
|
AssertTrue(face != NULL, "SDL_CreateLoadBmp");
|
||||||
|
|
||||||
|
AssertTrue(face->w == 32, "testing icon width");
|
||||||
|
AssertTrue(face->h == 32, "testing icon height");
|
||||||
|
}
|
||||||
|
|
||||||
|
/*!
|
||||||
|
* Tests sprite conversion.
|
||||||
|
*/
|
||||||
|
void surface_testConversion(void *arg)
|
||||||
|
{
|
||||||
|
SDL_Surface *rface = NULL, *face = NULL;
|
||||||
|
int ret = 0;
|
||||||
|
|
||||||
|
const char *filename = "icon.bmp";
|
||||||
|
_AssertFileExist(filename);
|
||||||
|
|
||||||
|
face = SDL_LoadBMP(filename);
|
||||||
AssertTrue(face != NULL, "SDL_CreateLoadBmp");
|
AssertTrue(face != NULL, "SDL_CreateLoadBmp");
|
||||||
|
|
||||||
/* Set transparent pixel as the pixel at (0,0) */
|
/* Set transparent pixel as the pixel at (0,0) */
|
||||||
|
@ -184,7 +262,6 @@ void surface_testLoadFailure(void *arg)
|
||||||
AssertTrue(face == NULL, "SDL_CreateLoadBmp");
|
AssertTrue(face == NULL, "SDL_CreateLoadBmp");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Tests some blitting routines.
|
* @brief Tests some blitting routines.
|
||||||
*/
|
*/
|
||||||
|
@ -196,27 +273,13 @@ void surface_testBlit(void *arg)
|
||||||
int i, j, ni, nj;
|
int i, j, ni, nj;
|
||||||
|
|
||||||
/* Clear surface. */
|
/* Clear surface. */
|
||||||
|
|
||||||
ret = SDL_FillRect( testsur, NULL,
|
ret = SDL_FillRect( testsur, NULL,
|
||||||
SDL_MapRGB( testsur->format, 0, 0, 0 ) );
|
SDL_MapRGB( testsur->format, 0, 0, 0 ) );
|
||||||
|
|
||||||
AssertTrue(ret == 0, "SDL_FillRect");
|
AssertTrue(ret == 0, "SDL_FillRect");
|
||||||
|
|
||||||
/* Create face surface. */
|
face = _createTestSurfaceFromMemory();
|
||||||
face = SDL_CreateRGBSurfaceFrom( (void*)img_face.pixel_data,
|
|
||||||
img_face.width, img_face.height, 32, img_face.width*4,
|
|
||||||
#if (SDL_BYTEORDER == SDL_BIG_ENDIAN)
|
|
||||||
0xff000000, /* Red bit mask. */
|
|
||||||
0x00ff0000, /* Green bit mask. */
|
|
||||||
0x0000ff00, /* Blue bit mask. */
|
|
||||||
0x000000ff /* Alpha bit mask. */
|
|
||||||
#else
|
|
||||||
0x000000ff, /* Red bit mask. */
|
|
||||||
0x0000ff00, /* Green bit mask. */
|
|
||||||
0x00ff0000, /* Blue bit mask. */
|
|
||||||
0xff000000 /* Alpha bit mask. */
|
|
||||||
#endif
|
|
||||||
);
|
|
||||||
AssertTrue(face != NULL, "SDL_CreateRGBSurfaceFrom");
|
|
||||||
|
|
||||||
/* Constant values. */
|
/* Constant values. */
|
||||||
rect.w = face->w;
|
rect.w = face->w;
|
||||||
|
@ -241,6 +304,35 @@ void surface_testBlit(void *arg)
|
||||||
AssertTrue(surface_compare( testsur, &img_blit, 0 ) == 0,
|
AssertTrue(surface_compare( testsur, &img_blit, 0 ) == 0,
|
||||||
"Comparing blitting output (normal blit).");
|
"Comparing blitting output (normal blit).");
|
||||||
|
|
||||||
|
/* Clean up. */
|
||||||
|
SDL_FreeSurface( face );
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Tests some blitting routines with color mod
|
||||||
|
*/
|
||||||
|
void surface_testBlitColorMod(void *arg)
|
||||||
|
{
|
||||||
|
int ret;
|
||||||
|
SDL_Rect rect;
|
||||||
|
SDL_Surface *face;
|
||||||
|
int i, j, ni, nj;
|
||||||
|
|
||||||
|
/* Clear surface. */
|
||||||
|
|
||||||
|
ret = SDL_FillRect( testsur, NULL,
|
||||||
|
SDL_MapRGB( testsur->format, 0, 0, 0 ) );
|
||||||
|
|
||||||
|
AssertTrue(ret == 0, "SDL_FillRect");
|
||||||
|
|
||||||
|
face = _createTestSurfaceFromMemory();
|
||||||
|
|
||||||
|
/* Constant values. */
|
||||||
|
rect.w = face->w;
|
||||||
|
rect.h = face->h;
|
||||||
|
ni = testsur->w - face->w;
|
||||||
|
nj = testsur->h - face->h;
|
||||||
|
|
||||||
/* Clear surface. */
|
/* Clear surface. */
|
||||||
ret = SDL_FillRect( testsur, NULL,
|
ret = SDL_FillRect( testsur, NULL,
|
||||||
SDL_MapRGB( testsur->format, 0, 0, 0 ) );
|
SDL_MapRGB( testsur->format, 0, 0, 0 ) );
|
||||||
|
@ -267,6 +359,35 @@ void surface_testBlit(void *arg)
|
||||||
AssertTrue(surface_compare( testsur, &img_blitColour, 0 ) == 0,
|
AssertTrue(surface_compare( testsur, &img_blitColour, 0 ) == 0,
|
||||||
"Comparing blitting output (using SDL_SetSurfaceColorMod).");
|
"Comparing blitting output (using SDL_SetSurfaceColorMod).");
|
||||||
|
|
||||||
|
/* Clean up. */
|
||||||
|
SDL_FreeSurface( face );
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Tests some blitting routines with alpha mod
|
||||||
|
*/
|
||||||
|
void surface_testBlitAlphaMod(void *arg)
|
||||||
|
{
|
||||||
|
int ret;
|
||||||
|
SDL_Rect rect;
|
||||||
|
SDL_Surface *face;
|
||||||
|
int i, j, ni, nj;
|
||||||
|
|
||||||
|
/* Clear surface. */
|
||||||
|
|
||||||
|
ret = SDL_FillRect( testsur, NULL,
|
||||||
|
SDL_MapRGB( testsur->format, 0, 0, 0 ) );
|
||||||
|
|
||||||
|
AssertTrue(ret == 0, "SDL_FillRect");
|
||||||
|
|
||||||
|
face = _createTestSurfaceFromMemory();
|
||||||
|
|
||||||
|
/* Constant values. */
|
||||||
|
rect.w = face->w;
|
||||||
|
rect.h = face->h;
|
||||||
|
ni = testsur->w - face->w;
|
||||||
|
nj = testsur->h - face->h;
|
||||||
|
|
||||||
/* Clear surface. */
|
/* Clear surface. */
|
||||||
ret = SDL_FillRect( testsur, NULL,
|
ret = SDL_FillRect( testsur, NULL,
|
||||||
SDL_MapRGB( testsur->format, 0, 0, 0 ) );
|
SDL_MapRGB( testsur->format, 0, 0, 0 ) );
|
||||||
|
@ -300,10 +421,11 @@ void surface_testBlit(void *arg)
|
||||||
SDL_FreeSurface( face );
|
SDL_FreeSurface( face );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Tests some more blitting routines.
|
* @brief Tests some more blitting routines.
|
||||||
*/
|
*/
|
||||||
void surface_testBlitBlend(void *arg)
|
void surface_testBlitBlendNone(void *arg)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
SDL_Rect rect;
|
SDL_Rect rect;
|
||||||
|
@ -314,25 +436,9 @@ void surface_testBlitBlend(void *arg)
|
||||||
/* Clear surface. */
|
/* Clear surface. */
|
||||||
ret = SDL_FillRect( testsur, NULL,
|
ret = SDL_FillRect( testsur, NULL,
|
||||||
SDL_MapRGB( testsur->format, 0, 0, 0 ) );
|
SDL_MapRGB( testsur->format, 0, 0, 0 ) );
|
||||||
|
|
||||||
AssertTrue(ret == 0, "SDL_FillRect");
|
AssertTrue(ret == 0, "SDL_FillRect");
|
||||||
|
|
||||||
/* Create the blit surface. */
|
face = _createTestSurfaceFromMemory();
|
||||||
face = SDL_CreateRGBSurfaceFrom( (void*)img_face.pixel_data,
|
|
||||||
img_face.width, img_face.height, 32, img_face.width*4,
|
|
||||||
#if (SDL_BYTEORDER == SDL_BIG_ENDIAN)
|
|
||||||
0xff000000, /* Red bit mask. */
|
|
||||||
0x00ff0000, /* Green bit mask. */
|
|
||||||
0x0000ff00, /* Blue bit mask. */
|
|
||||||
0x000000ff /* Alpha bit mask. */
|
|
||||||
#else
|
|
||||||
0x000000ff, /* Red bit mask. */
|
|
||||||
0x0000ff00, /* Green bit mask. */
|
|
||||||
0x00ff0000, /* Blue bit mask. */
|
|
||||||
0xff000000 /* Alpha bit mask. */
|
|
||||||
#endif
|
|
||||||
);
|
|
||||||
AssertTrue(face != NULL, "SDL_CreateRGBSurfaceFrom");
|
|
||||||
|
|
||||||
/* Set alpha mod. */
|
/* Set alpha mod. */
|
||||||
// TODO alpha value could be generated by fuzzer
|
// TODO alpha value could be generated by fuzzer
|
||||||
|
@ -349,10 +455,8 @@ void surface_testBlitBlend(void *arg)
|
||||||
/* Constant values. */
|
/* Constant values. */
|
||||||
rect.w = face->w;
|
rect.w = face->w;
|
||||||
rect.h = face->h;
|
rect.h = face->h;
|
||||||
|
|
||||||
/* Test None. */
|
/* Test None. */
|
||||||
_testBlitBlendMode( testsur, face, SDL_BLENDMODE_NONE );
|
_testBlitBlendMode( testsur, face, SDL_BLENDMODE_NONE );
|
||||||
|
|
||||||
AssertTrue(surface_compare( testsur, &img_blendNone, 0 ) == 0,
|
AssertTrue(surface_compare( testsur, &img_blendNone, 0 ) == 0,
|
||||||
"Comparing blitting blending output (using SDL_BLENDMODE_NONE).");
|
"Comparing blitting blending output (using SDL_BLENDMODE_NONE).");
|
||||||
|
|
||||||
|
@ -370,6 +474,161 @@ void surface_testBlitBlend(void *arg)
|
||||||
_testBlitBlendMode( testsur, face, SDL_BLENDMODE_MOD );
|
_testBlitBlendMode( testsur, face, SDL_BLENDMODE_MOD );
|
||||||
AssertTrue(surface_compare( testsur, &img_blendMod, 0 ) == 0,
|
AssertTrue(surface_compare( testsur, &img_blendMod, 0 ) == 0,
|
||||||
"Comparing blitting blending output not the same (using SDL_BLENDMODE_MOD).");
|
"Comparing blitting blending output not the same (using SDL_BLENDMODE_MOD).");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Tests some more blitting routines.
|
||||||
|
*/
|
||||||
|
void surface_testBlitBlendBlend(void *arg)
|
||||||
|
{
|
||||||
|
int ret;
|
||||||
|
SDL_Rect rect;
|
||||||
|
SDL_Surface *face;
|
||||||
|
int i, j, ni, nj;
|
||||||
|
int mode;
|
||||||
|
|
||||||
|
/* Clear surface. */
|
||||||
|
ret = SDL_FillRect( testsur, NULL,
|
||||||
|
SDL_MapRGB( testsur->format, 0, 0, 0 ) );
|
||||||
|
AssertTrue(ret == 0, "SDL_FillRect");
|
||||||
|
|
||||||
|
face = _createTestSurfaceFromMemory();
|
||||||
|
|
||||||
|
/* Set alpha mod. */
|
||||||
|
// TODO alpha value could be generated by fuzzer
|
||||||
|
ret = SDL_SetSurfaceAlphaMod( face, 100 );
|
||||||
|
AssertTrue(ret == 0, "SDL_SetSurfaceAlphaMod");
|
||||||
|
|
||||||
|
/* Steps to take. */
|
||||||
|
ni = testsur->w - face->w;
|
||||||
|
nj = testsur->h - face->h;
|
||||||
|
|
||||||
|
AssertTrue(ni != 0, "ni != 0");
|
||||||
|
AssertTrue(nj != 0, "nj != 0");
|
||||||
|
|
||||||
|
/* Constant values. */
|
||||||
|
rect.w = face->w;
|
||||||
|
rect.h = face->h;
|
||||||
|
|
||||||
|
/* Test Blend. */
|
||||||
|
_testBlitBlendMode( testsur, face, SDL_BLENDMODE_BLEND );
|
||||||
|
AssertTrue(surface_compare( testsur, &img_blendBlend, 0 ) == 0,
|
||||||
|
"Comparing blitting blending output (using SDL_BLENDMODE_BLEND).");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Tests some more blitting routines.
|
||||||
|
*/
|
||||||
|
void surface_testBlitBlendAdd(void *arg)
|
||||||
|
{
|
||||||
|
int ret;
|
||||||
|
SDL_Rect rect;
|
||||||
|
SDL_Surface *face;
|
||||||
|
int i, j, ni, nj;
|
||||||
|
int mode;
|
||||||
|
|
||||||
|
/* Clear surface. */
|
||||||
|
ret = SDL_FillRect( testsur, NULL,
|
||||||
|
SDL_MapRGB( testsur->format, 0, 0, 0 ) );
|
||||||
|
AssertTrue(ret == 0, "SDL_FillRect");
|
||||||
|
|
||||||
|
face = _createTestSurfaceFromMemory();
|
||||||
|
|
||||||
|
/* Set alpha mod. */
|
||||||
|
// TODO alpha value could be generated by fuzzer
|
||||||
|
ret = SDL_SetSurfaceAlphaMod( face, 100 );
|
||||||
|
AssertTrue(ret == 0, "SDL_SetSurfaceAlphaMod");
|
||||||
|
|
||||||
|
/* Steps to take. */
|
||||||
|
ni = testsur->w - face->w;
|
||||||
|
nj = testsur->h - face->h;
|
||||||
|
|
||||||
|
AssertTrue(ni != 0, "ni != 0");
|
||||||
|
AssertTrue(nj != 0, "nj != 0");
|
||||||
|
|
||||||
|
/* Constant values. */
|
||||||
|
rect.w = face->w;
|
||||||
|
rect.h = face->h;
|
||||||
|
|
||||||
|
/* Test Add. */
|
||||||
|
_testBlitBlendMode( testsur, face, SDL_BLENDMODE_ADD );
|
||||||
|
AssertTrue(surface_compare( testsur, &img_blendAdd, 0 ) == 0,
|
||||||
|
"Comparing blitting blending output (using SDL_BLENDMODE_ADD).");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Tests some more blitting routines.
|
||||||
|
*/
|
||||||
|
void surface_testBlitBlendMod(void *arg)
|
||||||
|
{
|
||||||
|
int ret;
|
||||||
|
SDL_Rect rect;
|
||||||
|
SDL_Surface *face;
|
||||||
|
int i, j, ni, nj;
|
||||||
|
int mode;
|
||||||
|
|
||||||
|
/* Clear surface. */
|
||||||
|
ret = SDL_FillRect( testsur, NULL,
|
||||||
|
SDL_MapRGB( testsur->format, 0, 0, 0 ) );
|
||||||
|
AssertTrue(ret == 0, "SDL_FillRect");
|
||||||
|
|
||||||
|
face = _createTestSurfaceFromMemory();
|
||||||
|
|
||||||
|
/* Set alpha mod. */
|
||||||
|
// TODO alpha value could be generated by fuzzer
|
||||||
|
ret = SDL_SetSurfaceAlphaMod( face, 100 );
|
||||||
|
AssertTrue(ret == 0, "SDL_SetSurfaceAlphaMod");
|
||||||
|
|
||||||
|
/* Steps to take. */
|
||||||
|
ni = testsur->w - face->w;
|
||||||
|
nj = testsur->h - face->h;
|
||||||
|
|
||||||
|
AssertTrue(ni != 0, "ni != 0");
|
||||||
|
AssertTrue(nj != 0, "nj != 0");
|
||||||
|
|
||||||
|
/* Constant values. */
|
||||||
|
rect.w = face->w;
|
||||||
|
rect.h = face->h;
|
||||||
|
/* Test None. */
|
||||||
|
|
||||||
|
/* Test Mod. */
|
||||||
|
_testBlitBlendMode( testsur, face, SDL_BLENDMODE_MOD );
|
||||||
|
AssertTrue(surface_compare( testsur, &img_blendMod, 0 ) == 0,
|
||||||
|
"Comparing blitting blending output (using SDL_BLENDMODE_MOD).");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Tests some more blitting routines with loop
|
||||||
|
*/
|
||||||
|
void surface_testBlitBlendLoop(void *arg) {
|
||||||
|
int ret;
|
||||||
|
SDL_Rect rect;
|
||||||
|
SDL_Surface *face;
|
||||||
|
int i, j, ni, nj;
|
||||||
|
int mode;
|
||||||
|
|
||||||
|
/* Clear surface. */
|
||||||
|
ret = SDL_FillRect( testsur, NULL,
|
||||||
|
SDL_MapRGB( testsur->format, 0, 0, 0 ) );
|
||||||
|
AssertTrue(ret == 0, "SDL_FillRect");
|
||||||
|
|
||||||
|
face = _createTestSurfaceFromMemory();
|
||||||
|
|
||||||
|
/* Set alpha mod. */
|
||||||
|
// TODO alpha value could be generated by fuzzer
|
||||||
|
ret = SDL_SetSurfaceAlphaMod( face, 100 );
|
||||||
|
AssertTrue(ret == 0, "SDL_SetSurfaceAlphaMod");
|
||||||
|
|
||||||
|
/* Steps to take. */
|
||||||
|
ni = testsur->w - face->w;
|
||||||
|
nj = testsur->h - face->h;
|
||||||
|
|
||||||
|
AssertTrue(ni != 0, "ni != 0");
|
||||||
|
AssertTrue(nj != 0, "nj != 0");
|
||||||
|
|
||||||
|
/* Constant values. */
|
||||||
|
rect.w = face->w;
|
||||||
|
rect.h = face->h;
|
||||||
|
|
||||||
/* Clear surface. */
|
/* Clear surface. */
|
||||||
ret = SDL_FillRect( testsur, NULL,
|
ret = SDL_FillRect( testsur, NULL,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue