gallium/tgsi: hack around linker/archiver breakage
authorKeith Whitwell <keithw@vmware.com>
Thu, 30 Apr 2009 12:09:34 +0000 (13:09 +0100)
committerKeith Whitwell <keithw@vmware.com>
Fri, 8 May 2009 13:57:27 +0000 (14:57 +0100)
Add a dummy function which exists only so that tgsi_text_translate()
doesn't get magic-ed out of the libtgsi.a archive by the build system.
Don't remove unless you know this has been fixed - check on
mingw/scons builds as well.

src/gallium/auxiliary/tgsi/tgsi_transform.c

index 062c1be938a3852bde6572ddf855a7efe76739b6..bc9c18fd4a725df628b7b64f57a60c405cca832b 100644 (file)
@@ -198,3 +198,30 @@ tgsi_transform_shader(const struct tgsi_token *tokens_in,
 
    return ctx->ti;
 }
+
+
+#include "tgsi_text.h"
+
+extern int tgsi_transform_foo( struct tgsi_token *tokens_out,
+                               uint max_tokens_out );
+
+/* This function exists only so that tgsi_text_translate() doesn't get
+ * magic-ed out of the libtgsi.a archive by the build system.  Don't
+ * remove unless you know this has been fixed - check on mingw/scons
+ * builds as well.
+ */
+int
+tgsi_transform_foo( struct tgsi_token *tokens_out,
+                    uint max_tokens_out )
+{
+   const char *text = 
+      "FRAG1.1\n"
+      "DCL IN[0], COLOR, CONSTANT\n"
+      "DCL OUT[0], COLOR\n"
+      "  0: MOV OUT[0], IN[0]\n"
+      "  1: END";
+        
+   return tgsi_text_translate( text,
+                               tokens_out,
+                               max_tokens_out );
+}