├── .github └── workflows │ └── auto-publish.yml ├── .gitignore ├── .pr-preview.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── Makefile ├── README.md ├── explainer.md ├── favicon-32x32.png ├── favicon-96x96.png ├── img └── depth_api_data_explained.png ├── index.bs ├── security-privacy-questionnaire.md └── w3c.json /.github/workflows/auto-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/depth-sensing/HEAD/.github/workflows/auto-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | env/ 2 | index.html 3 | -------------------------------------------------------------------------------- /.pr-preview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/depth-sensing/HEAD/.pr-preview.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/depth-sensing/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/depth-sensing/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/depth-sensing/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/depth-sensing/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/depth-sensing/HEAD/README.md -------------------------------------------------------------------------------- /explainer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/depth-sensing/HEAD/explainer.md -------------------------------------------------------------------------------- /favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/depth-sensing/HEAD/favicon-32x32.png -------------------------------------------------------------------------------- /favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/depth-sensing/HEAD/favicon-96x96.png -------------------------------------------------------------------------------- /img/depth_api_data_explained.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/depth-sensing/HEAD/img/depth_api_data_explained.png -------------------------------------------------------------------------------- /index.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/depth-sensing/HEAD/index.bs -------------------------------------------------------------------------------- /security-privacy-questionnaire.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/depth-sensing/HEAD/security-privacy-questionnaire.md -------------------------------------------------------------------------------- /w3c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/depth-sensing/HEAD/w3c.json --------------------------------------------------------------------------------