Skip to content

update to wgpu-native 24.0.0.2 #673

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 48 commits into from
Mar 17, 2025
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
0f1bf87
update headers
Vipitis Feb 20, 2025
eb8581e
try to fix hparser
Vipitis Feb 21, 2025
ce932d1
handle escaped newlines
Vipitis Feb 21, 2025
0fbc6ae
run codegen
Vipitis Feb 21, 2025
f08b44e
fix escaped newlines in lib
Vipitis Feb 21, 2025
770f5a3
add string view in logger
Vipitis Feb 22, 2025
dc89134
simplify limits
Vipitis Feb 22, 2025
903fc4b
fix more callbacks
Vipitis Feb 22, 2025
b008b4d
update surface descriptors
Vipitis Feb 22, 2025
016f70b
update shader module
Vipitis Feb 22, 2025
da524e0
update render pipeline
Vipitis Feb 22, 2025
ded6d3b
fix surface status
Vipitis Feb 22, 2025
b7b52b4
update copy info
Vipitis Feb 22, 2025
6e67484
fix parsing of MAX values
Vipitis Feb 23, 2025
d52775f
update buffer map
Vipitis Feb 23, 2025
3fbb440
avoid magic values
Vipitis Feb 23, 2025
1bf0421
update generate_report
Vipitis Feb 23, 2025
c8548ff
fix limits again
Vipitis Feb 23, 2025
7a83943
fix labels
Vipitis Feb 23, 2025
098c054
update error messages
Vipitis Feb 23, 2025
413ab60
make async unimplemented
Vipitis Feb 24, 2025
6476cca
fix string view null value
Vipitis Feb 24, 2025
274fdb5
enable bundle test
Vipitis Feb 26, 2025
998ff84
avoid pointer references
Vipitis Mar 5, 2025
a958d8f
request native limits
Vipitis Mar 8, 2025
d4b7a85
update mem tests
Vipitis Mar 8, 2025
c86a6b4
cleanup hparser
Vipitis Mar 10, 2025
186741c
handle nested structs
Vipitis Mar 10, 2025
3313ba9
update codegen test
Vipitis Mar 11, 2025
d68253a
apidiff compilation hint
Vipitis Mar 11, 2025
84a3aa6
lint
Vipitis Mar 11, 2025
331b4e9
ruff format
Vipitis Mar 11, 2025
f7f5a15
bump wgpu-native build
Vipitis Mar 11, 2025
78651f0
set callback modes
Vipitis Mar 11, 2025
5f4697d
small tweaks
almarklein Mar 13, 2025
e2a4d2b
tweak codegen of flags so they're not reported missing
almarklein Mar 13, 2025
c15bb4f
Make limit logic a bit more consistent
almarklein Mar 13, 2025
6667a06
tweak new to_c_string_view
almarklein Mar 13, 2025
da03707
tweak to_c_string_view and add from_c_string_view
almarklein Mar 13, 2025
2a7ca0a
Check result of function that return WGPUStatus
almarklein Mar 14, 2025
8f17d43
Need the null-string
almarklein Mar 14, 2025
c179d09
map-read workaround still needed. Update test/comments a bit
almarklein Mar 14, 2025
ec89060
comment on textureview.usage
almarklein Mar 14, 2025
21905cf
Merge branch 'main' into wgpu24
almarklein Mar 14, 2025
3cec914
codegen
almarklein Mar 14, 2025
d47cc9a
the new test failed intermittendly
almarklein Mar 14, 2025
e9cbac6
Use to_c_string_view for labels too
almarklein Mar 14, 2025
632bf24
avoid hardcoded enum value
almarklein Mar 14, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion codegen/files.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def read_file(*fname):
"""Read a file from disk using the relative filename. Line endings are normalized."""
filename = os.path.join(lib_dir, *fname)
with open(filename, "rb") as f:
return f.read().decode().replace("\r\n", "\n").replace("\r", "\n")
return f.read().decode().replace("\r\n", "\n").replace("\r", "\n").replace("\\\n", "")


class FileCache:
Expand Down
Loading
Loading