Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/drivers/swr/
Dswr_state.cpp1144 tgsi_shader_info *pLastFE = &ctx->vs->info.base; in swr_get_last_fe() local
1147 pLastFE = &ctx->gs->info.base; in swr_get_last_fe()
1150 pLastFE = &ctx->tes->info.base; in swr_get_last_fe()
1153 pLastFE = &ctx->tcs->info.base; in swr_get_last_fe()
1155 return pLastFE; in swr_get_last_fe()
2060 struct tgsi_shader_info *pLastFE = swr_get_last_fe(ctx); in swr_update_derived() local
2062 backendState.readRenderTargetArrayIndex = pLastFE->writes_layer; in swr_update_derived()
2063 backendState.readViewportArrayIndex = pLastFE->writes_viewport_index; in swr_update_derived()
2067 pLastFE->num_written_clipdistance ? in swr_update_derived()
2068 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()