Fixing vfetch_mini use.

This commit is contained in:
Ben Vanik
2015-12-07 19:16:32 -08:00
parent 522ff9d23e
commit 1f773f14b3
2 changed files with 10 additions and 6 deletions

View File

@@ -332,7 +332,7 @@ void ParsedVertexFetchInstruction::Disassemble(StringBuffer* out) const {
", DataFormat=%s",
kVertexFetchDataFormats[static_cast<int>(attributes.data_format)]);
}
if (attributes.stride) {
if (!is_mini_fetch && attributes.stride) {
out->AppendFormat(", Stride=%d", attributes.stride);
}
if (attributes.is_signed) {