Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
59 lines (50 loc) · 1.12 KB

testwm2.c

File metadata and controls

59 lines (50 loc) · 1.12 KB
 
Jul 24, 2006
Jul 24, 2006
2
3
#include <stdlib.h>
#include <stdio.h>
Jul 24, 2006
Jul 24, 2006
5
#include "common.h"
Jul 24, 2006
Jul 24, 2006
7
static CommonState *state;
8
9
10
11
12
/* Call this instead of exit(), so we can clean up SDL: atexit() is evil. */
static void
quit(int rc)
{
Jul 24, 2006
Jul 24, 2006
13
CommonQuit(state);
14
15
16
17
18
19
20
21
22
exit(rc);
}
int
main(int argc, char *argv[])
{
int i, done;
SDL_Event event;
Jul 24, 2006
Jul 24, 2006
23
24
25
26
/* Initialize test framework */
state = CommonCreateState(argv, SDL_INIT_VIDEO);
if (!state) {
return 1;
Jul 24, 2006
Jul 24, 2006
28
29
30
state->skip_renderer = SDL_TRUE;
for (i = 1; i < argc;) {
int consumed;
Jul 24, 2006
Jul 24, 2006
32
33
34
35
36
consumed = CommonArg(state, i);
if (consumed == 0) {
consumed = -1;
}
if (consumed < 0) {
Aug 28, 2006
Aug 28, 2006
37
fprintf(stderr, "Usage: %s %s\n", argv[0], CommonUsage(state));
Jul 24, 2006
Jul 24, 2006
40
i += consumed;
Jul 24, 2006
Jul 24, 2006
42
if (!CommonInit(state)) {
Jul 24, 2006
Jul 24, 2006
46
/* Main render loop */
47
48
49
50
done = 0;
while (!done) {
/* Check for events */
while (SDL_PollEvent(&event)) {
Jul 24, 2006
Jul 24, 2006
51
CommonEvent(state, &event, &done);
52
53
54
}
}
quit(0);
Oct 4, 2009
Oct 4, 2009
55
56
// keep the compiler happy ...
return(0);
57
58
59
}
/* vi: set ts=4 sw=4 expandtab: */