r600g: Fix reading vtx instruction offset from bytestream

This commit is contained in:
Tom Stellard 2012-06-06 18:31:00 -04:00
parent 563a764110
commit 5cd6ce939d
1 changed files with 1 additions and 1 deletions

View File

@ -463,7 +463,7 @@ static int r600_vtx_from_byte_stream(struct r600_shader_ctx *ctx,
vtx.srf_mode_all = bytes[bytes_read++];
/* offset is 2 bytes wide */
vtx.offset = bytes[bytes_read++];
vtx.offset |= bytes[bytes_read++];
vtx.offset |= (bytes[bytes_read++] << 8);
vtx.endian = bytes[bytes_read++];
if (r600_bytecode_add_vtx(ctx->bc, &vtx)) {