summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichal Krol <michal@vmware.com>2009-12-20 21:13:26 +0100
committerMichal Krol <michal@vmware.com>2009-12-20 21:19:10 +0100
commit1071ad70f54aa31fcf96b3adc3911087854ab424 (patch)
tree99267ce5f8c95f42d0ab0f2ddf1b1fd0490b4b18 /src
parent1cc9610f88d6b9921447c15928ee5162c3e22132 (diff)
glsl/apps: Update after glsl cl interface changes.
Diffstat (limited to 'src')
-rw-r--r--src/glsl/apps/compile.c37
1 files changed, 2 insertions, 35 deletions
diff --git a/src/glsl/apps/compile.c b/src/glsl/apps/compile.c
index 4181281ee7..c9a830b9f3 100644
--- a/src/glsl/apps/compile.c
+++ b/src/glsl/apps/compile.c
@@ -51,9 +51,7 @@ main(int argc,
char errmsg[100] = "";
struct sl_pp_context *context;
unsigned int version;
- struct sl_pp_token_info *outtokens;
FILE *out;
- unsigned int i, j;
unsigned char *outbytes;
unsigned int cboutbytes;
unsigned int shader_type;
@@ -147,38 +145,7 @@ main(int argc,
return 0;
}
- if (sl_pp_process(context, &outtokens)) {
- unsigned int errline;
-
- sl_pp_context_error_position(context, NULL, &errline);
-
- fprintf(out, "$ERROR: (%u) `%s'\n", errline, sl_pp_context_error_message(context));
-
- printf("Error: (%u) %s\n", errline, sl_pp_context_error_message(context));
- sl_pp_context_destroy(context);
- free(inbuf);
- fclose(out);
- return 0;
- }
-
- free(inbuf);
-
- for (i = j = 0; outtokens[i].token != SL_PP_EOF; i++) {
- switch (outtokens[i].token) {
- case SL_PP_NEWLINE:
- case SL_PP_EXTENSION_REQUIRE:
- case SL_PP_EXTENSION_ENABLE:
- case SL_PP_EXTENSION_WARN:
- case SL_PP_EXTENSION_DISABLE:
- case SL_PP_LINE:
- break;
- default:
- outtokens[j++] = outtokens[i];
- }
- }
- outtokens[j] = outtokens[i];
-
- if (sl_cl_compile(context, outtokens, shader_type, 1, &outbytes, &cboutbytes, errmsg, sizeof(errmsg)) == 0) {
+ if (sl_cl_compile(context, shader_type, 1, &outbytes, &cboutbytes, errmsg, sizeof(errmsg)) == 0) {
unsigned int i;
unsigned int line = 0;
@@ -218,7 +185,7 @@ main(int argc,
}
sl_pp_context_destroy(context);
- free(outtokens);
+ free(inbuf);
fclose(out);
return 0;
}