Skip to content

Latest commit

 

History

History
136 lines (114 loc) · 3.59 KB

finderrors.c

File metadata and controls

136 lines (114 loc) · 3.59 KB
 
1
2
3
4
5
6
7
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
#include <sys/types.h>
#include <dirent.h>
#include <errno.h>
Apr 22, 2008
Apr 22, 2008
8
#include <unistd.h>
9
10
11
#include "mojoshader.h"
Apr 22, 2008
Apr 22, 2008
12
13
14
#define FINDERRORS_COMPILE_SHADERS 1
#if FINDERRORS_COMPILE_SHADERS
Apr 22, 2008
Apr 22, 2008
15
#define GL_GLEXT_PROTOTYPES 1
Apr 24, 2008
Apr 24, 2008
16
#define GL_GLEXT_LEGACY 1
Apr 22, 2008
Apr 22, 2008
17
#include "SDL.h"
Apr 22, 2008
Apr 22, 2008
18
19
#include "gl.h"
#include "glext.h"
Apr 22, 2008
Apr 22, 2008
20
21
#endif
Apr 22, 2008
Apr 22, 2008
22
#define report printf
Apr 22, 2008
Apr 22, 2008
23
Apr 22, 2008
Apr 22, 2008
24
static int do_dir(const char *dname, const char *profile)
25
26
27
28
29
30
{
const int dirlen = strlen(dname) + 1;
int total = 0;
DIR *dirp = opendir(dname);
if (dirp != NULL)
{
Apr 22, 2008
Apr 22, 2008
31
int do_quit = 0;
32
33
34
struct dirent *dent;
while ((dent = readdir(dirp)) != NULL)
{
Apr 22, 2008
Apr 22, 2008
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#if FINDERRORS_COMPILE_SHADERS
SDL_Event e; // pump event queue to keep OS happy.
while (SDL_PollEvent(&e))
{
if (e.type == SDL_QUIT)
do_quit = 1;
} // while
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
SDL_GL_SwapBuffers();
#endif
if (do_quit)
{
report("FAIL: user requested quit!\n");
break;
} // if
52
53
54
55
if (strstr(dent->d_name, ".bytecode") == NULL)
continue;
total++;
Apr 22, 2008
Apr 22, 2008
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
char *fname = (char *) alloca(strlen(dent->d_name) + dirlen);
sprintf(fname, "%s/%s", dname, dent->d_name);
FILE *io = fopen(fname, "rb");
if (io == NULL)
{
report("FAIL: %s fopen() failed.\n", fname);
continue;
} // if
static unsigned char buf[1024 * 256];
int rc = fread(buf, 1, sizeof (buf), io);
fclose(io);
if (rc == -1)
{
report("FAIL: %s %s\n", fname, strerror(errno));
continue;
} // if
Apr 27, 2008
Apr 27, 2008
75
76
77
78
79
80
81
82
#if FINDERRORS_COMPILE_SHADERS
MOJOSHADER_glShader *shader = MOJOSHADER_glCompileShader(buf, rc);
if (shader == NULL)
report("FAIL: %s %s\n", fname, MOJOSHADER_glGetError());
else
report("PASS: %s\n", fname);
MOJOSHADER_glDeleteShader(shader);
#else
Apr 22, 2008
Apr 22, 2008
83
84
85
86
const MOJOSHADER_parseData *pd = MOJOSHADER_parse(profile, buf, rc, 0, 0, 0);
if (pd->error != NULL)
report("FAIL: %s %s\n", fname, pd->error);
else
Apr 27, 2008
Apr 27, 2008
87
report("PASS: %s\n", fname);
Apr 22, 2008
Apr 22, 2008
88
MOJOSHADER_freeParseData(pd);
Apr 27, 2008
Apr 27, 2008
89
#endif
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
} // while
closedir(dirp);
} // if
return total;
} // do_dir
int main(int argc, char **argv)
{
//printf("MojoShader finderrors\n");
//printf("Compiled against version %d\n", MOJOSHADER_VERSION);
//printf("Linked against version %d\n", MOJOSHADER_version());
//printf("\n");
if (argc <= 2)
printf("\n\nUSAGE: %s <profile> [dir1] ... [dirN]\n\n", argv[0]);
else
{
int total = 0;
Apr 22, 2008
Apr 22, 2008
110
int i;
Apr 27, 2008
Apr 27, 2008
111
const char *profile = argv[1];
112
Apr 22, 2008
Apr 22, 2008
113
114
#if FINDERRORS_COMPILE_SHADERS
SDL_Init(SDL_INIT_VIDEO);
Apr 27, 2008
Apr 27, 2008
115
SDL_GL_LoadLibrary(NULL);
Apr 22, 2008
Apr 22, 2008
116
SDL_SetVideoMode(640, 480, 0, SDL_OPENGL);
Apr 22, 2008
Apr 22, 2008
117
glClearColor(0.0f, 0.0f, 0.0f, 1.0f);
Apr 27, 2008
Apr 27, 2008
118
MOJOSHADER_glInit(profile, SDL_GL_GetProcAddress, 0, 0, 0);
Apr 22, 2008
Apr 22, 2008
119
120
#endif
121
for (i = 2; i < argc; i++)
Apr 22, 2008
Apr 22, 2008
122
total += do_dir(argv[i], profile);
123
124
125
printf("Saw %d bytecode files.\n", total);
Apr 22, 2008
Apr 22, 2008
126
#if FINDERRORS_COMPILE_SHADERS
Apr 27, 2008
Apr 27, 2008
127
MOJOSHADER_glDeinit();
Apr 22, 2008
Apr 22, 2008
128
129
SDL_Quit();
#endif
130
131
132
133
134
135
} // else
return 0;
} // main
// end of finderrors.c ...