Skip to content

Commit

Permalink
Fixup patch for wgpu 0.16.0 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
hmaarrfk committed Jul 21, 2024
1 parent 12b3150 commit cbeef21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/testutils.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def get_wgpu_backend():
"""
Query the configured wgpu backend driver.
"""
code = "import wgpu.utils; info = wgpu.utils.get_default_device().adapter.info(); print(info['adapter_type'], info['backend_type'])"
code = "import wgpu.utils; info = wgpu.utils.get_default_device().adapter.info; print(info['adapter_type'], info['backend_type'])"
result = subprocess.run(
[
sys.executable,
Expand Down

0 comments on commit cbeef21

Please sign in to comment.