summaryrefslogtreecommitdiffstats
path: root/src/mesa/program
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesa/program')
-rw-r--r--src/mesa/program/prog_to_nir.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/mesa/program/prog_to_nir.c b/src/mesa/program/prog_to_nir.c
index aa4f2aaf72a..cb1c19e9dfa 100644
--- a/src/mesa/program/prog_to_nir.c
+++ b/src/mesa/program/prog_to_nir.c
@@ -867,6 +867,11 @@ ptn_add_output_stores(struct ptn_compile *c)
*/
src = nir_channel(b, src, 2);
}
+ if (c->prog->Target == GL_VERTEX_PROGRAM_ARB &&
+ var->data.location == VARYING_SLOT_FOGC) {
+ /* result.fogcoord is a single component value */
+ src = nir_channel(b, src, 0);
+ }
unsigned num_components = glsl_get_vector_elements(var->type);
nir_store_var(b, var, src, (1 << num_components) - 1);
}
@@ -950,7 +955,8 @@ setup_registers_and_variables(struct ptn_compile *c)
reg->num_components = 4;
nir_variable *var = rzalloc(shader, nir_variable);
- if (c->prog->Target == GL_FRAGMENT_PROGRAM_ARB && i == FRAG_RESULT_DEPTH)
+ if ((c->prog->Target == GL_FRAGMENT_PROGRAM_ARB && i == FRAG_RESULT_DEPTH) ||
+ (c->prog->Target == GL_VERTEX_PROGRAM_ARB && i == VARYING_SLOT_FOGC))
var->type = glsl_float_type();
else
var->type = glsl_vec4_type();