Home
last modified time | relevance | path

Searched refs:pLastFE (Results 1 – 2 of 2) sorted by relevance

/third_party/mesa3d/src/gallium/drivers/swr/
Dswr_state.cpp1161 tgsi_shader_info *pLastFE = &ctx->vs->info.base; in swr_get_last_fe() local
1164 pLastFE = &ctx->gs->info.base; in swr_get_last_fe()
1167 pLastFE = &ctx->tes->info.base; in swr_get_last_fe()
1170 pLastFE = &ctx->tcs->info.base; in swr_get_last_fe()
1172 return pLastFE; in swr_get_last_fe()
2079 struct tgsi_shader_info *pLastFE = swr_get_last_fe(ctx); in swr_update_derived() local
2081 backendState.readRenderTargetArrayIndex = pLastFE->writes_layer; in swr_update_derived()
2082 backendState.readViewportArrayIndex = pLastFE->writes_viewport_index; in swr_update_derived()
2086 pLastFE->num_written_clipdistance ? in swr_update_derived()
2087 pLastFE->clipdist_writemask & ctx->rasterizer->clip_plane_enable : in swr_update_derived()
[all …]
Dswr_shader.cpp2477 tgsi_shader_info *pLastFE = &ctx->vs->info.base; in CompileVS() local
2480 pLastFE = &ctx->gs->info.base; in CompileVS()
2483 pLastFE = &ctx->tes->info.base; in CompileVS()
2486 pLastFE = &ctx->tcs->info.base; in CompileVS()
2491 if ((pLastFE->clipdist_writemask & clip_mask & (1 << val)) || in CompileVS()
2492 ((pLastFE->culldist_writemask << pLastFE->num_written_clipdistance) & (1 << val))) { in CompileVS()
2493 unsigned cv = locate_linkage(TGSI_SEMANTIC_CLIPDIST, val < 4 ? 0 : 1, pLastFE); in CompileVS()