You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the latest release, I am having trouble getting some of our tests at wgpu-py to work. In particular, everything related to 3D textures fails. Some (incomplete) Python code to illustrate the problem:
thread '<unnamed>' panicked at 'Unable to copy buffer to texture:
Transfer(BufferOverrun { start_offset: 0, end_offset: 4145152, buffer_size: 1048576, side: Source })',
src/command.rs:167:6
The buffer_size is correct (1048576 == 64*64*64*4), but that end_offset does not seem to make any sense ...
From skimming through the wgpu-core's commit history, there have been some changes related to the validation of data transfers. Am I missing something or could it be that it is broken (in wgpu-core 0.14.2)?
The text was updated successfully, but these errors were encountered:
In the latest release, I am having trouble getting some of our tests at wgpu-py to work. In particular, everything related to 3D textures fails. Some (incomplete) Python code to illustrate the problem:
I get :
The buffer_size is correct (
1048576 == 64*64*64*4
), but that end_offset does not seem to make any sense ...From skimming through the wgpu-core's commit history, there have been some changes related to the validation of data transfers. Am I missing something or could it be that it is broken (in wgpu-core 0.14.2)?
The text was updated successfully, but these errors were encountered: