Shuffle 'docs' directories
As part of the tint -> dawn merge. Bug: dawn:1275 Change-Id: Ice0c9d2f03f6d7e96471cf8398aecd16273c833f Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/78400 Reviewed-by: Corentin Wallez <cwallez@chromium.org> Commit-Queue: Ben Clayton <bclayton@google.com>
2
OWNERS
|
@ -8,4 +8,4 @@ kainino@chromium.org
|
|||
|
||||
per-file dawn.json=kainino@chromium.org
|
||||
per-file DEPS=*
|
||||
per-file README.md=file://docs/OWNERS
|
||||
per-file README.md=file://docs/dawn/OWNERS
|
||||
|
|
16
README.md
|
@ -1,4 +1,4 @@
|
|||
![Dawn's logo: a sun rising behind a stylized mountain inspired by the WebGPU logo. The text "Dawn" is written below it.](docs/logo/dawn_logo.png "Dawn's logo")
|
||||
![Dawn's logo: a sun rising behind a stylized mountain inspired by the WebGPU logo. The text "Dawn" is written below it.](docs/imgs/dawn_logo.png "Dawn's logo")
|
||||
|
||||
# Dawn, a WebGPU implementation
|
||||
|
||||
|
@ -29,13 +29,13 @@ Helpful links:
|
|||
|
||||
Developer documentation:
|
||||
|
||||
- [Dawn overview](docs/overview.md)
|
||||
- [Building Dawn](docs/building.md)
|
||||
- [Contributing to Dawn](docs/contributing.md)
|
||||
- [Testing Dawn](docs/testing.md)
|
||||
- [Debugging Dawn](docs/debugging.md)
|
||||
- [Dawn's infrastructure](docs/infra.md)
|
||||
- [Dawn errors](docs/errors.md)
|
||||
- [Dawn overview](docs/dawn/overview.md)
|
||||
- [Building Dawn](docs/dawn/building.md)
|
||||
- [Contributing to Dawn](docs/dawn/contributing.md)
|
||||
- [Testing Dawn](docs/dawn/testing.md)
|
||||
- [Debugging Dawn](docs/dawn/debugging.md)
|
||||
- [Dawn's infrastructure](docs/dawn/infra.md)
|
||||
- [Dawn errors](docs/dawn/errors.md)
|
||||
|
||||
User documentation: (TODO, figure out what overlaps with the webgpu.h docs)
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
"limitations under the License."
|
||||
],
|
||||
|
||||
"_doc": "See docs/codegen.md",
|
||||
"_doc": "See docs/dawn/codegen.md",
|
||||
|
||||
"_metadata": {
|
||||
"api": "WebGPU",
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
"limitations under the License."
|
||||
],
|
||||
|
||||
"_doc": "See docs/codegen.md",
|
||||
"_doc": "See docs/dawn/codegen.md",
|
||||
|
||||
"commands": {
|
||||
"buffer map async": [
|
||||
|
|
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 25 KiB |
Before Width: | Height: | Size: 4.5 KiB After Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 4.8 KiB After Width: | Height: | Size: 4.8 KiB |
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.5 KiB |
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 29 KiB |
Before Width: | Height: | Size: 4.8 KiB After Width: | Height: | Size: 4.8 KiB |
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 23 KiB |
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.5 KiB |
|
@ -76,7 +76,7 @@ namespace dawn::native {
|
|||
{"dawn-internal-usages",
|
||||
"Add internal usages to resources to affect how the texture is allocated, but not "
|
||||
"frontend validation. Other internal commands may access this usage.",
|
||||
"https://dawn.googlesource.com/dawn/+/refs/heads/main/docs/features/"
|
||||
"https://dawn.googlesource.com/dawn/+/refs/heads/main/docs/dawn/features/"
|
||||
"dawn_internal_usages.md"},
|
||||
&WGPUDeviceProperties::dawnInternalUsages},
|
||||
{Feature::MultiPlanarFormats,
|
||||
|
@ -86,7 +86,7 @@ namespace dawn::native {
|
|||
&WGPUDeviceProperties::multiPlanarFormats},
|
||||
{Feature::DawnNative,
|
||||
{"dawn-native", "WebGPU is running on top of dawn_native.",
|
||||
"https://dawn.googlesource.com/dawn/+/refs/heads/main/docs/features/"
|
||||
"https://dawn.googlesource.com/dawn/+/refs/heads/main/docs/dawn/features/"
|
||||
"dawn_native.md"},
|
||||
&WGPUDeviceProperties::dawnNative}}};
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@ Dawn uses the Chromium build system and dependency management so you need to [in
|
|||
|
||||
### Fetch dependencies
|
||||
|
||||
First, the steps are similar to [`doc/building.md`](../../docs/building.md), but instead of the `Get the code` step, run:
|
||||
First, the steps are similar to [`doc/building.md`](../../docs/dawn/building.md), but instead of the `Get the code` step, run:
|
||||
|
||||
```sh
|
||||
# Clone the repo as "dawn"
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
# Dawn Perf Tests
|
||||
Moved to [`//src/docs/testing.md`](https://dawn.googlesource.com/dawn/+/refs/heads/main/docs/testing.md).
|
||||
Moved to [`//src/docs/dawn/testing.md`](https://dawn.googlesource.com/dawn/+/refs/heads/main/docs/dawn/testing.md).
|
||||
|
|