Commit Graph

722 Commits (e760f9f50c2f46dd46419eb7150e48930ee796b9)
 

Author SHA1 Message Date
sotrh e760f9f50c
Merge pull request #287 from rhysd/fix-typos
Fix some typos
3 years ago
sotrh 48c38de653
Merge pull request #290 from TonalidadeHidrica/fix-typo
Fix typos
3 years ago
sotrh e33b8ab911
Merge pull request #292 from rhysd/old-field-name
Fix old field name
3 years ago
sotrh 8876f93c3d
Merge pull request #293 from rhysd/fix-tutorial-5
Fix `wgpu::SamplerBindingType` is now parameter of `wgpu::BindingType::Sampler`
3 years ago
sotrh 1104818da0
Merge pull request #295 from CatCode79/patch-1
Fix to Link to the "alignment" page
3 years ago
sotrh d5074ecb79
Merge pull request #298 from yutannihilation/doc/include_wgsl
Mention include_wgsl!
3 years ago
sotrh 0cd2314a36
Merge pull request #297 from yutannihilation/fix/update-wgpu-doc-link
Update the links to wgpu's docs
3 years ago
Hiroaki Yutani 2dcbfbe01e Mention include_wgsl! 3 years ago
Hiroaki Yutani 6224fe670f Link to the latest wgpu's docs 3 years ago
Andrea Postal 1a7c038eb4
Fix to Link to the "alignment" page
Fix to ` Link to the "alignment" page is broken #291 ` issue
3 years ago
rhysd c81dfd34ba fix `wgpu::SamplerBindingType` is now parameter of `wgpu::BindingType::Sampler` 3 years ago
TonalidadeHidrica 0b9840e1ec Fix typo: w -> we 3 years ago
rhysd 5d0f4ec636 fix old field name
`rasterization_state` is an old field name of
`wgpu::RenderPipelineDescriptor`
3 years ago
TonalidadeHidrica 125353a710 Fix typo: know -> known 3 years ago
TonalidadeHidrica 083d8f0640 Fix typo: were -> where 3 years ago
Ben Hansen eaeb7931a1 update patrons list 3 years ago
rhysd 54121a5c54 fix some typos 3 years ago
Ben Hansen 4d0be61d76 typos in news/0.12 3 years ago
Ben Hansen c0843b3f92 fixes #285 3 years ago
Ben Hansen 611b299072 missed multiview in tutorial3 3 years ago
Ben Hansen 75bc7c4ef7 typo in alignment 3 years ago
Ben Hansen ef72161771 Merge branch 'master' of github.com:sotrh/learn-wgpu 3 years ago
Ben Hansen f13781a878 more work on alignment page 3 years ago
Ben Hansen 7a42a0d4db reworking the alignment readme 3 years ago
Ben Hansen 4ae6c3f89f added 0.12.md and examples now compile 3 years ago
Ben Hansen a4ce6093b7 pong is working again 3 years ago
Ben Hansen 2073b0fbc1 updated to 0.12 3 years ago
sotrh ea77676365
Merge pull request #281 from NiklasEi/fixes_for_beginner_tutorials_1_to_5
Some small fixes for beginner tutorials 1 to 5
3 years ago
Niklas Eicker 064a0a5efd Some small fixes for beginner tutorials 1 to 5 3 years ago
sotrh 37a097ad97
Merge pull request #276 from turboMaCk/typos
Typo fixes in main README.md
3 years ago
Ben Hansen 0eed08b713 updated news for pong web release 3 years ago
Marek Fajkus f0b3e72740
suggest clarification 3 years ago
Marek Fajkus 88209a1650
few more 3 years ago
Marek Fajkus 0c9236000a
few more fixes 3 years ago
Marek Fajkus 75c9d21fa0
more fixes 3 years ago
Marek Fajkus 7cb3cc9ddc
improve wording in beginner/tutorial2-surface 3 years ago
Marek Fajkus f16e128c33
fix typos in main README 3 years ago
Ben Hansen 3afb7099b2 Merge branch 'web' 3 years ago
Ben Hansen d3489ec360 updating package-lock.json 3 years ago
Ben Hansen bd6721dde2 some fixes to web 3 years ago
Ben Hansen 9570712cfc trying to fix wasm deploy 3 years ago
Ben Hansen 52aa4a3d9b install wasm-pack on deploy 3 years ago
Ben Hansen ccafb3f6e2 Merge branch 'master' of github.com:sotrh/learn-wgpu 3 years ago
Ben Hansen ac73aee9f5 Merge branch 'web' 3 years ago
Ben Hansen 19c1c08b62 added build-wasm.sh to deploy 3 years ago
sotrh 7addf33691
Merge pull request #274 from Josh015/master
Fixed flipped tex_coords in tutorial5-textures
3 years ago
Josh015 110743247f Whoops 3 years ago
Josh015 a90a168280 Fixed flipped tex_coords in tutorial5-textures 3 years ago
sotrh cd11a65a8e
Merge pull request #273 from redwarp/patch-1
Fix depth buffer challenge
3 years ago
Benoît Vermont 9ba4795d9c
Fix challenge depth buffer challenge
The shader.wgsl contains entry point `vs_main` and `fs_main`, but the rust code would reference them `main` and `main`

It would cause the following crash when trying to run the code:
```
[2021-11-25T14:50:43Z ERROR wgpu::backend::direct] Handling wgpu errors as fatal by default
thread 'main' panicked at 'wgpu error: Validation Error

Caused by:
    In Device::create_render_pipeline
      note: label = `Render Pipeline`
    error matching VERTEX shader requirements against the pipeline
    unable to find entry point 'main'
```

This fixes it.
3 years ago