Mesa (master): draw: Disable rtasm compilation when using LLVM.

Jose Fonseca jrfonseca at kemper.freedesktop.org
Mon May 3 08:56:35 UTC 2010


Module: Mesa
Branch: master
Commit: d44c8ee568878899e4ce5d8e1d0fcf523aa62199
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=d44c8ee568878899e4ce5d8e1d0fcf523aa62199

Author: José Fonseca <jfonseca at vmware.com>
Date:   Mon May  3 09:53:12 2010 +0100

draw: Disable rtasm compilation when using LLVM.

Saves time and trouble.

---

 src/gallium/auxiliary/draw/draw_vs.c |   16 ++++++++++------
 1 files changed, 10 insertions(+), 6 deletions(-)

diff --git a/src/gallium/auxiliary/draw/draw_vs.c b/src/gallium/auxiliary/draw/draw_vs.c
index c2832ee..b9db886 100644
--- a/src/gallium/auxiliary/draw/draw_vs.c
+++ b/src/gallium/auxiliary/draw/draw_vs.c
@@ -85,18 +85,22 @@ struct draw_vertex_shader *
 draw_create_vertex_shader(struct draw_context *draw,
                           const struct pipe_shader_state *shader)
 {
-   struct draw_vertex_shader *vs;
+   struct draw_vertex_shader *vs = NULL;
 
    if (draw->dump_vs) {
       tgsi_dump(shader->tokens, 0);
    }
 
-   vs = draw_create_vs_sse( draw, shader );
-   if (!vs) {
+   if (!draw->pt.middle.llvm) {
+#if defined(PIPE_ARCH_X86)
+      vs = draw_create_vs_sse( draw, shader );
+#elif defined(PIPE_ARCH_PPC)
       vs = draw_create_vs_ppc( draw, shader );
-      if (!vs) {
-         vs = draw_create_vs_exec( draw, shader );
-      }
+#endif
+   }
+
+   if (!vs) {
+      vs = draw_create_vs_exec( draw, shader );
    }
 
    if (vs)




More information about the mesa-commit mailing list