Links updates

This commit is contained in:
Dzmitry Malyshau 2021-06-02 23:54:26 -04:00
parent 900a141392
commit e4b0de2526
7 changed files with 8 additions and 15 deletions

View File

@ -1,8 +1,8 @@
blank_issues_enabled: false blank_issues_enabled: false
contact_links: contact_links:
- name: Issue or enhancement in wgpu-core - name: Issues with shaders
url: https://github.com/gfx-rs/wgpu/issues/new/choose url: https://github.com/gfx-rs/naga/issues/new/choose
about: Issues with or enhancements for the core logic, validation, or the backends should go here. about: Issues with or enhancements for the shader translation.
- name: Question about wgpu - name: Question about wgpu
url: https://github.com/gfx-rs/wgpu-rs/discussions/new url: https://github.com/gfx-rs/wgpu-rs/discussions/new
about: Any questions about how to use wgpu should go here. about: Any questions about how to use wgpu should go here.

View File

@ -6,12 +6,3 @@ _Describe what problem this is solving, and how it's solved._
**Testing** **Testing**
_Explain how this change is tested._ _Explain how this change is tested._
<!--
Non-trivial functional changes would need to be tested through:
- [wgpu-rs](https://github.com/gfx-rs/wgpu-rs) - test the examples.
- [wgpu-native](https://github.com/gfx-rs/wgpu-native/) - check the generated C header for sanity.
Ideally, a PR needs to link to the draft PRs in these projects with relevant modifications.
See https://github.com/gfx-rs/wgpu/pull/666 for an example.
If you can add a unit/integration test here in `wgpu`, that would be best.
-->

View File

@ -1,6 +1,6 @@
# Change Log # Change Log
TBD TBD:
- Merged wgpu-rs and wgpu back into a single repository - Merged wgpu-rs and wgpu back into a single repository
## v0.8 (2021-04-29) ## v0.8 (2021-04-29)

View File

@ -7,4 +7,6 @@ status = [
"Ubuntu Nightly", "Ubuntu Nightly",
"Windows Stable", "Windows Stable",
"Windows Nightly", "Windows Nightly",
"Web Assembly",
#"Clippy",
] ]

View File

@ -131,7 +131,7 @@ impl framework::Example for Example {
}); });
let texture = { let texture = {
let img_data = include_bytes!("../../logo.png"); let img_data = include_bytes!("../../../logo.png");
let decoder = png::Decoder::new(std::io::Cursor::new(img_data)); let decoder = png::Decoder::new(std::io::Cursor::new(img_data));
let (info, mut reader) = decoder.read_info().unwrap(); let (info, mut reader) = decoder.read_info().unwrap();
let mut buf = vec![0; info.buffer_size()]; let mut buf = vec![0; info.buffer_size()];

Binary file not shown.

Before

Width:  |  Height:  |  Size: 37 KiB

View File

@ -2,7 +2,7 @@
//! //!
//! To start using the API, create an [`Instance`]. //! To start using the API, create an [`Instance`].
#![doc(html_logo_url = "https://raw.githubusercontent.com/gfx-rs/wgpu-rs/master/logo.png")] #![doc(html_logo_url = "https://raw.githubusercontent.com/gfx-rs/wgpu/master/logo.png")]
#![warn(missing_docs)] #![warn(missing_docs)]
mod backend; mod backend;