early-access version 3663

This commit is contained in:
pineappleEA
2023-06-13 01:03:27 +02:00
parent b2a70f6f9b
commit 429a1a7fb1
86 changed files with 500 additions and 456 deletions

View File

@@ -85,7 +85,9 @@ Shader::RuntimeInfo MakeRuntimeInfo(const GraphicsPipelineKey& key,
case Shader::Stage::VertexB:
case Shader::Stage::Geometry:
if (!use_assembly_shaders && key.xfb_enabled != 0) {
info.xfb_varyings = VideoCommon::MakeTransformFeedbackVaryings(key.xfb_state);
auto [varyings, count] = VideoCommon::MakeTransformFeedbackVaryings(key.xfb_state);
info.xfb_varyings = varyings;
info.xfb_count = count;
}
break;
case Shader::Stage::TessellationEval: