summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2018-03-26 17:44:29 +1000
committerDave Airlie <airlied@redhat.com>2018-03-27 07:19:22 +1000
commita63f26d5d4928393f3f214348a9cca4cec23d077 (patch)
tree8c301eb0f104c5a1d81931158ae99b5046a0a8b0
parenta45e381d316881924e7281bafcd9631c9df2a5d8 (diff)
shader: rename some shader info and key vars.
These names reflect more of the meaning, and allow for tuning some stuff.
-rw-r--r--src/vrend_renderer.c4
-rw-r--r--src/vrend_shader.c9
-rw-r--r--src/vrend_shader.h7
3 files changed, 11 insertions, 9 deletions
diff --git a/src/vrend_renderer.c b/src/vrend_renderer.c
index 4a0e61c..d1be721 100644
--- a/src/vrend_renderer.c
+++ b/src/vrend_renderer.c
@@ -2128,8 +2128,8 @@ static inline void vrend_fill_shader_key(struct vrend_context *ctx,
key->gs_present = true;
if (type == PIPE_SHADER_GEOMETRY && ctx->sub->shaders[PIPE_SHADER_VERTEX]) {
- key->vs_has_pervertex = ctx->sub->shaders[PIPE_SHADER_VERTEX]->sinfo.num_pervertex_clip > 0;
- key->vs_pervertex_num_clip = ctx->sub->shaders[PIPE_SHADER_VERTEX]->sinfo.num_pervertex_clip;
+ key->prev_stage_pervertex_out = ctx->sub->shaders[PIPE_SHADER_VERTEX]->sinfo.has_pervertex_out;
+ key->prev_stage_num_clip_out = ctx->sub->shaders[PIPE_SHADER_VERTEX]->sinfo.num_clip_out;
}
}
diff --git a/src/vrend_shader.c b/src/vrend_shader.c
index 13db18e..21717f1 100644
--- a/src/vrend_shader.c
+++ b/src/vrend_shader.c
@@ -2545,11 +2545,11 @@ static char *emit_ios(struct dump_ctx *ctx, char *glsl_hdr)
if (ctx->prog_type == TGSI_PROCESSOR_GEOMETRY) {
snprintf(buf, 255, "uniform float winsys_adjust_y;\n");
STRCAT_WITH_RET(glsl_hdr, buf);
- if (ctx->num_in_clip_dist || ctx->key->clip_plane_enable || ctx->key->vs_has_pervertex) {
+ if (ctx->num_in_clip_dist || ctx->key->clip_plane_enable || ctx->key->prev_stage_pervertex_out) {
int clip_dist;
- if (ctx->key->vs_has_pervertex)
- clip_dist = ctx->key->vs_pervertex_num_clip;
+ if (ctx->key->prev_stage_pervertex_out)
+ clip_dist = ctx->key->prev_stage_num_clip_out;
else if (ctx->num_in_clip_dist)
clip_dist = ctx->num_in_clip_dist;
else
@@ -2772,7 +2772,8 @@ char *vrend_convert_shader(struct vrend_shader_cfg *cfg,
free(ctx.glsl_main);
free(glsl_hdr);
sinfo->num_ucp = ctx.key->clip_plane_enable ? 8 : 0;
- sinfo->num_pervertex_clip = (ctx.vs_has_pervertex ? (ctx.num_clip_dist ? ctx.num_clip_dist : 8) : 0);
+ sinfo->has_pervertex_out = ctx.vs_has_pervertex;
+ sinfo->num_clip_out = (ctx.num_clip_dist ? ctx.num_clip_dist : 8);
sinfo->samplers_used_mask = ctx.samplers_used;
sinfo->num_consts = ctx.num_consts;
sinfo->num_ubos = ctx.num_ubo;
diff --git a/src/vrend_shader.h b/src/vrend_shader.h
index 646dddc..098a23e 100644
--- a/src/vrend_shader.h
+++ b/src/vrend_shader.h
@@ -43,7 +43,8 @@ struct vrend_shader_info {
int num_ubos;
int num_ucp;
int glsl_ver;
- uint8_t num_pervertex_clip;
+ bool has_pervertex_out;
+ uint8_t num_clip_out;
uint32_t shadow_samp_mask;
int gs_out_prim;
uint32_t attrib_input_mask;
@@ -63,8 +64,8 @@ struct vrend_shader_key {
uint8_t clip_plane_enable;
bool gs_present;
bool flatshade;
- bool vs_has_pervertex;
- uint8_t vs_pervertex_num_clip;
+ bool prev_stage_pervertex_out;
+ uint8_t prev_stage_num_clip_out;
float alpha_ref_val;
uint32_t cbufs_are_a8_bitmask;
};