r600g: fixup VP->FP output->input routing.
authorDave Airlie <airlied@redhat.com>
Fri, 24 Sep 2010 04:58:15 +0000 (14:58 +1000)
committerDave Airlie <airlied@redhat.com>
Fri, 24 Sep 2010 04:59:19 +0000 (14:59 +1000)
We need to map the TGSI semantics to each other using the hw semantic ids.

this fixes glsl-kwin-blur and glsl-routing.

src/gallium/drivers/r600/eg_hw_states.c
src/gallium/drivers/r600/r600_context.h
src/gallium/drivers/r600/r600_hw_states.c
src/gallium/drivers/r600/r600_shader.c

index 77ac444fe2ef9896864828ec7115189f844d8ec3..47c15b8dcc8eec80ac9f81990010651e162a76d1 100644 (file)
@@ -934,7 +934,7 @@ static int eg_ps_shader(struct r600_context *rctx, struct r600_context_state *rp
 
        radeon_state_init(state, rscreen->rw, R600_STATE_SHADER, 0, R600_SHADER_PS);
        for (i = 0; i < rshader->ninput; i++) {
-               tmp = S_028644_SEMANTIC(i);
+               tmp = S_028644_SEMANTIC(r600_find_vs_semantic_index(rctx, rshader, i));
                tmp |= S_028644_SEL_CENTROID(1);
                if (rshader->input[i].name == TGSI_SEMANTIC_POSITION)
                        have_pos = TRUE;
index c15e64329d8018ad5baefb5e5baeae30c51e6661..aec0dab338c22d08d365c66cce5ea78d9d1ceee0 100644 (file)
@@ -279,6 +279,7 @@ extern int r600_pipe_shader_create(struct pipe_context *ctx,
                        const struct tgsi_token *tokens);
 extern int r600_pipe_shader_update(struct pipe_context *ctx,
                                struct r600_context_state *rstate);
+extern int r600_find_vs_semantic_index(struct r600_context *rctx, struct r600_shader *rshader, int id);
 
 #define R600_ERR(fmt, args...) \
        fprintf(stderr, "EE %s/%s:%d - "fmt, __FILE__, __func__, __LINE__, ##args)
index 1e9c5ffbfc726d7e1df6a323497f6a56774c142e..9cbf12008b78f619bba88a806bc59931662c6a36 100644 (file)
@@ -1007,7 +1007,7 @@ static int r600_ps_shader(struct r600_context *rctx, struct r600_context_state *
 
        radeon_state_init(state, rscreen->rw, R600_STATE_SHADER, 0, R600_SHADER_PS);
        for (i = 0; i < rshader->ninput; i++) {
-               tmp = S_028644_SEMANTIC(i) | S_028644_SEL_CENTROID(1);
+               tmp = S_028644_SEMANTIC(r600_find_vs_semantic_index(rctx, rshader, i)) | S_028644_SEL_CENTROID(1);
                if (rshader->input[i].name == TGSI_SEMANTIC_POSITION)
                        have_pos = TRUE;
                if (rshader->input[i].name == TGSI_SEMANTIC_COLOR ||
index e18c6ce60524d0f25b9ee1af2a8818f40f96787c..3274f3be71a235a6382c947268193705ee58bdd4 100644 (file)
@@ -64,6 +64,22 @@ struct r600_shader_tgsi_instruction {
 static struct r600_shader_tgsi_instruction r600_shader_tgsi_instruction[], eg_shader_tgsi_instruction[];
 static int tgsi_helper_tempx_replicate(struct r600_shader_ctx *ctx);
 
+/* called from hw states files to find VS->FS mapping */ 
+int r600_find_vs_semantic_index(struct r600_context *rctx, struct r600_shader *rshader, int id)
+{
+       int i;
+       struct r600_shader *vs = &rctx->vs_shader->shader;
+       struct r600_shader_io *input = &rshader->input[id];
+
+       for (i = 0; i < vs->noutput; i++) {
+               if (input->name == vs->output[i].name &&
+                   input->sid == vs->output[i].sid) {
+                       return i - 1;
+               }
+       }
+       return 0;
+}
+
 static int r600_shader_update(struct pipe_context *ctx, struct r600_shader *shader)
 {
        struct r600_context *rctx = r600_context(ctx);