r600g: Fix reading vtx instruction offset from bytestream
authorTom Stellard <thomas.stellard@amd.com>
Wed, 6 Jun 2012 22:31:00 +0000 (18:31 -0400)
committerTom Stellard <thomas.stellard@amd.com>
Thu, 21 Jun 2012 20:42:07 +0000 (20:42 +0000)
src/gallium/drivers/r600/r600_shader.c

index 63b9a03..d294084 100644 (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)) {