rsx: Fixup; input attributes blob decoding

- Use an unstructured blob and index into the vec4 structures to extract the real data
This commit is contained in:
kd-11 2018-11-01 13:28:15 +03:00 committed by kd-11
parent 846daadd5d
commit 7b065d7781
4 changed files with 47 additions and 31 deletions

View file

@ -2155,8 +2155,8 @@ namespace rsx
attrib0 |= (size << 27);
attrib1 |= offset_in_block[index];
buffer[index * 4 + 0] = attrib0;
buffer[index * 4 + 1] = attrib1;
buffer[index * 2 + 0] = attrib0;
buffer[index * 2 + 1] = attrib1;
}
}