Mesa (glsl-pp-rework-2): glsl/apps: Predefine __GLSL_PP_PREDEFINED_MACRO_TEST for testing.

Michał Król michal at kemper.freedesktop.org
Thu Dec 10 11:59:45 UTC 2009


Module: Mesa
Branch: glsl-pp-rework-2
Commit: 417f36ccb062bee01aff92d6fcdf47af3ece3cb4
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=417f36ccb062bee01aff92d6fcdf47af3ece3cb4

Author: Michal Krol <michal at vmware.com>
Date:   Thu Dec 10 12:58:44 2009 +0100

glsl/apps: Predefine __GLSL_PP_PREDEFINED_MACRO_TEST for testing.

---

 src/glsl/apps/process.c |   10 ++++++++++
 1 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/src/glsl/apps/process.c b/src/glsl/apps/process.c
index 6c5c7bc..b793cc0 100644
--- a/src/glsl/apps/process.c
+++ b/src/glsl/apps/process.c
@@ -132,6 +132,16 @@ main(int argc,
       return 0;
    }
 
+   if (sl_pp_context_add_predefined(context, "__GLSL_PP_PREDEFINED_MACRO_TEST", "1")) {
+      fprintf(out, "$ERROR: `%s'\n", sl_pp_context_error_message(context));
+
+      printf("Error: %s\n", sl_pp_context_error_message(context));
+      sl_pp_context_destroy(context);
+      free(tokens);
+      fclose(out);
+      return 0;
+   }
+
    if (sl_pp_process(context, &tokens[tokens_eaten], &outtokens)) {
       fprintf(out, "$ERROR: `%s'\n", sl_pp_context_error_message(context));
 




More information about the mesa-commit mailing list