Skip to content

Latest commit

 

History

History
81 lines (70 loc) · 1.92 KB

testoutput.c

File metadata and controls

81 lines (70 loc) · 1.92 KB
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/**
* MojoShader; generate shader programs from bytecode of compiled
* Direct3D shaders.
*
* Please see the file LICENSE.txt in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/
#include <stdio.h>
#include <stdlib.h>
#include "mojoshader.h"
static int do_parse(const unsigned char *buf, const int len, const char *prof)
{
const MOJOSHADER_parseData *pd;
int retval = 0;
Aug 26, 2008
Aug 26, 2008
19
pd = MOJOSHADER_parse(prof, buf, len, NULL, 0, NULL, NULL, NULL);
Feb 3, 2009
Feb 3, 2009
20
21
22
23
24
if (pd->error_count > 0)
{
int i;
for (i = 0; i < pd->error_count; i++)
{
Feb 12, 2009
Feb 12, 2009
25
26
printf("%s:%d: ERROR: %s\n",
pd->errors[i].filename ? pd->errors[i].filename : "???",
Feb 3, 2009
Feb 3, 2009
27
28
29
30
pd->errors[i].error_position,
pd->errors[i].error);
} // for
} // if
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
else
{
retval = 1;
if (pd->output != NULL)
{
int i;
for (i = 0; i < pd->output_len; i++)
putchar((int) pd->output[i]);
printf("\n");
} // if
} // else
printf("\n\n");
MOJOSHADER_freeParseData(pd);
return retval;
} // do_parse
int main(int argc, char **argv)
{
int retval = 0;
if (argc <= 2)
printf("\n\nUSAGE: %s <profile> [file1] ... [fileN]\n\n", argv[0]);
else
{
const char *profile = argv[1];
int i;
for (i = 2; i < argc; i++)
{
FILE *io = fopen(argv[i], "rb");
if (io == NULL)
printf(" ... fopen('%s') failed.\n", argv[i]);
else
{
unsigned char *buf = (unsigned char *) malloc(1000000);
int rc = fread(buf, 1, 1000000, io);
fclose(io);
if (!do_parse(buf, rc, profile))
retval = 1;
free(buf);
} // else
} // for
} // else
return retval;
} // main
// end of testoutput.c ...