Fixed swizzle of SDL_FillRect() on 24-bit surface (thanks, "nagydavid91"!).
Fixes Bugzilla #2986.
1 /* See COPYING.txt for the full license governing this code. */
3 * \file SDL_visualtest_random_variator.h
5 * Header for the random variator.
8 #include "SDL_visualtest_harness_argparser.h"
9 #include "SDL_visualtest_variator_common.h"
11 #ifndef _SDL_visualtest_random_variator_h
12 #define _SDL_visualtest_random_variator_h
14 /* Set up for C function definitions, even when using C++ */
20 * Struct for the variator that randomly generates variations of command line
21 * arguments to the SUT.
23 typedef struct SDLVisualTest_RandomVariator
25 /*! The current variation. */
26 SDLVisualTest_Variation variation;
27 /*! Configuration object for the SUT that the variator is running for. */
28 SDLVisualTest_SUTConfig config;
29 /*! Buffer to store the arguments string built from the variation */
30 char buffer[MAX_SUT_ARGS_LEN];
31 } SDLVisualTest_RandomVariator;
34 * Initializes the variator.
36 * \return 1 on success, 0 on failure
38 int SDLVisualTest_InitRandomVariator(SDLVisualTest_RandomVariator* variator,
39 SDLVisualTest_SUTConfig* config, Uint64 seed);
42 * Generates a new random variation.
44 * \return The arguments string representing the random variation on success, and
45 * NULL on failure. The pointer returned should not be freed.
47 char* SDLVisualTest_GetNextRandomVariation(SDLVisualTest_RandomVariator* variator);
50 * Frees any resources associated with the variator.
52 void SDLVisualTest_FreeRandomVariator(SDLVisualTest_RandomVariator* variator);
54 /* Ends C function definitions when using C++ */
59 #endif /* _SDL_visualtest_random_variator_h */