radeonsi: Handle TGSI_SEMANTIC_PSIZE
The relevant POINT_SIZE registers are being set using the pipe_rasterizer_state, so we just need to tell the shader compiler which export type to use. This fixes several of the glean glsl tests. Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
@@ -502,6 +502,7 @@ static void si_llvm_emit_epilogue(struct lp_build_tgsi_context * bld_base)
|
||||
for (index = d->Range.First; index <= d->Range.Last; index++) {
|
||||
/* Select the correct target */
|
||||
switch(d->Semantic.Name) {
|
||||
case TGSI_SEMANTIC_PSIZE:
|
||||
case TGSI_SEMANTIC_POSITION:
|
||||
target = V_008DFC_SQ_EXP_POS;
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user