mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-22 06:44:14 +00:00
Links updates
This commit is contained in:
parent
900a141392
commit
e4b0de2526
6
.github/ISSUE_TEMPLATE/config.yml
vendored
6
.github/ISSUE_TEMPLATE/config.yml
vendored
@ -1,8 +1,8 @@
|
||||
blank_issues_enabled: false
|
||||
contact_links:
|
||||
- name: Issue or enhancement in wgpu-core
|
||||
url: https://github.com/gfx-rs/wgpu/issues/new/choose
|
||||
about: Issues with or enhancements for the core logic, validation, or the backends should go here.
|
||||
- name: Issues with shaders
|
||||
url: https://github.com/gfx-rs/naga/issues/new/choose
|
||||
about: Issues with or enhancements for the shader translation.
|
||||
- name: Question about wgpu
|
||||
url: https://github.com/gfx-rs/wgpu-rs/discussions/new
|
||||
about: Any questions about how to use wgpu should go here.
|
||||
|
9
.github/pull_request_template.md
vendored
9
.github/pull_request_template.md
vendored
@ -6,12 +6,3 @@ _Describe what problem this is solving, and how it's solved._
|
||||
|
||||
**Testing**
|
||||
_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.
|
||||
-->
|
||||
|
@ -1,6 +1,6 @@
|
||||
# Change Log
|
||||
|
||||
TBD
|
||||
TBD:
|
||||
- Merged wgpu-rs and wgpu back into a single repository
|
||||
|
||||
## v0.8 (2021-04-29)
|
||||
|
@ -7,4 +7,6 @@ status = [
|
||||
"Ubuntu Nightly",
|
||||
"Windows Stable",
|
||||
"Windows Nightly",
|
||||
"Web Assembly",
|
||||
#"Clippy",
|
||||
]
|
||||
|
@ -131,7 +131,7 @@ impl framework::Example for Example {
|
||||
});
|
||||
|
||||
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 (info, mut reader) = decoder.read_info().unwrap();
|
||||
let mut buf = vec![0; info.buffer_size()];
|
||||
|
BIN
wgpu/logo.png
BIN
wgpu/logo.png
Binary file not shown.
Before Width: | Height: | Size: 37 KiB |
@ -2,7 +2,7 @@
|
||||
//!
|
||||
//! 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)]
|
||||
|
||||
mod backend;
|
||||
|
Loading…
Reference in New Issue
Block a user