mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 03:19:58 +00:00
transform_feedback: Read buffer stride from index instead of layout
This commit is contained in:
parent
46bd362d0d
commit
e57ee3b7fd
1 changed files with 2 additions and 1 deletions
|
@ -72,8 +72,9 @@ std::vector<Shader::TransformFeedbackVarying> MakeTransformFeedbackVaryings(
|
|||
const u32 base_offset = offset;
|
||||
const u8 location = locations[offset];
|
||||
|
||||
UNIMPLEMENTED_IF_MSG(layout.stream != 0, "Stream is not zero: {}", layout.stream);
|
||||
Shader::TransformFeedbackVarying varying{
|
||||
.buffer = layout.stream,
|
||||
.buffer = static_cast<u32>(buffer),
|
||||
.stride = layout.stride,
|
||||
.offset = offset * 4,
|
||||
.components = 1,
|
||||
|
|
Loading…
Reference in a new issue