Commit Graph

929 Commits (664322e65adb154e158c6c36d0e111d6a1a0edc9)
 

Author SHA1 Message Date
sotrh 664322e65a
Merge pull request #430 from erwanvivien/compare-function-doc
feat: added link to CompareFunction
1 year ago
sotrh 635522756b
Update README.md
Better grammar
1 year ago
sotrh cdf276a5f5
Merge pull request #431 from erwanvivien/depth-texture-state-field
fix: Missing struct field
1 year ago
sotrh 54cc0f086c
Merge pull request #434 from nekodjin/master
fix: update outdated info on getting supported formats.
1 year ago
sotrh fc21a0f664
Merge pull request #436 from James2022-rgb/feature/fix_illegal_lod_min_clamp
Stop using illegal negative values for `wgpu::SamplerDescriptor::lod_min_clamp`.
1 year ago
sotrh d6460df9b2
Merge pull request #438 from ktravis/patch-1
fix: Tiny typo in window tutorial
1 year ago
sotrh 1ec11ef789
Merge pull request #439 from zimurgh/zimurgh-tutorial11-normals-fix-typos
Fix to docs for tutorial 11
1 year ago
Michael Carpenter 8f709412d2 Fix to docs for tutorial 11 2 years ago
Kyle Travis 656f4d7691
Tiny typo in window tutorial 2 years ago
James0124 c1ebece9c1
Stop using illegal negative values for `wgpu::SamplerDescriptor::lod_min_clamp`.
WebGPU valid usage states `lodMinClamp` must not be negative, and `lodMaxClamp` must be >= `lodMinClamp`
2 years ago
Avery R 3863322aee
update info on getting supported formats
Replace the outdated information about `get_preferred_format` with current information on `get_supported_formats`.
2 years ago
erwanvivien a325686cdb
fix: Missing struct field
There was no instruction on the field to add to State.

It can be easily found, but it's better if in the tutorial
2 years ago
erwanvivien c125d28743
feat: added link to CompareFunction
It adds more insights to what the field are for
2 years ago
Benjamin Hansen 8c4d2b5871 more testing for #426 2 years ago
Benjamin Hansen 3fde56d264 fixes #429 2 years ago
Benjamin Hansen 9a14ea3fdf refining lost-window demo 2 years ago
Benjamin Hansen 494ea03fd4 added test for losing the window 2 years ago
Benjamin Hansen c3242d5e33 attempt at mouse picking 2 years ago
Benjamin Hansen 714ea27bc2 adding wgpu to fully qualify `include_wgsl!` macro as part of #423 2 years ago
sotrh 3066150570
Merge pull request #418 from jinleili/translation
add a newly translated Chinese version link
2 years ago
Jinlei Li 2a6964185f Add a newly translated Chinese version link 2 years ago
sotrh b356759f6f
Merge pull request #420 from ipierago/fixes
Fixes to docs for tutorial 10 and tutorial 11
2 years ago
Ian Pieragostini ca614d6c68 Fixes to docs for tutorial 10 and tutorial 11 2 years ago
sotrh 6514c34f8d
Merge pull request #416 from Joh4nnesB/patch-camera-rotation
Updated incorrect camera pitch rotation
2 years ago
sotrh c934b51c32
Merge pull request #419 from nextdorf/master
Correct color conversation between rgb and srgb in buffer tutorial
2 years ago
nextdorf bb97a1a48e Added correct color conversation between rgb and srgb (source:
https://en.wikipedia.org/wiki/SRGB#Computing_the_transfer_function) in
buffer tutorial
2 years ago
Johannes Bauer 42df1f43a6
Updated incorrect camera pitch rotation
This was already fixed in the actual demo code with f46b2f6 but unfortunately not updated in the documentation.
2 years ago
sotrh 4f202d376d
Merge pull request #409 from PhelixOchieng/master
Fix: Could not append canvas error when running on wasm
2 years ago
sotrh b15873c392
Merge pull request #412 from Baguettifer/master
changed hexagon to pentagon
2 years ago
sotrh 73e7ee2a77
Merge pull request #413 from relrelb/patch-1
Change link to HTTPS
2 years ago
sotrh b2a34bb432
Merge pull request #414 from sotrh/0.14
migrated to 0.14
2 years ago
Ben Hansen 3f99b965a9 migrated to 0.14 2 years ago
relrelb f6beebae17
Change link to HTTPS 2 years ago
Baguettifer ce34941f31 changed hexagon to pentagon 2 years ago
Phelix 3c09140b80
Fix: Could not append canvas error when running on wasm 2 years ago
sotrh 3d5ddd8fa4
Merge pull request #381 from sotrh/dependabot/npm_and_yarn/terser-4.8.1
Bump terser from 4.8.0 to 4.8.1
2 years ago
sotrh c47a0c89a4
Merge pull request #396 from evik42/evik42-0.13-update-fix
Fix code example for 0.13
2 years ago
sotrh b2fad645de
Merge branch 'master' into evik42-0.13-update-fix 2 years ago
sotrh 954ccc4bad
Merge pull request #397 from jinleili/numbers
Fix 2 numbers on tutorial4 doc
2 years ago
sotrh 5f75beab03
Merge pull request #398 from jinleili/step_mode
Make `step_mode` easier to understand
2 years ago
sotrh 5dc50f0200
Merge pull request #399 from jinleili/filter
Fix the descriptions of `mag_filter` and `min_filter` fields
2 years ago
sotrh 4726bb5a8c
Merge pull request #400 from Ratipoka/patch-1
Remove typo : extra size field in State
2 years ago
sotrh a1db4146f6
Merge pull request #402 from elimerl/patch-2
Could'nt -> Couldn't
2 years ago
sotrh 49fb49bdbf
Merge pull request #404 from jbckly/patch-1
Fix some code for Dependencies and the window
2 years ago
sotrh 5b8f25bd4c
Merge pull request #405 from jbckly/patch-2
Use 0.13's Surface::get_supported_formats
2 years ago
jbckly c60fcdd9a6
Use 0.13's Surface::get_supported_formats
get_preferred_format no longer exists as per https://docs.rs/wgpu/0.13.1/wgpu/struct.Surface.html#method.get_supported_formats
2 years ago
jbckly 9a578de950
Fix some code for Dependencies and the window
Needed this to get things rendering for me! otherwise we get:
```
$ cargo run
   Compiling rustp v0.1.0 (/Users/jack/dev/rustp)
warning: unused implementer of `Future` that must be used
 --> src/main.rs:4:5
  |
4 |     run();
  |     ^^^^^^
  |
  = note: `#[warn(unused_must_use)]` on by default
  = note: futures do nothing unless you `.await` or poll them

warning: `rustp` (bin "rustp") generated 1 warning
    Finished dev [unoptimized + debuginfo] target(s) in 0.48s
     Running `target/debug/rustp`
```
2 years ago
Eli 29ade9ebb0
Could'nt -> Couldn't 2 years ago
Ratipoka e4dbc77457
Remove typo : extra size argument in State 2 years ago
Jinlei Li 63f790e633 Fix the descriptions of `mag_filter` and `min_filter` fields 2 years ago