mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-15 15:37:56 -05:00
spirv: Add fixed pipeline point size
This commit is contained in:
@ -17,6 +17,10 @@ void EmitPrologue(EmitContext& ctx) {
|
||||
ctx.OpStore(generic_id, default_vector);
|
||||
}
|
||||
}
|
||||
if (ctx.profile.fixed_state_point_size) {
|
||||
const float point_size{*ctx.profile.fixed_state_point_size};
|
||||
ctx.OpStore(ctx.output_point_size, ctx.Constant(ctx.F32[1], point_size));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user