Commit b7d2ba9d authored by Paul Gofman's avatar Paul Gofman Committed by Alexandre Julliard

wined3d: Pass correct map size in wined3d_texture_gl_upload_data().

parent 7474d665
......@@ -2077,7 +2077,7 @@ static void wined3d_texture_gl_upload_data(struct wined3d_context *context,
}
src_mem = wined3d_context_gl_map_bo_address(context_gl, &bo,
src_slice_pitch, GL_PIXEL_UNPACK_BUFFER, WINED3D_MAP_READ);
src_slice_pitch * update_d, GL_PIXEL_UNPACK_BUFFER, WINED3D_MAP_READ);
if (decompress)
compressed_format->decompress(src_mem, converted_mem, src_row_pitch, src_slice_pitch,
dst_row_pitch, dst_slice_pitch, update_w, update_h, update_d);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment